Outiref

Code source de l'URL : http://hudabeauty.com/en-us

<!doctype html>
<html class="js" lang="en">
  <head>
    <!-- Google Consent Mode v2 defaults (must run BEFORE OneTrust and GTM) -->
    <script>
      window.dataLayer = window.dataLayer || [];
      function gtag() {
        dataLayer.push(arguments);
      }

      // Deny by default; OneTrust will update after user action
      gtag('consent', 'default', {
        ad_storage: 'denied',
        ad_user_data: 'denied',
        ad_personalization: 'denied',
        analytics_storage: 'denied',
        functionality_storage: 'denied',
        security_storage: 'granted',
        wait_for_update: 1000,
      });
    </script>

    <script>
      /* >> Heatmap.com :: Snippet << */
      (function (h, e, a, t, m, ap) {
        (h._heatmap_paq = []).push(['setTrackerUrl', (h.heatUrl = e) + a]);
        h.hErrorLogs = h.hErrorLogs || [];
        ap = t.createElement('script');
        ap.src = h.heatUrl + 'preprocessor.min.js?sid=' + m;
        ap.defer = true;
        t.head.appendChild(ap);
        ['error', 'unhandledrejection'].forEach(function (ty) {
          h.addEventListener(ty, function (et) {
            h.hErrorLogs.push({ type: ty, event: et });
          });
        });
      })(window, 'https://dashboard.heatmap.com/', 'heatmap.php', document, 5260);
    </script>

    <!-- OneTrust Cookies Consent Wrapper and autoblock for hudabeauty-shop.myshopify.com -->
    
    <script
      type="text/javascript"
      src="https://cdn.cookielaw.org/consent/7139840c-61d3-40fc-a330-2da940b717ff/OtAutoBlock.js"
    ></script>
    <script type="text/javascript">
      // OneTrust calls this when consent state is ready/changes
      function OptanonWrapper() {
        console.log('Optanon Wrapper Fire');
        var groups = (window.OnetrustActiveGroups || '').split(',');

        var allowPerf = groups.includes('C0002'); // Performance/Analytics
        var allowFunc = groups.includes('C0003'); // Functional
        var allowAds = groups.includes('C0004'); // Targeting/Advertising

        gtag('consent', 'update', {
          analytics_storage: allowPerf ? 'granted' : 'denied',
          functionality_storage: allowFunc ? 'granted' : 'denied',
          ad_storage: allowAds ? 'granted' : 'denied',
          ad_user_data: allowAds ? 'granted' : 'denied',
          ad_personalization: allowAds ? 'granted' : 'denied',
        });
        gtag({ event: 'consent_updated' });
        gtag({ event: 'OneTrustGroupsUpdated' });
      }
    </script>
    <!-- OneTrust Cookies Consent Notice end -->

    
    <script>
    
    
    

    const DebugActive = false;
    const CURRENCY = "EUR";
    const KLAVIYO_COMPANY_ID = "RU2ww8";
    const KLAVIYO_LOGIN_EVENT = "User login";

    let cartData = [];
    let dlLoginAttempted = false;
    let dlLoginFailureSent = false;

    if (getCookieByName('_ga') && getCookieByName('_ga').substring(6) === "G-Z5J5GSLE7L") {
        console.warn('Invalid configuration detected: attempting reset - ' + getCookieByName('_ga').substring(6))
        deleteCookieIfContains('_ga', "G-Z5J5GSLE7L")
    }

    // Added data-ot-ignore to allow OT-AB ignore state without OT dashboard access and repeated changes
    (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
            new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
            j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.setAttribute('class', 'optanon-category-C0001');
            j.setAttribute('data-ot-ignore');j.async=true;j.src=
            'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
    })(window,document,'script','dataLayer',"GTM-NF5885ZB");

    function getCookieByName(name) {
        const match = document.cookie.match(new RegExp('(^| )' + name + '=([^;]+)'));
        if (match) return match[2];
        return undefined;
    }

    function getCookieForDeleteValue(name) {
        const match = document.cookie
            .split('; ')
            .find(c => c.startsWith(name + '='));
        return match ? decodeURIComponent(match.split('=').slice(1).join('=')) : null;
    }

    function deleteCookieAllScopes(name) {
        const hostname = location.hostname;
        const domains = [
            hostname,
            '.' + hostname,
            '.' + hostname.replace(/^www\./, '')
        ];

        domains.forEach(domain => {
            document.cookie = `${name}=; Max-Age=0; path=/; domain=${domain}`;
        });
    }

    function deleteCookieIfContains(name, substring) {
        const value = getCookieForDeleteValue(name);
        if (!value || !value.includes(substring)) return false;

        deleteCookieAllScopes(name);
        return true;
    }
    async function sha256Hex(input) {
        if (!input) return undefined;

        const normalized = String(input).trim().toLowerCase();
        const data = new TextEncoder().encode(normalized);
        const hashBuffer = await crypto.subtle.digest('SHA-256', data);
        const hashArray = Array.from(new Uint8Array(hashBuffer));
        return hashArray.map(b => b.toString(16).padStart(2, '0')).join('');
    }


    function getGaClientId() {
        const ga = getCookieByName('_ga');
        if (!ga) return undefined;

        const parts = ga.split('.');

        if (parts.length >= 4) return parts[2] + '.' + parts[3];

        return undefined;
    }

    function sendKlaviyoEvent(metricName, profile, properties) {
        if (!KLAVIYO_COMPANY_ID || !metricName || !profile || !profile.email) return;

        const payload = {
            data: {
                type: "event",
                attributes: {
                    time: new Date().toISOString(),
                    properties: properties || {},
                    metric: {
                        data: {
                            type: "metric",
                            attributes: { name: metricName,  service: "shopify" }
                        }
                    },
                    profile: {
                        data: {
                            type: "profile",
                            attributes: profile
                        }
                    }
                }
            }
        };

        fetch('https://a.klaviyo.com/client/events/?company_id=' + encodeURIComponent(KLAVIYO_COMPANY_ID), {
            method: 'POST',
            headers: {
                'Content-Type': 'application/json',
                'revision': '2025-04-15'
            },
            body: JSON.stringify(payload),
            keepalive: true
        }).then((res) => {
            if (DebugActive) console.log('[Klaviyo] event', metricName, res.ok ? 'ok' : 'error');
        }).catch((err) => {
            if (DebugActive) console.warn('[Klaviyo] event failed', metricName, err);
        });
    }

    function sendKlaviyoLoginEvent() {
        const profile = {
            email: null,
            first_name: null,
            last_name: null
        };
        if (!profile.email) return;

        const properties = {
            method: "email_password",
            login_status: "success",
            page_type: "index",
            page_title: "Huda Beauty Official Store | Makeup, Skincare, \u0026amp; Fragrance Must-Haves",
            shopify_customer_id: null
        };

        sendKlaviyoEvent(KLAVIYO_LOGIN_EVENT, profile, properties);
    }


    async function DLPageViewed() {
        const rawEmail =  undefined ;
        const hashedEmail = await sha256Hex(rawEmail);
        const eventData = {
            event: "page_view",
            user: {

                user_id: hashedEmail,
                shopify_id:  undefined ,
                first_name: "guest_first_name",
                last_name:  "guest_last_name",
                email:      hashedEmail,
                phone:      "guest_phone",
                newsletter: "not_subscribed",
                user_tier: "unknown",
                login_status: "guest",
                session_id: getCookieByName("_shopify_s"),
                client_id: getGaClientId(),
            },
            page: { name: "Huda Beauty Official Store | Makeup, Skincare, &amp; Fragrance Must-Haves", type: "index", platform: "Shopify", device: navigator.userAgent }
        };
        window.dataLayer.push({ ecommerce: null });
        window.dataLayer.push(eventData);
        if (DebugActive) console.log("page_view", eventData);
    }

    function DLFooterNav(event) {
        const link = event.target.closest('a[href]');
        if (!link) return;

        const eventData = {
            event: 'footer_nav',
            footer: {
                element_id: link.id || '',
                element_text: (link.textContent || '').trim(),
                href: link.getAttribute('href') || ''
            }
        };
        window.dataLayer.push(eventData);
        if (DebugActive) console.log('footer_nav', eventData);
    }


    function DLMenuNav(event) {
        const clickedItem = event.target.textContent.trim();
        const eventData = { event: "menu_nav", menu: { category: "Huda Beauty", sub_category_1: clickedItem } };
        window.dataLayer.push({ ecommerce: null });
        window.dataLayer.push(eventData);
        if (DebugActive) console.log("menu_nav", eventData);
    }

    function DLCarousel(event, carousel, navigation_type) {
        function getActiveSlide() {
            const targetSlide = event?.target?.closest?.('.slider__slide');
            if (targetSlide && carousel.contains(targetSlide)) return targetSlide;

            if (carousel?.currentPage && carousel?.sliderItemsToShow?.length) {
                const idx = Math.min(
                    carousel.sliderItemsToShow.length - 1,
                    Math.max(0, carousel.currentPage - 1)
                );
                return carousel.sliderItemsToShow[idx];
            }

            return (
                carousel.querySelector('.slider__slide[aria-hidden="false"], .slider__slide.is-active') ||
                carousel.querySelector('.slider__slide')
            );
        }

        function getSlideIndex(slide) {
            if (!slide) return -1;

            const slides = Array.from(carousel.querySelectorAll('.slider__slide'));
            const domIndex = slides.indexOf(slide);
            if (domIndex > -1) return domIndex + 1;

            const posAttr = slide.dataset?.mediaPosition;
            if (posAttr) {
                const parsed = parseInt(posAttr, 10);
                if (!Number.isNaN(parsed)) return parsed;
            }

            const mediaId = slide.dataset?.mediaId || slide.dataset?.target;
            if (mediaId) {
                const gallery = carousel.closest('media-gallery');
                const thumb = gallery?.querySelector(`[data-target="${mediaId}"]`);
                const thumbPos = thumb?.dataset?.mediaPosition;
                if (thumbPos) {
                    const parsed = parseInt(thumbPos, 10);
                    if (!Number.isNaN(parsed)) return parsed;
                }
            }

            return -1;
        }

        function getSlideTitle(slide) {
            if (!slide) return '';
            const img = slide.querySelector('img');
            const src = img?.currentSrc || img?.getAttribute('src') || '';
            if (!src) return '';
            try {
                const url = new URL(src, window.location.href);
                const file = (url.pathname || '').split('/').pop() || '';
                const decoded = decodeURIComponent(file);
                return decoded.replace(/\.[^/.]+$/, '');
            } catch (e) {
                const clean = src.split('?')[0].split('#')[0];
                const file = (clean || '').split('/').pop() || '';
                const decoded = decodeURIComponent(file);
                return decoded.replace(/\.[^/.]+$/, '');
            }
        }

        function pushEvent() {
            const isArrowClick = !!event?.target?.closest?.('.slider-button');
            const activeSlide = isArrowClick ? null : getActiveSlide();
            const itemIndex = isArrowClick ? undefined : getSlideIndex(activeSlide);
            const fallbackTitle = null;
            const itemTitle = isArrowClick ? undefined : (getSlideTitle(activeSlide) || fallbackTitle);

            const eventData = {
                event: "carousel_pdp_click",
                carousel: {
                    
                    item_id: "",
                    
                    navigation_type: navigation_type
                }
            };
            if (!isArrowClick) {
                eventData.carousel.item_index = itemIndex;
                eventData.carousel.item_title = itemTitle;
            }
            window.dataLayer.push({ ecommerce: null });
            window.dataLayer.push(eventData);
            if (DebugActive) console.log("carousel_pdp_click", navigation_type, eventData);
        }

        const isControlClick = navigation_type !== 'swipe' && (
            event.target.closest('.slider-button, [data-slide], .slider-counter__link, .slider-dot, .media-gallery__nav, .swiper-button-next, .swiper-button-prev')
        );

        if (isControlClick) {
            requestAnimationFrame(() => requestAnimationFrame(pushEvent));
        } else {
            pushEvent();
        }
    }

    function DLFilter(event) {
        const eventData = { event: "filtering", filter: { type: event.target.textContent.trim(), value: event.target.textContent.trim(), interaction_type: "modify", applied: true } };
        window.dataLayer.push({ ecommerce: null });
        window.dataLayer.push(eventData);
        if (DebugActive) console.log("filtering", eventData);
    }

    function DLSort(clickedElement) {
        let sortCriteria;
        let order = "Ascending";
        if (clickedElement.matches('span, input')){
            const parentLabel = clickedElement.parentElement;
            sortCriteria = parentLabel.innerText;
        } else if (clickedElement.matches('label')){
            sortCriteria = clickedElement.innerText;
        }
        const eventData = { event: "sorting", sort: { criteria: sortCriteria, order, interaction_type: "select", applied: true } };
        window.dataLayer.push({ ecommerce: null });
        window.dataLayer.push(eventData);
        if (DebugActive) console.log("sorting", sortCriteria, eventData);
    }

    function DLSearch() {
        const searchData = { event: "search_result", search: { query: "", results_count: "" } };
        window.dataLayer.push(searchData);
        if (DebugActive) console.log("search_result", searchData);
    }

    function dlDebounce(fn, wait){ let t; return function(){ const ctx=this, args=arguments; clearTimeout(t); t=setTimeout(function(){ fn.apply(ctx,args); }, wait); }; }

    function dlPredictiveResultCount(container){
        if (!container) return 0;
        const selectors = ['[data-predictive-search-item]', '.predictive-search__item', '.predictive-search__result-item', '.predictive-search__list-item', 'li[role="option"]'];
        for (let i=0;i<selectors.length;i++){
            const total = container.querySelectorAll(selectors[i]).length;
            if (total) return total;
        }
        return 0;
    }

    function dlPushPredictiveSearch(query, count){
        const eventData = { event: "search_result", search: { query: query || "", results_count: String(count || 0) } };
        window.dataLayer.push({ ecommerce: null });
        window.dataLayer.push(eventData);
        if (DebugActive) console.log("search_result (predictive)", eventData);
    }

    function DLPredictiveSearchWire(){
        const wrapper = document.querySelector('predictive-search') || document.querySelector('[data-predictive-search]') || document.querySelector('.predictive-search');
        const form = (wrapper && wrapper.querySelector('form[action*="/search"]')) || document.querySelector('form[action*="/search"]');
        if (!form) return;
        const input = form.querySelector('input[name="q"], input[type="search"]');
        if (!input) return;
        const results = (wrapper && (wrapper.querySelector('[id^="predictive-search-results"]') || wrapper.querySelector('.predictive-search__results'))) ||
            document.querySelector('[id^="predictive-search-results"]') ||
            document.querySelector('.predictive-search__results');

        let lastKey = "";
        const tryPush = dlDebounce(function(){
            const q = (input.value || "").trim();
            if (q.length < 2) return;
            const cnt = dlPredictiveResultCount(results);
            const key = q + "|" + cnt;
            if (key === lastKey) return;
            lastKey = key;
            dlPushPredictiveSearch(q, cnt);
        }, 120);

        if (results) {
            const mo = new MutationObserver(function(){ tryPush(); });
            mo.observe(results, { childList: true, subtree: true });
        }
        input.addEventListener('input', tryPush);
        document.addEventListener('predictive-search:rendered', tryPush, true);
        document.addEventListener('predictive-search:updated', tryPush, true);
        document.addEventListener('predictive-search:open', tryPush, true);
    }

    function DLSelectItem(productCard) {
        const eventData = {
            event: "select_item",
            ecommerce: { items: [ {
                    item_id: productCard.getAttribute("dl-product-id"),
                    item_name: productCard.getAttribute("dl-product-name"),
                    item_brand: productCard.getAttribute("dl-product-brand"),
                    item_category: productCard.getAttribute("dl-product-category"),
                    item_category2: productCard.getAttribute("dl-product-category2"),
                    item_variant: productCard.getAttribute("dl-product-variant"),
                    price: productCard.getAttribute("dl-product-price"),
                    currency: productCard.getAttribute("dl-product-currency"),
                    item_list_name: productCard.getAttribute("dl-product-list"),
                } ] }
        };
        window.dataLayer.push({ ecommerce: null });
        window.dataLayer.push(eventData);
        if (DebugActive) console.log("select_item", eventData);
    }

    function DLViewItem(productCard) {
        const eventData = {
            event: "view_item",
            ecommerce: { items: [{
                    
                    item_id: "",
                    
                    item_name: "",
                    item_brand: "",
                    item_category: "",
                    item_category2: "",
                    price: "",
                    currency: "EUR",
                    quantity: 1
                }] }
        };
        window.dataLayer.push({ ecommerce: null });
        window.dataLayer.push(eventData);
        if (DebugActive) console.log("view_item", eventData);
    }

    function DLViewItemList(elements) {
        const items = [];
        for (const element of elements) {
            const el = element.querySelector(".dl-card-product");
            if (!el) continue;
            items.push({
                item_id: el.getAttribute("dl-product-id"),
                item_name: el.getAttribute("dl-product-name"),
                item_brand: el.getAttribute("dl-product-brand"),
                item_category: el.getAttribute("dl-product-category"),
                item_category2: el.getAttribute("dl-product-category2"),
                price: el.getAttribute("dl-product-price"),
                currency: el.getAttribute("dl-product-currency"),
                quantity: 1
            });
        }
        
        item_list_name_value = null;
        


        const eventData = { event: "view_item_list", ecommerce: { item_list_name: item_list_name_value, items } };
        window.dataLayer.push({ ecommerce: null });
        window.dataLayer.push(eventData);
        if (DebugActive) console.log("view_item_list", eventData);
    }

    function isElementInViewport(el) {
        const rect = el.getBoundingClientRect();
        const threshold = 0.95;
        const elHeightVisible = Math.min(rect.bottom, window.innerHeight) - Math.max(rect.top, 0);
        const elHeight = rect.height;
        return (elHeightVisible / elHeight) >= threshold;
    }

    function DLAddToCart(productCard, source, forceIsPreorder){
        try {
            if (!productCard) {
                productCard = document.querySelector(".dl-main-product") || document.querySelector(".dl-card-product");
                if (!productCard) { if (DebugActive) console.warn("DLAddToCart: no productCard found"); return; }
            }
            const productId = productCard.getAttribute("dl-product-id") || "";

            let isPreorder = !!forceIsPreorder;
            if (!isPreorder) {
                let rawPreAttr = productCard.getAttribute("dl-product-isPreorder");
                if (rawPreAttr === null) rawPreAttr = productCard.getAttribute("isPreorder");
                if (rawPreAttr === null) {
                    isPreorder = productCard.hasAttribute("dl-product-isPreorder") || productCard.hasAttribute("isPreorder");
                } else {
                    const v = String(rawPreAttr).trim().toLowerCase();
                    isPreorder = (v === "true" || v === "1" || v === "yes");
                }
            }

            let productIndex = getProductCartIndex(productId);
            let productQuantity = 1;
            if (productIndex !== null) {
                cartData[productIndex].ecommerce.items[0].quantity += 1;
                productQuantity = cartData[productIndex].ecommerce.items[0].quantity;
            }

            const eventName = isPreorder ? "pre_order" : "add_to_cart";
            const eventData = {
                event: eventName,
                ecommerce: { items: [{
                        item_id: productId,
                        item_name: productCard.getAttribute("dl-product-name"),
                        item_brand: productCard.getAttribute("dl-product-brand"),
                        item_category: productCard.getAttribute("dl-product-category"),
                        item_category2: productCard.getAttribute("dl-product-category2"),
                        item_variant: productCard.getAttribute("dl-product-variant"),
                        price: productCard.getAttribute("dl-product-price"),
                        currency: productCard.getAttribute("dl-product-currency"),
                        quantity: productQuantity,
                        add_to_cart_source: source
                    }] }
            };

            if (productIndex === null) {
                cartData.unshift(eventData);
                productIndex = 0;
            }
            window.dataLayer = window.dataLayer || [];
            window.dataLayer.push({ ecommerce: null });
            window.dataLayer.push(eventData);
            if (DebugActive) console.log(eventName + " item index:", productIndex, cartData[productIndex]);
        } catch (err) {
            console.error("DLAddToCart error:", err);
        }
    }

    function getProductCartIndex(productId){
        try {
            for (let i = 0; i < cartData.length; i++){
                const entry = cartData[i];
                if (!entry || !entry.ecommerce || !entry.ecommerce.items || !entry.ecommerce.items[0]) continue;
                const id = String(entry.ecommerce.items[0].item_id || "");
                if (id === String(productId || "")) return i;
            }
        } catch(e) { if (console && console.warn) console.warn("getProductCartIndex error:", e); }
        return null;
    }

    function DLRemoveFromCart(productCardIndex){
        try {
            productCardIndex -= 1;
            const cartProduct = cartData.splice(productCardIndex, 1);
            if (cartProduct != null && cartProduct?.[0]?.ecommerce) {
                const eventData = { event: "remove_from_cart", ecommerce: { items: [ {
                            item_id: cartProduct[0].ecommerce.items[0].item_id,
                            item_name: cartProduct[0].ecommerce.items[0].item_name,
                            item_brand: cartProduct[0].ecommerce.items[0].item_brand,
                            item_variant: cartProduct[0].ecommerce.items[0].item_variant,
                            price: cartProduct[0].ecommerce.items[0].price,
                            currency: CURRENCY,
                            quantity: cartProduct[0].ecommerce.items[0].quantity,
                        } ] } };
                window.dataLayer.push({ ecommerce: null });
                window.dataLayer.push(eventData);
                if (DebugActive) console.log("remove_from_cart", productCardIndex, cartProduct, eventData);
            } else console.log("remove_from_cart - Error: productCart not found");
        } catch (error) { console.error("remove_from_cart - Error:", error); }
    }

    function DLViewPromotion(promotionBanner){

        const promotion_id   = promotionBanner.getAttribute("data-promo-id") || "empty";
        const promotion_name = promotionBanner.getAttribute("data-promo-name") || "empty";
        const creative_slot  = promotionBanner.getAttribute("data-creative-slot") || "empty";
        const promotion_class =
            promotionBanner.getAttribute("data-promo-class") ||
            promotionBanner.className ||
            "";

        const eventData = { event: "view_promotion", ecommerce: { promotions: [ {
                    promotion_id: promotion_id, promotion_name: promotion_name, creative_slot: creative_slot, promotion_class: promotion_class
                } ] } };

        window.dataLayer.push({ ecommerce: null });
        window.dataLayer.push(eventData);
        if (DebugActive) console.log("view_promotion class:", promotion_class, eventData);
    }

    function DLSelectPromotion(promotionBanner){
        const promotion_id   = promotionBanner.getAttribute("data-promo-id") || "empty";
        const promotion_name = promotionBanner.getAttribute("data-promo-name") || "empty";
        const creative_slot  = promotionBanner.getAttribute("data-creative-slot") || "empty";
        const promotion_class =
            promotionBanner.getAttribute("data-promo-class") ||
            promotionBanner.className ||
            "";

        const eventData = {
            event: "select_promotion",
            ecommerce: {
                promotions: [{
                    promotion_id,
                    promotion_name,
                    creative_slot,
                    promotion_class
                }]
            }
        };

        window.dataLayer.push({ ecommerce: null });
        window.dataLayer.push(eventData);
        if (DebugActive) console.log("select_promotion class:", promotion_class, eventData);
    }


    function getFreeSampleItems(){
        let freeSampleItem = null;
        try{
            const freeSampleElement = document.querySelector('.free-sample');
            freeSampleItem = {
                item_id: '',
                item_name: freeSampleElement.querySelector('.h6').textContent.trim(),
                item_brand: '',
                item_category: '',
                item_category2: '',
                item_variant: '',
                price: '',
                currency: '',
                quantity: '',
                cart_add_on: "sample"
            }
        } catch (error) {}
        return freeSampleItem
    }

    function DLBeginCheckout(){
        const items = [];
        cartData.forEach(item => {
            items.push({
                item_id: item.ecommerce.items[0].item_id,
                item_name: item.ecommerce.items[0].item_name,
                item_brand: item.ecommerce.items[0].item_brand,
                item_category: item.ecommerce.items[0].item_category,
                item_category2: item.ecommerce.items[0].item_category2,
                item_variant: item.ecommerce.items[0].item_variant,
                price: item.ecommerce.items[0].price,
                quantity: item.ecommerce.items[0].quantity,
                cart_add_on: "none"
            });
        });

        const sampleIdx = items.findIndex(it => {
            const name = (it.item_name || '').toLowerCase();
            const cat  = (it.item_category || '').toLowerCase();
            const zero = String(it.price || '').trim() === '0' || String(it.price || '').trim() === '0.00';
            return cat === 'samples' || name.includes('sample') || zero;
        });

        const donor = [...items].reverse().find(it => {
            const name = (it.item_name || '').toLowerCase();
            const cat  = (it.item_category || '').toLowerCase();
            return !(cat === 'samples' || name.includes('sample')) && (it.item_id || it.item_variant);
        });

        if (sampleIdx > -1) {
            if (donor) {
                if (!items[sampleIdx].item_id)      items[sampleIdx].item_id = donor.item_id || donor.item_variant || '';
                if (!items[sampleIdx].item_variant) items[sampleIdx].item_variant = donor.item_variant || donor.item_id || '';
            }
            items[sampleIdx].price = "0";
            items[sampleIdx].cart_add_on = "sample";
        } else if (document.querySelector('.free-sample') && donor) {
            // append a sample row if DOM indicates a sample but none in items[]
            const sample = { ...donor, price: "0", cart_add_on: "sample" };
            items.push(sample);
        }

        const eventData = {
            event: "begin_checkout",
            ecommerce: {
                value: "0,00",
                currency: "EUR",
                coupon: "",
                items
            }
        };
        window.dataLayer.push({ ecommerce: null });
        window.dataLayer.push(eventData);
        if (DebugActive) console.log("begin_checkout", eventData);
    }


    function DLViewCart(){
        const items = [];
        cartData.forEach(item => {
            items.push({
                item_id: item.ecommerce.items[0].item_id,
                item_name: item.ecommerce.items[0].item_name,
                item_brand: item.ecommerce.items[0].item_brand,
                item_category: item.ecommerce.items[0].item_category,
                item_category2: item.ecommerce.items[0].item_category2,
                item_variant: item.ecommerce.items[0].item_variant,
                price: item.ecommerce.items[0].price,
                currency: CURRENCY,
                quantity: item.ecommerce.items[0].quantity,
                cart_add_on: "none"
            });
        });

        // detect the sample line already in items
        const sampleIdx = items.findIndex(it => {
            const name = (it.item_name || '').toLowerCase();
            const cat  = (it.item_category || '').toLowerCase();
            const zero = String(it.price || '').trim() === '0' || String(it.price || '').trim() === '0.00';
            return cat === 'samples' || name.includes('sample') || zero;
        });

        if (sampleIdx > -1) {
            // donor = last non-sample line that has IDs
            const donor = [...items].reverse().find(it => {
                const name = (it.item_name || '').toLowerCase();
                const cat  = (it.item_category || '').toLowerCase();
                return !(cat === 'samples' || name.includes('sample')) && (it.item_id || it.item_variant);
            });

            // modify only required fields on the sample row
            if (donor) {
                if (!items[sampleIdx].item_id)      items[sampleIdx].item_id = donor.item_id || donor.item_variant || '';
                if (!items[sampleIdx].item_variant) items[sampleIdx].item_variant = donor.item_variant || donor.item_id || '';
            }
            items[sampleIdx].price = "0";
            items[sampleIdx].cart_add_on = "sample";
        }

        const footer = document.querySelector('.cart-drawer__footer .footer-row');
        let subtotal;
        if (footer && footer.children.length >= 2) {
            const subtotalText = footer.children[1].textContent.trim();
            subtotal = parseFloat(subtotalText.replace('$', ''));
        }

        const eventData = { event: "view_cart", ecommerce: { items, total_items: items.length, total_value: subtotal } };
        window.dataLayer.push({ ecommerce: null });
        window.dataLayer.push(eventData);
        if (DebugActive) console.log("view_cart", eventData);
    }


    function TriggerSignup(){
        localStorage.setItem('hasDLRegisteredEvent', true);
        if (DebugActive) console.log("trigger signup", localStorage.getItem("hasDLRegisteredEvent"));
    }

    function DLSignup(id){
        const eventData = { event: "sign_up", ecommerce: { user_id: id, sign_up_method: "email_password", source: "landing_page" } };
        window.dataLayer.push({ ecommerce: null });
        window.dataLayer.push(eventData);
        if (DebugActive) console.log("sign_up", eventData);
    }

    function DLNewsLetter(){
        const eventData = { event: "newsletter_success", subscription: { method: "footer_form", status: "subscribed", source: "Huda Beauty Official Store | Makeup, Skincare, &amp; Fragrance Must-Haves" } };
        window.dataLayer.push({ ecommerce: null });
        window.dataLayer.push(eventData);
        if (DebugActive) console.log("newsletter_success", eventData);
    }

    function DLLogout(){
        const eventData = { event: "user_logout", login: { method: "account_settings", reason: "user_initiated" } };
        window.dataLayer.push({ ecommerce: null });
        window.dataLayer.push(eventData);
        if (DebugActive) console.log("user_logout", eventData);
        localStorage.setItem('hasSentDLLoginEvent', false);
    }

    function DLLogin(status){
        const eventData = { event: "login", login: { method: "email_password", status: status } };
        window.dataLayer.push({ ecommerce: null });
        window.dataLayer.push(eventData);
        if (DebugActive) console.log("Login", status, eventData);
        if (status === "success") {
            sendKlaviyoLoginEvent();
            localStorage.setItem('hasSentDLLoginEvent', true);
        }
    }
    function DLWAOptIn() {
        window.dataLayer = window.dataLayer || [];
        window.dataLayer.push({ event: "WA_opt_in" });
        if (DebugActive) console.log("WA_opt_in");
    }

    document.addEventListener("DOMContentLoaded", function () {
        DLPageViewed();
        DLPredictiveSearchWire();

        document.addEventListener("click", (e) => {
            if (!e.target.closest("#wa-opt-in")) return;
            DLWAOptIn();
        });


        
localStorage.setItem('hasDLRegisteredEvent', false);

        
        

        document.querySelector("footer")?.addEventListener("click", DLFooterNav);
        document.querySelectorAll(".dl-filter").forEach(b => b.addEventListener("click", DLFilter));
        document.querySelectorAll(".df-sort").forEach(b => b.addEventListener("mouseup", e => DLSort(e.target)));
        document.querySelector("ul.dl-menu-nav")?.addEventListener('click', DLMenuNav);

        document.querySelectorAll(".dl-pdp-slider").forEach(carousel => {
            let isDragging = false;
            carousel.addEventListener('click', (event) => { DLCarousel(event, carousel, "click"); });
            carousel.addEventListener('touchstart', (event) => { DLCarousel(event, carousel, "swipe"); });
            carousel.addEventListener('mousedown', () => { isDragging = true; });
            carousel.addEventListener('mouseleave', () => { isDragging = false; });
            carousel.addEventListener('mouseup', () => { isDragging = false; });
            carousel.addEventListener('mousemove', (event) => {
                if (isDragging){ DLCarousel(event, carousel, "swipe"); isDragging = false; }
            });
        });

        document.addEventListener('click', (evt) => {
            const btn = evt.target.closest('.product-form__submit');
            if (!btn) return;
            const source = btn.dataset ? btn.dataset.dlSource : undefined;
            const container = btn.closest('section.featured-card-product');
            let productCardData = container?.querySelector('.dl-card-product') || document.querySelector(".dl-main-product") || document.querySelector(".dl-card-product");
            const forcePre = /\bpre[\s-]?order\b/i.test((btn.innerText || btn.textContent || "")) ||
                btn.dataset.preorder === "true" ||
                btn.getAttribute('data-preorder') === "true" ||
                (btn.getAttribute('aria-label')||"").toLowerCase().includes('pre-order');
            DLAddToCart(productCardData, source, forcePre);
        });

        document.addEventListener("click", (e) => {
            const card = e.target.closest("section.featured-card-product");
            if (!card) return;

            if (e.target.closest(".product-form__submit, [name='add'], .quick-add, [data-add-to-cart]")) return;

            const toPdp = e.target.closest('a[href*="/products/"], .product-image-container, .feature-card_product-title a');
            if (!toPdp) return;

            const dataEl = card.querySelector(".dl-card-product");
            if (dataEl) DLSelectItem(dataEl);
        });

        document.getElementById("cart-icon-bubble")?.addEventListener("click", () => DLViewCart());

        document.getElementById("CartDrawer-Checkout")?.addEventListener("click", () => DLBeginCheckout());

        const cartDrawer = document.getElementById("CartDrawer");
        if (cartDrawer) {
            function isDrawerOpen(el) {
                if (!el) return false;
                if (el.hasAttribute('open')) return true;
                const ah = el.getAttribute('aria-hidden');
                if (ah === 'false') return true;
                if (el.classList.contains('is-open') || el.classList.contains('open') || el.classList.contains('active')) return true;

                // visibility fallback
                const style = window.getComputedStyle(el);
                if (style.display === 'none' || style.visibility === 'hidden' || parseFloat(style.opacity || '1') === 0) return false;
                const r = el.getBoundingClientRect();
                return r.width > 0 && r.height > 0 && r.bottom > 0 && r.top < window.innerHeight;
            }

            let firedForThisOpen = false;
            const tryFireViewCart = () => {
                const openNow = isDrawerOpen(cartDrawer);
                if (openNow && !firedForThisOpen) {
                    DLViewCart();
                    // wire checkout button when drawer is present
                    document.getElementById("CartDrawer-Checkout")
                        ?.addEventListener("click", () => DLBeginCheckout());
                    firedForThisOpen = true;
                }
                if (!openNow) firedForThisOpen = false;
            };

            ['cart-drawer:open','cart-drawer:opened','cart:open','cart:updated','cart:drawer-opened']
                .forEach(evt => document.addEventListener(evt, tryFireViewCart, true));

            const observer = new MutationObserver(tryFireViewCart);
            observer.observe(cartDrawer, {
                attributes: true,
                attributeFilter: ['class','open','aria-hidden','style']
            });
        }


        const promotionClasses = ["announcement-bar", "banner", "dl-promotion", "inline-banner", "image-with-text"];
        const promotionSelector = promotionClasses.map(item => `.${item}`).join(', ');
        const adObserver = new IntersectionObserver((entries, observer) => {
            entries.forEach(entry => { if (entry.isIntersecting) { DLViewPromotion(entry.target); observer.unobserve(entry.target); } });
        }, { threshold: 0.75 });
        document.querySelectorAll(promotionSelector).forEach(ad => adObserver.observe(ad));
        document.addEventListener("click", (e) => {
            const promoEl = e.target.closest('[data-promo-id], .dl-promotion, .announcement-bar, .banner, .inline-banner, .image-with-text');
            if (!promoEl) return;

            const hasAttrs =
                promoEl.hasAttribute("data-promo-id") ||
                promoEl.hasAttribute("data-promo-name") ||
                promoEl.hasAttribute("data-creative-slot");

            if (!hasAttrs) return;
            DLSelectPromotion(promoEl);
        });



        function isVisible(el){ return !!(el && (el.offsetWidth || el.offsetHeight || el.getClientRects().length)); }
        function findLoginErrorEl(){
            const selectors = [
                'form[action*="/account/login"] .form__message:not([hidden])',
                'form[action*="/account/login"] [role="alert"]',
                'form[action*="/account/login"] .errors',
                '.customer.login .form__message:not([hidden])',
                '.customer.login [role="alert"]',
                '.form__message--error',
                '.form__message:not([hidden])'
            ];
            for (const sel of selectors){
                const el = document.querySelector(sel);
                if (el && (el.textContent || '').trim() && isVisible(el)) return el;
            }
            return null;
        }
        const loginForm = document.querySelector('form[action*="/account/login"]');
        if (loginForm) {
            loginForm.addEventListener('submit', () => {
                dlLoginAttempted = true;
                dlLoginFailureSent = false;
                try { sessionStorage.setItem('dlLoginAttempted', '1'); } catch(e) {}
                if (DebugActive) console.log('[DL] login submit -> mark attempted');
            });
        }
        const attemptedPersisted = (() => { try { return sessionStorage.getItem('dlLoginAttempted') === '1'; } catch(e){ return false; }})();
        const errElOnLoad = findLoginErrorEl();
        if (attemptedPersisted && errElOnLoad && !dlLoginFailureSent) {
            DLLogin("failure");
            dlLoginFailureSent = true;
            try { sessionStorage.removeItem('dlLoginAttempted'); } catch(e) {}
            if (DebugActive) console.log('[DL] login failure detected on load');
        }
        const loginObserveRoot = (loginForm && (loginForm.parentElement || loginForm)) || document.body;
        const loginErrorObserver = new MutationObserver((mutationList, obs) => {
            if (dlLoginFailureSent) return;
            const errEl = findLoginErrorEl();
            if (errEl) {
                DLLogin("failure");
                dlLoginFailureSent = true;
                try { sessionStorage.removeItem('dlLoginAttempted'); } catch(e) {}
                obs.disconnect();
                if (DebugActive) console.log('[DL] login failure detected via observer');
            }
        });
        loginErrorObserver.observe(loginObserveRoot, { childList: true, subtree: true, attributes: true, characterData: true });

        let viewedItems = new Set();
        const itemObserver = new IntersectionObserver((entries, observer) => {
            let hasNewVisibleItems = false;
            entries.forEach(entry => {
                const el = entry.target;
                if (entry.isIntersecting && !viewedItems.has(el)) { viewedItems.add(el); hasNewVisibleItems = true; }
            });
            if (hasNewVisibleItems) {
                DLViewItemList(Array.from(document.querySelectorAll("section.featured-card-product")).filter(el => isElementInViewport(el)));
            }
        }, { threshold: 0.95 });
        document.querySelectorAll("section.featured-card-product").forEach(productCard => itemObserver.observe(productCard));
    });
</script>

    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width,initial-scale=1">
    <meta name="theme-color" content="#eb3986">
    
    <!-- Windows Phone -->
    <meta name="msapplication-navbutton-color" content="#eb3986">
    <!-- iOS Safari -->
    <meta name="apple-mobile-web-app-status-bar-style" content="#eb3986">

    
      <!-- Default canonical for all other pages -->
      <link rel="canonical" href="https://hudabeauty.com/en-fr">
    
<link rel="icon" type="image/png" href="//hudabeauty.com/cdn/shop/files/hb-favicon_1.png?crop=center&height=32&v=1759673942&width=32"><link rel="preconnect" href="https://fonts.shopifycdn.com" crossorigin><link rel="stylesheet" type="text/css" href="//hudabeauty.com/cdn/shop/t/162/assets/fonts.css?v=93596518336950251281775984104">

    
<title>
    Huda Beauty Official Store | Makeup, Skincare, &amp; Fragrance Must-Haves
</title>



  <meta name="keywords" content="huda beauty, kayali, wishful, glowish, makeup, skincare, fragrance">
  <meta property="og:title" content="Huda Beauty Official Store | Makeup, Skincare, &amp; Fragrance Must-Haves">
  <meta name="description" content="THE store for all things makeup, skincare, fragrance, beauty tools, tips, &amp; trends founded by makeup mogul, Huda Kattan. Free shipping available!">



  <meta property="og:description" content="Shop the full Huda Beauty makeup collection and get free International shipping on all orders over $75.">


<meta property="og:site_name" content="Huda Beauty">
<meta property="og:url" content="https://hudabeauty.com/en-fr">
<meta property="og:type" content="website">
<meta property="og:locale" content="default"><meta property="og:image" content="http://hudabeauty.com/cdn/shop/files/HB_Frame.webp?v=1760503354">
  <meta property="og:image:secure_url" content="https://hudabeauty.com/cdn/shop/files/HB_Frame.webp?v=1760503354">
  <meta property="og:image:width" content="2400">
  <meta property="og:image:height" content="1256"><meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Huda Beauty Official Store | Makeup, Skincare, &amp; Fragrance Must-Haves">
<meta name="twitter:description" content="Huda Beauty">

<script>
      window.customerEmail = null;
      window.shopURL = "hudabeauty-srore.myshopify.com";
      window.shopType = "Deret";

      const COMPANY_ID = "RU2ww8";

      const script = document.createElement("script");
      script.async = true;
      script.defer = true;
      script.type = "text/javascript";
      script.src = `//static.klaviyo.com/onsite/js/${COMPANY_ID}/klaviyo.js`;
      document.head.appendChild(script);
    </script>
    <script src="//hudabeauty.com/cdn/shop/t/162/assets/klaviyo-flows.js?v=28062374145119061611775984107" defer="defer"></script>

    
    

    <script src="//hudabeauty.com/cdn/shop/t/162/assets/pdp-swatches.js?v=55348014336480143441775984107" defer="defer"></script>
    <script src="//hudabeauty.com/cdn/shop/t/162/assets/product-card-swatches.js?v=46754686725236498871775984108" defer="defer"></script>
    <script src="//hudabeauty.com/cdn/shop/t/162/assets/constants.js?v=153985136988801810511775984105" defer="defer"></script>
    <script src="//hudabeauty.com/cdn/shop/t/162/assets/pubsub.js?v=158357773527763999511775984106" defer="defer"></script>
    <script src="//hudabeauty.com/cdn/shop/t/162/assets/global.js?v=80395266340136502341775984105" defer="defer"></script>
    <script src="//hudabeauty.com/cdn/shop/t/162/assets/atc-lock.js?v=82434578075077215571775984104" defer="defer"></script>
    <script src="//hudabeauty.com/cdn/shop/t/162/assets/details-disclosure.js?v=51428617062899688941775984106" defer="defer"></script>
    <script src="//hudabeauty.com/cdn/shop/t/162/assets/details-modal.js?v=101013125670148382801775984107" defer="defer"></script>
    <script src="//hudabeauty.com/cdn/shop/t/162/assets/tone-picker.js?v=85663865225726597901775984105" defer="defer"></script>
    <script src="//hudabeauty.com/cdn/shop/t/162/assets/search-form.js?v=21725275725830143181775984106" defer="defer"></script>
    <script src="//hudabeauty.com/cdn/shop/t/162/assets/product-variants-gallery.js?v=75068209589509078921775984106" defer="defer"></script>
    <script src="//hudabeauty.com/cdn/shop/t/162/assets/product-card-dropdown.js?v=14402472589865411191775984107" defer="defer"></script>
    <script src="//hudabeauty.com/cdn/shop/t/162/assets/ordergroove.js?v=146465992394346021121775984105" defer="defer"></script>
    <script src="//hudabeauty.com/cdn/shop/t/162/assets/suggested-items.js?v=138187772352715740271775984106" defer="defer"></script>
    <script src="//hudabeauty.com/cdn/shop/t/162/assets/tab-content.js?v=177053795719567354961775984107" defer="defer"></script>
    <script src="https://analytics.ahrefs.com/analytics.js" data-key="b3ipXRa8eHdje3EowOG46A" async></script>
    <script src="//hudabeauty.com/cdn/shop/t/162/assets/countries-consolidate.js?v=135062679906035218271775984106" defer="defer"></script>
    <script src="//hudabeauty.com/cdn/shop/t/162/assets/country-change-modal.js?v=75689957684233365321775984107" defer="defer"></script>

    <script src="//hudabeauty.com/cdn/shop/t/162/assets/cart-drawer-refresh.js?v=55510067593782476311775984105" defer="defer"></script>

    
    
    

    

    <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/95989629206/digital_wallets/dialog">
<meta name="shopify-requires-components" content="true" product-ids="10236281389334,10236396011798,10236963029270,10236969812246,10237089710358,10237112451350,10237138698518,10347261657366,10364428189974,10364466233622,10463204999446">
<meta name="shopify-checkout-api-token" content="3a7861b1c9e3694ee2a7f4440fc0e236">
<meta id="in-context-paypal-metadata" data-shop-id="95989629206" data-venmo-supported="false" data-environment="production" data-locale="en_US" data-paypal-v4="true" data-currency="EUR">

<link rel="alternate" hreflang="en" href="https://hudabeauty.com/en-us">
<link rel="alternate" hreflang="en-AE" href="https://hudabeauty.com/en-ae">
<link rel="alternate" hreflang="en-AT" href="https://hudabeauty.com/en-at">
<link rel="alternate" hreflang="en-AU" href="https://hudabeauty.com/en-au">
<link rel="alternate" hreflang="en-BE" href="https://hudabeauty.com/en-be">
<link rel="alternate" hreflang="en-CA" href="https://hudabeauty.com/en-ca">
<link rel="alternate" hreflang="en-CH" href="https://hudabeauty.com/en-ch">
<link rel="alternate" hreflang="en-DE" href="https://hudabeauty.com/en-de">
<link rel="alternate" hreflang="en-DK" href="https://hudabeauty.com/en-dk">
<link rel="alternate" hreflang="en-ES" href="https://hudabeauty.com/en-es">
<link rel="alternate" hreflang="en-FI" href="https://hudabeauty.com/en-fi">
<link rel="alternate" hreflang="en-FR" href="https://hudabeauty.com/en-fr">
<link rel="alternate" hreflang="en-GB" href="https://hudabeauty.com/en-gb">
<link rel="alternate" hreflang="en-HK" href="https://hudabeauty.com/en-hk">
<link rel="alternate" hreflang="en-IE" href="https://hudabeauty.com/en-ie">
<link rel="alternate" hreflang="en-IT" href="https://hudabeauty.com/en-it">
<link rel="alternate" hreflang="en-JP" href="https://hudabeauty.com/en-jp">
<link rel="alternate" hreflang="en-KR" href="https://hudabeauty.com/en-kr">
<link rel="alternate" hreflang="en-NL" href="https://hudabeauty.com/en-nl">
<link rel="alternate" hreflang="en-NO" href="https://hudabeauty.com/en-no">
<link rel="alternate" hreflang="en-NZ" href="https://hudabeauty.com/en-nz">
<link rel="alternate" hreflang="en-PL" href="https://hudabeauty.com/en-pl">
<link rel="alternate" hreflang="en-PT" href="https://hudabeauty.com/en-pt">
<link rel="alternate" hreflang="en-SE" href="https://hudabeauty.com/en-se">
<link rel="alternate" hreflang="en-SG" href="https://hudabeauty.com/en-sg">
<link rel="alternate" hreflang="en-BG" href="https://hudabeauty.com/en-bg">
<link rel="alternate" hreflang="en-HR" href="https://hudabeauty.com/en-hr">
<link rel="alternate" hreflang="en-RO" href="https://hudabeauty.com/en-ro">
<link rel="alternate" hreflang="en-AL" href="https://hudabeauty.com/en-al">
<link rel="alternate" hreflang="en-DZ" href="https://hudabeauty.com/en-dz">
<link rel="alternate" hreflang="en-AZ" href="https://hudabeauty.com/en-az">
<link rel="alternate" hreflang="en-BH" href="https://hudabeauty.com/en-bh">
<link rel="alternate" hreflang="en-CY" href="https://hudabeauty.com/en-cy">
<link rel="alternate" hreflang="en-EE" href="https://hudabeauty.com/en-ee">
<link rel="alternate" hreflang="en-HU" href="https://hudabeauty.com/en-hu">
<link rel="alternate" hreflang="en-IN" href="https://hudabeauty.com/en-in">
<link rel="alternate" hreflang="en-JO" href="https://hudabeauty.com/en-jo">
<link rel="alternate" hreflang="en-KE" href="https://hudabeauty.com/en-ke">
<link rel="alternate" hreflang="en-KW" href="https://hudabeauty.com/en-kw">
<link rel="alternate" hreflang="en-LV" href="https://hudabeauty.com/en-lv">
<link rel="alternate" hreflang="en-LU" href="https://hudabeauty.com/en-lu">
<link rel="alternate" hreflang="en-MV" href="https://hudabeauty.com/en-mv">
<link rel="alternate" hreflang="en-MT" href="https://hudabeauty.com/en-mt">
<link rel="alternate" hreflang="en-NG" href="https://hudabeauty.com/en-ng">
<link rel="alternate" hreflang="en-OM" href="https://hudabeauty.com/en-om">
<link rel="alternate" hreflang="en-PH" href="https://hudabeauty.com/en-ph">
<link rel="alternate" hreflang="en-QA" href="https://hudabeauty.com/en-qa">
<link rel="alternate" hreflang="en-SA" href="https://hudabeauty.com/en-sa">
<link rel="alternate" hreflang="en-SK" href="https://hudabeauty.com/en-sk">
<link rel="alternate" hreflang="en-SI" href="https://hudabeauty.com/en-si">
<link rel="alternate" hreflang="en-ZA" href="https://hudabeauty.com/en-za">
<link rel="alternate" hreflang="en-TZ" href="https://hudabeauty.com/en-tz">
<link rel="alternate" hreflang="en-AM" href="https://hudabeauty.com/en-am">
<link rel="alternate" hreflang="en-BN" href="https://hudabeauty.com/en-bn">
<link rel="alternate" hreflang="en-KH" href="https://hudabeauty.com/en-kh">
<link rel="alternate" hreflang="en-KG" href="https://hudabeauty.com/en-kg">
<link rel="alternate" hreflang="en-NP" href="https://hudabeauty.com/en-np">
<link rel="alternate" hreflang="en-TW" href="https://hudabeauty.com/en-tw">
<link rel="alternate" hreflang="en-VN" href="https://hudabeauty.com/en-vn">
<link rel="alternate" hreflang="en-BW" href="https://hudabeauty.com/en-bw">
<link rel="alternate" hreflang="en-KM" href="https://hudabeauty.com/en-km">
<link rel="alternate" hreflang="en-ET" href="https://hudabeauty.com/en-et">
<link rel="alternate" hreflang="en-GM" href="https://hudabeauty.com/en-gm">
<link rel="alternate" hreflang="en-GH" href="https://hudabeauty.com/en-gh">
<link rel="alternate" hreflang="en-MG" href="https://hudabeauty.com/en-mg">
<link rel="alternate" hreflang="en-MW" href="https://hudabeauty.com/en-mw">
<link rel="alternate" hreflang="en-MR" href="https://hudabeauty.com/en-mr">
<link rel="alternate" hreflang="en-MZ" href="https://hudabeauty.com/en-mz">
<link rel="alternate" hreflang="en-IS" href="https://hudabeauty.com/en-is">
<link rel="alternate" hreflang="en-MD" href="https://hudabeauty.com/en-md">
<link rel="alternate" hreflang="en-ME" href="https://hudabeauty.com/en-me">
<link rel="alternate" hreflang="en-BM" href="https://hudabeauty.com/en-bm">
<link rel="alternate" hreflang="en-KY" href="https://hudabeauty.com/en-ky">
<link rel="alternate" hreflang="en-CR" href="https://hudabeauty.com/en-cr">
<link rel="alternate" hreflang="en-CW" href="https://hudabeauty.com/en-cw">
<link rel="alternate" hreflang="en-DO" href="https://hudabeauty.com/en-do">
<link rel="alternate" hreflang="en-SV" href="https://hudabeauty.com/en-sv">
<link rel="alternate" hreflang="en-GL" href="https://hudabeauty.com/en-gl">
<link rel="alternate" hreflang="en-GP" href="https://hudabeauty.com/en-gp">
<link rel="alternate" hreflang="en-GT" href="https://hudabeauty.com/en-gt">
<link rel="alternate" hreflang="en-HN" href="https://hudabeauty.com/en-hn">
<link rel="alternate" hreflang="en-JM" href="https://hudabeauty.com/en-jm">
<link rel="alternate" hreflang="en-MQ" href="https://hudabeauty.com/en-mq">
<link rel="alternate" hreflang="en-PA" href="https://hudabeauty.com/en-pa">
<link rel="alternate" hreflang="en-SX" href="https://hudabeauty.com/en-sx">
<link rel="alternate" hreflang="en-LC" href="https://hudabeauty.com/en-lc">
<link rel="alternate" hreflang="en-FJ" href="https://hudabeauty.com/en-fj">
<link rel="alternate" hreflang="en-NC" href="https://hudabeauty.com/en-nc">
<link rel="alternate" hreflang="en-PG" href="https://hudabeauty.com/en-pg">
<link rel="alternate" hreflang="en-BO" href="https://hudabeauty.com/en-bo">
<link rel="alternate" hreflang="en-CL" href="https://hudabeauty.com/en-cl">
<link rel="alternate" hreflang="en-CO" href="https://hudabeauty.com/en-co">
<link rel="alternate" hreflang="en-EC" href="https://hudabeauty.com/en-ec">
<link rel="alternate" hreflang="en-GY" href="https://hudabeauty.com/en-gy">
<link rel="alternate" hreflang="en-PY" href="https://hudabeauty.com/en-py">
<link rel="alternate" hreflang="en-LK" href="https://hudabeauty.com/en-lk">
<link rel="alternate" hreflang="en-SR" href="https://hudabeauty.com/en-sr">
<link rel="alternate" hreflang="en-AO" href="https://hudabeauty.com/en-ao">
<script async="async" src="/checkouts/internal/preloads.js?locale=en-FR"></script>
<link rel="preconnect" href="https://shop.app" crossorigin="anonymous">
<script async="async" src="https://shop.app/checkouts/internal/preloads.js?locale=en-FR&shop_id=95989629206" crossorigin="anonymous"></script>
<script id="apple-pay-shop-capabilities" type="application/json">{"shopId":95989629206,"countryCode":"US","currencyCode":"EUR","merchantCapabilities":["supports3DS"],"merchantId":"gid:\/\/shopify\/Shop\/95989629206","merchantName":"Huda Beauty","requiredBillingContactFields":["postalAddress","email","phone"],"requiredShippingContactFields":["postalAddress","email","phone"],"shippingType":"shipping","supportedNetworks":["visa","masterCard","amex","discover","elo","jcb"],"total":{"type":"pending","label":"Huda Beauty","amount":"1.00"},"shopifyPaymentsEnabled":true,"supportsSubscriptions":true}</script>
<script id="shopify-features" type="application/json">{"accessToken":"3a7861b1c9e3694ee2a7f4440fc0e236","betas":["rich-media-storefront-analytics"],"domain":"hudabeauty.com","predictiveSearch":true,"shopId":95989629206,"locale":"en"}</script>
<script>var Shopify = Shopify || {};
Shopify.shop = "hudabeauty-srore.myshopify.com";
Shopify.locale = "en";
Shopify.currency = {"active":"EUR","rate":"0.856061"};
Shopify.country = "FR";
Shopify.theme = {"name":"PRODUCTION - Apr 12th 2026","id":186067484950,"schema_name":"Dawn","schema_version":"15.2.0","theme_store_id":null,"role":"main"};
Shopify.theme.handle = "null";
Shopify.theme.style = {"id":null,"handle":null};
Shopify.cdnHost = "hudabeauty.com/cdn";
Shopify.routes = Shopify.routes || {};
Shopify.routes.root = "/en-fr/";
Shopify.shopJsCdnBaseUrl = "https://cdn.shopify.com/shopifycloud/shop-js";</script>
<script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
<script>!function(o){function n(){var o=[];function n(){o.push(Array.prototype.slice.apply(arguments))}return n.q=o,n}var t=o.Shopify=o.Shopify||{};t.loadFeatures=n(),t.autoloadFeatures=n()}(window);</script>
<script>
  window.ShopifyPay = window.ShopifyPay || {};
  window.ShopifyPay.apiHost = "shop.app\/pay";
  window.ShopifyPay.redirectState = null;
</script>
<script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script>
<script defer="defer" async type="module" src="//hudabeauty.com/cdn/shopifycloud/shop-js/modules/v2/loader.init-shop-cart-sync.en.esm.js"></script>
<script type="module">
  await import("//hudabeauty.com/cdn/shopifycloud/shop-js/modules/v2/loader.init-shop-cart-sync.en.esm.js");

  window.Shopify.SignInWithShop?.initShopCartSync?.({"fedCMEnabled":true,"windoidEnabled":true});

</script>
<script>
  window.Shopify = window.Shopify || {};
  if (!window.Shopify.featureAssets) window.Shopify.featureAssets = {};
  window.Shopify.featureAssets['shop-js'] = {"shop-toast-manager":["modules/v2/loader.shop-toast-manager.en.esm.js"],"init-shop-email-lookup-coordinator":["modules/v2/loader.init-shop-email-lookup-coordinator.en.esm.js"],"init-fed-cm":["modules/v2/loader.init-fed-cm.en.esm.js"],"init-windoid":["modules/v2/loader.init-windoid.en.esm.js"],"shop-button":["modules/v2/loader.shop-button.en.esm.js"],"avatar":["modules/v2/loader.avatar.en.esm.js"],"init-shop-cart-sync":["modules/v2/loader.init-shop-cart-sync.en.esm.js"],"shop-cash-offers":["modules/v2/loader.shop-cash-offers.en.esm.js"],"init-customer-accounts-sign-up":["modules/v2/loader.init-customer-accounts-sign-up.en.esm.js"],"init-customer-accounts":["modules/v2/loader.init-customer-accounts.en.esm.js"],"lead-capture":["modules/v2/loader.lead-capture.en.esm.js"],"shop-login":["modules/v2/loader.shop-login.en.esm.js"],"shop-cart-sync":["modules/v2/loader.shop-cart-sync.en.esm.js"],"init-shop-for-new-customer-accounts":["modules/v2/loader.init-shop-for-new-customer-accounts.en.esm.js"],"checkout-modal":["modules/v2/loader.checkout-modal.en.esm.js"],"shop-login-button":["modules/v2/loader.shop-login-button.en.esm.js"],"pay-button":["modules/v2/loader.pay-button.en.esm.js"],"shop-follow-button":["modules/v2/loader.shop-follow-button.en.esm.js"],"payment-terms":["modules/v2/loader.payment-terms.en.esm.js"]};
</script>
<script>(function() {
  var isLoaded = false;
  function asyncLoad() {
    if (isLoaded) return;
    isLoaded = true;
    var urls = ["https:\/\/vision.duel.me\/duel-analytics.js?shop=hudabeauty-srore.myshopify.com","\/\/cdn.shopify.com\/proxy\/746958ac9a1d4e45234b1df6e13e1e230e644257871860bbe0750621f67a9a32\/cdn-scripts.signifyd.com\/shopify\/script-tag.js?shop=hudabeauty-srore.myshopify.com\u0026sp-cache-control=cHVibGljLCBtYXgtYWdlPTkwMA"];
    for (var i = 0; i < urls.length; i++) {
      var s = document.createElement('script');
      s.type = 'text/javascript';
      s.async = true;
      s.src = urls[i];
      var x = document.getElementsByTagName('script')[0];
      x.parentNode.insertBefore(s, x);
    }
  };
  if(window.attachEvent) {
    window.attachEvent('onload', asyncLoad);
  } else {
    window.addEventListener('load', asyncLoad, false);
  }
})();</script>
<script id="__st">var __st={"a":95989629206,"offset":14400,"reqid":"c70e56c3-7164-42cf-adfd-212b52d1e016-1776084616","pageurl":"hudabeauty.com\/en-fr","u":"07a54ab447fb","p":"home"};</script>
<script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
<script id="form-persister">!function(){'use strict';const t='contact',e='new_comment',n=[[t,t],['blogs',e],['comments',e],[t,'customer']],o='password',r='form_key',c=['recaptcha-v3-token','g-recaptcha-response','h-captcha-response',o],s=()=>{try{return window.sessionStorage}catch{return}},i='__shopify_v',u=t=>t.elements[r],a=function(){const t=[...n].map((([t,e])=>`form[action*='/${t}']:not([data-nocaptcha='true']) input[name='form_type'][value='${e}']`)).join(',');var e;return e=t,()=>e?[...document.querySelectorAll(e)].map((t=>t.form)):[]}();function m(t){const e=u(t);a().includes(t)&&(!e||!e.value)&&function(t){try{if(!s())return;!function(t){const e=s();if(!e)return;const n=u(t);if(!n)return;const o=n.value;o&&e.removeItem(o)}(t);const e=Array.from(Array(32),(()=>Math.random().toString(36)[2])).join('');!function(t,e){u(t)||t.append(Object.assign(document.createElement('input'),{type:'hidden',name:r})),t.elements[r].value=e}(t,e),function(t,e){const n=s();if(!n)return;const r=[...t.querySelectorAll(`input[type='${o}']`)].map((({name:t})=>t)),u=[...c,...r],a={};for(const[o,c]of new FormData(t).entries())u.includes(o)||(a[o]=c);n.setItem(e,JSON.stringify({[i]:1,action:t.action,data:a}))}(t,e)}catch(e){console.error('failed to persist form',e)}}(t)}const f=t=>{if('true'===t.dataset.persistBound)return;const e=function(t,e){const n=function(t){return'function'==typeof t.submit?t.submit:HTMLFormElement.prototype.submit}(t).bind(t);return function(){let t;return()=>{t||(t=!0,(()=>{try{e(),n()}catch(t){(t=>{console.error('form submit failed',t)})(t)}})(),setTimeout((()=>t=!1),250))}}()}(t,(()=>{m(t)}));!function(t,e){if('function'==typeof t.submit&&'function'==typeof e)try{t.submit=e}catch{}}(t,e),t.addEventListener('submit',(t=>{t.preventDefault(),e()})),t.dataset.persistBound='true'};!function(){function t(t){const e=(t=>{const e=t.target;return e instanceof HTMLFormElement?e:e&&e.form})(t);e&&m(e)}document.addEventListener('submit',t),document.addEventListener('DOMContentLoaded',(()=>{const e=a();for(const t of e)f(t);var n;n=document.body,new window.MutationObserver((t=>{for(const e of t)if('childList'===e.type&&e.addedNodes.length)for(const t of e.addedNodes)1===t.nodeType&&'FORM'===t.tagName&&a().includes(t)&&f(t)})).observe(n,{childList:!0,subtree:!0,attributes:!1}),document.removeEventListener('submit',t)}))}()}();</script>
<script integrity="sha256-Rd0I1U3I5BUKM/ZklNQ9ssBhyhvFP+5roZEEsW2MGUw=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//hudabeauty.com/cdn/shopifycloud/storefront/assets/storefront/load_feature-496de5fe.js" crossorigin="anonymous"></script>
<script crossorigin="anonymous" defer="defer" src="//hudabeauty.com/cdn/shopifycloud/storefront/assets/shopify_pay/storefront-65b4c6d7.js?v=20250812"></script>
<script data-source-attribution="shopify.dynamic_checkout.dynamic.init">var Shopify=Shopify||{};Shopify.PaymentButton=Shopify.PaymentButton||{isStorefrontPortableWallets:!0,init:function(){window.Shopify.PaymentButton.init=function(){};var t=document.createElement("script");t.src="https://hudabeauty.com/cdn/shopifycloud/portable-wallets/latest/portable-wallets.en.js",t.type="module",document.head.appendChild(t)}};
</script>
<script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
  function portableWalletsHideBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.add("hidden"),t.setAttribute("aria-hidden","true"),n.removeEventListener("click",e))}function portableWalletsShowBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.remove("hidden"),t.removeAttribute("aria-hidden"),n.addEventListener("click",e))}window.Shopify?.PaymentButton&&(window.Shopify.PaymentButton.hideBuyerConsent=portableWalletsHideBuyerConsent,window.Shopify.PaymentButton.showBuyerConsent=portableWalletsShowBuyerConsent);
</script>
<script data-source-attribution="shopify.dynamic_checkout.cart.bootstrap">document.addEventListener("DOMContentLoaded",(function(){function t(){return document.querySelector("shopify-accelerated-checkout-cart, shopify-accelerated-checkout")}if(t())Shopify.PaymentButton.init();else{new MutationObserver((function(e,n){t()&&(Shopify.PaymentButton.init(),n.disconnect())})).observe(document.body,{childList:!0,subtree:!0})}}));
</script>
<link id="shopify-accelerated-checkout-styles" rel="stylesheet" media="screen" href="https://hudabeauty.com/cdn/shopifycloud/portable-wallets/latest/accelerated-checkout-backwards-compat.css" crossorigin="anonymous">
<style id="shopify-accelerated-checkout-cart">
        #shopify-buyer-consent {
  margin-top: 1em;
  display: inline-block;
  width: 100%;
}

#shopify-buyer-consent.hidden {
  display: none;
}

#shopify-subscription-policy-button {
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
  font-size: inherit;
  cursor: pointer;
}

#shopify-subscription-policy-button::before {
  box-shadow: none;
}

      </style>

<script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>


    <style data-shopify>
      @font-face {
  font-family: Assistant;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//hudabeauty.com/cdn/fonts/assistant/assistant_n4.9120912a469cad1cc292572851508ca49d12e768.woff2") format("woff2"),
       url("//hudabeauty.com/cdn/fonts/assistant/assistant_n4.6e9875ce64e0fefcd3f4446b7ec9036b3ddd2985.woff") format("woff");
}

      @font-face {
  font-family: Assistant;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("//hudabeauty.com/cdn/fonts/assistant/assistant_n7.bf44452348ec8b8efa3aa3068825305886b1c83c.woff2") format("woff2"),
       url("//hudabeauty.com/cdn/fonts/assistant/assistant_n7.0c887fee83f6b3bda822f1150b912c72da0f7b64.woff") format("woff");
}

      
      
      @font-face {
  font-family: Assistant;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("//hudabeauty.com/cdn/fonts/assistant/assistant_n4.9120912a469cad1cc292572851508ca49d12e768.woff2") format("woff2"),
       url("//hudabeauty.com/cdn/fonts/assistant/assistant_n4.6e9875ce64e0fefcd3f4446b7ec9036b3ddd2985.woff") format("woff");
}


      
        :root,
        .color-scheme-1 {
          --color-background: 255,255,255;
        
          --gradient-background: #ffffff;
        

        
        --color-foreground: 0,0,0;
        --color-background-contrast: 191,191,191;
        --color-shadow: 0,0,0;
        --color-button: 0,0,0;
        --color-button-text: 255,255,255;
        --color-secondary-button: 255,255,255;
        --color-secondary-button-text: 0,0,0;
        --color-link: 0,0,0;
        --color-badge-foreground: 0,0,0;
        --color-badge-background: 255,255,255;
        --color-badge-border: 0,0,0;
        --payment-terms-background-color: rgb(255 255 255);
        
--d-sp-3xs: 2px;
--d-sp-2xs: 5px;
--d-sp-xs: 10px;
--d-sp-sm: 20px;
--d-sp-md: 30px;
--d-sp-lg: 45px;
--d-sp-xl: 60px;
--d-sp-2xl: 80px;
--d-sp-3xl: 120px;

--m-sp-2xs: 5px;
--m-sp-xs: 10px;
--m-sp-sm: 15px;
--m-sp-md: 20px;
--m-sp-lg: 30px;
--m-sp-xl: 40px;
--m-sp-2xl: 60px;
--m-sp-3xl: 80px;

--d-br-sm: 4px;
--d-br-ms: 6px;
--d-br-md: 10px;
--d-br-lg: 16px;
--d-br-round: 1000px;
--m-br-sm: 4px;
--m-br-md: 8px;
--m-br-lg: 14px;
--m-br-round: 1000px;


--grid-desktop-vertical-spacing: 20px;
--grid-desktop-horizontal-spacing: 20px;
--grid-mobile-vertical-spacing: 10px;
--grid-mobile-horizontal-spacing: 10px;


--primary-background: #EB3986;
--primary-foreground: #ffffff;

--secondary-background: #ffffff;
--secondary-2-background: #E3B9B3;
--secondary-foreground: #000000;

--token-foreground: #000;
--token-foreground-rgb: 0,0,0;
--token-foreground-secondary: #666;
--token-foreground-border-primary: #DDD;
--token-foreground-border-secondary:#F6F6F6;
--token-background: #FFF;
--token-background-secondary: #F8F6F3;
--token-neutral: #B8B8B8;

--color-success: #25B900;
--color-error: #EC0000;
--color-focus: #0038FF;

--hovered-primary-background-color: #B82D69;
--focused-border-color: #0038FF;
--disabled-button-color: #b8b8b8;
--hovered-tertiary-background-color: #eb3986;
--white: #ffffff;
--black: #000000;
--granite-gray: #666666;
--iron-gray: #444444;
--text-muted: #767676;
--gainsboro: #dddddd;
--lavender:#fff3fb;

      }
      
        
        .color-scheme-2 {
          --color-background: 243,243,243;
        
          --gradient-background: #f3f3f3;
        

        
        --color-foreground: 0,0,0;
        --color-background-contrast: 179,179,179;
        --color-shadow: 0,0,0;
        --color-button: 0,0,0;
        --color-button-text: 243,243,243;
        --color-secondary-button: 243,243,243;
        --color-secondary-button-text: 0,0,0;
        --color-link: 0,0,0;
        --color-badge-foreground: 0,0,0;
        --color-badge-background: 243,243,243;
        --color-badge-border: 0,0,0;
        --payment-terms-background-color: rgb(243 243 243);
        
--d-sp-3xs: 2px;
--d-sp-2xs: 5px;
--d-sp-xs: 10px;
--d-sp-sm: 20px;
--d-sp-md: 30px;
--d-sp-lg: 45px;
--d-sp-xl: 60px;
--d-sp-2xl: 80px;
--d-sp-3xl: 120px;

--m-sp-2xs: 5px;
--m-sp-xs: 10px;
--m-sp-sm: 15px;
--m-sp-md: 20px;
--m-sp-lg: 30px;
--m-sp-xl: 40px;
--m-sp-2xl: 60px;
--m-sp-3xl: 80px;

--d-br-sm: 4px;
--d-br-ms: 6px;
--d-br-md: 10px;
--d-br-lg: 16px;
--d-br-round: 1000px;
--m-br-sm: 4px;
--m-br-md: 8px;
--m-br-lg: 14px;
--m-br-round: 1000px;


--grid-desktop-vertical-spacing: 20px;
--grid-desktop-horizontal-spacing: 20px;
--grid-mobile-vertical-spacing: 10px;
--grid-mobile-horizontal-spacing: 10px;


--primary-background: #EB3986;
--primary-foreground: #ffffff;

--secondary-background: #ffffff;
--secondary-2-background: #E3B9B3;
--secondary-foreground: #000000;

--token-foreground: #000;
--token-foreground-rgb: 0,0,0;
--token-foreground-secondary: #666;
--token-foreground-border-primary: #DDD;
--token-foreground-border-secondary:#F6F6F6;
--token-background: #FFF;
--token-background-secondary: #F8F6F3;
--token-neutral: #B8B8B8;

--color-success: #25B900;
--color-error: #EC0000;
--color-focus: #0038FF;

--hovered-primary-background-color: #B82D69;
--focused-border-color: #0038FF;
--disabled-button-color: #b8b8b8;
--hovered-tertiary-background-color: #eb3986;
--white: #ffffff;
--black: #000000;
--granite-gray: #666666;
--iron-gray: #444444;
--text-muted: #767676;
--gainsboro: #dddddd;
--lavender:#fff3fb;

      }
      
        
        .color-scheme-3 {
          --color-background: 36,40,51;
        
          --gradient-background: #242833;
        

        
        --color-foreground: 255,255,255;
        --color-background-contrast: 47,52,66;
        --color-shadow: 18,18,18;
        --color-button: 255,255,255;
        --color-button-text: 0,0,0;
        --color-secondary-button: 36,40,51;
        --color-secondary-button-text: 255,255,255;
        --color-link: 255,255,255;
        --color-badge-foreground: 255,255,255;
        --color-badge-background: 36,40,51;
        --color-badge-border: 255,255,255;
        --payment-terms-background-color: rgb(36 40 51);
        
--d-sp-3xs: 2px;
--d-sp-2xs: 5px;
--d-sp-xs: 10px;
--d-sp-sm: 20px;
--d-sp-md: 30px;
--d-sp-lg: 45px;
--d-sp-xl: 60px;
--d-sp-2xl: 80px;
--d-sp-3xl: 120px;

--m-sp-2xs: 5px;
--m-sp-xs: 10px;
--m-sp-sm: 15px;
--m-sp-md: 20px;
--m-sp-lg: 30px;
--m-sp-xl: 40px;
--m-sp-2xl: 60px;
--m-sp-3xl: 80px;

--d-br-sm: 4px;
--d-br-ms: 6px;
--d-br-md: 10px;
--d-br-lg: 16px;
--d-br-round: 1000px;
--m-br-sm: 4px;
--m-br-md: 8px;
--m-br-lg: 14px;
--m-br-round: 1000px;


--grid-desktop-vertical-spacing: 20px;
--grid-desktop-horizontal-spacing: 20px;
--grid-mobile-vertical-spacing: 10px;
--grid-mobile-horizontal-spacing: 10px;


--primary-background: #EB3986;
--primary-foreground: #ffffff;

--secondary-background: #ffffff;
--secondary-2-background: #E3B9B3;
--secondary-foreground: #000000;

--token-foreground: #000;
--token-foreground-rgb: 0,0,0;
--token-foreground-secondary: #666;
--token-foreground-border-primary: #DDD;
--token-foreground-border-secondary:#F6F6F6;
--token-background: #FFF;
--token-background-secondary: #F8F6F3;
--token-neutral: #B8B8B8;

--color-success: #25B900;
--color-error: #EC0000;
--color-focus: #0038FF;

--hovered-primary-background-color: #B82D69;
--focused-border-color: #0038FF;
--disabled-button-color: #b8b8b8;
--hovered-tertiary-background-color: #eb3986;
--white: #ffffff;
--black: #000000;
--granite-gray: #666666;
--iron-gray: #444444;
--text-muted: #767676;
--gainsboro: #dddddd;
--lavender:#fff3fb;

      }
      
        
        .color-scheme-4 {
          --color-background: 18,18,18;
        
          --gradient-background: #121212;
        

        
        --color-foreground: 255,255,255;
        --color-background-contrast: 146,146,146;
        --color-shadow: 18,18,18;
        --color-button: 255,255,255;
        --color-button-text: 18,18,18;
        --color-secondary-button: 18,18,18;
        --color-secondary-button-text: 255,255,255;
        --color-link: 255,255,255;
        --color-badge-foreground: 255,255,255;
        --color-badge-background: 18,18,18;
        --color-badge-border: 255,255,255;
        --payment-terms-background-color: rgb(18 18 18);
        
--d-sp-3xs: 2px;
--d-sp-2xs: 5px;
--d-sp-xs: 10px;
--d-sp-sm: 20px;
--d-sp-md: 30px;
--d-sp-lg: 45px;
--d-sp-xl: 60px;
--d-sp-2xl: 80px;
--d-sp-3xl: 120px;

--m-sp-2xs: 5px;
--m-sp-xs: 10px;
--m-sp-sm: 15px;
--m-sp-md: 20px;
--m-sp-lg: 30px;
--m-sp-xl: 40px;
--m-sp-2xl: 60px;
--m-sp-3xl: 80px;

--d-br-sm: 4px;
--d-br-ms: 6px;
--d-br-md: 10px;
--d-br-lg: 16px;
--d-br-round: 1000px;
--m-br-sm: 4px;
--m-br-md: 8px;
--m-br-lg: 14px;
--m-br-round: 1000px;


--grid-desktop-vertical-spacing: 20px;
--grid-desktop-horizontal-spacing: 20px;
--grid-mobile-vertical-spacing: 10px;
--grid-mobile-horizontal-spacing: 10px;


--primary-background: #EB3986;
--primary-foreground: #ffffff;

--secondary-background: #ffffff;
--secondary-2-background: #E3B9B3;
--secondary-foreground: #000000;

--token-foreground: #000;
--token-foreground-rgb: 0,0,0;
--token-foreground-secondary: #666;
--token-foreground-border-primary: #DDD;
--token-foreground-border-secondary:#F6F6F6;
--token-background: #FFF;
--token-background-secondary: #F8F6F3;
--token-neutral: #B8B8B8;

--color-success: #25B900;
--color-error: #EC0000;
--color-focus: #0038FF;

--hovered-primary-background-color: #B82D69;
--focused-border-color: #0038FF;
--disabled-button-color: #b8b8b8;
--hovered-tertiary-background-color: #eb3986;
--white: #ffffff;
--black: #000000;
--granite-gray: #666666;
--iron-gray: #444444;
--text-muted: #767676;
--gainsboro: #dddddd;
--lavender:#fff3fb;

      }
      
        
        .color-scheme-5 {
          --color-background: 235,57,134;
        
          --gradient-background: #eb3986;
        

        
        --color-foreground: 255,255,255;
        --color-background-contrast: 149,15,73;
        --color-shadow: 255,255,255;
        --color-button: 255,255,255;
        --color-button-text: 235,57,134;
        --color-secondary-button: 235,57,134;
        --color-secondary-button-text: 255,255,255;
        --color-link: 255,255,255;
        --color-badge-foreground: 255,255,255;
        --color-badge-background: 235,57,134;
        --color-badge-border: 255,255,255;
        --payment-terms-background-color: rgb(235 57 134);
        
--d-sp-3xs: 2px;
--d-sp-2xs: 5px;
--d-sp-xs: 10px;
--d-sp-sm: 20px;
--d-sp-md: 30px;
--d-sp-lg: 45px;
--d-sp-xl: 60px;
--d-sp-2xl: 80px;
--d-sp-3xl: 120px;

--m-sp-2xs: 5px;
--m-sp-xs: 10px;
--m-sp-sm: 15px;
--m-sp-md: 20px;
--m-sp-lg: 30px;
--m-sp-xl: 40px;
--m-sp-2xl: 60px;
--m-sp-3xl: 80px;

--d-br-sm: 4px;
--d-br-ms: 6px;
--d-br-md: 10px;
--d-br-lg: 16px;
--d-br-round: 1000px;
--m-br-sm: 4px;
--m-br-md: 8px;
--m-br-lg: 14px;
--m-br-round: 1000px;


--grid-desktop-vertical-spacing: 20px;
--grid-desktop-horizontal-spacing: 20px;
--grid-mobile-vertical-spacing: 10px;
--grid-mobile-horizontal-spacing: 10px;


--primary-background: #EB3986;
--primary-foreground: #ffffff;

--secondary-background: #ffffff;
--secondary-2-background: #E3B9B3;
--secondary-foreground: #000000;

--token-foreground: #000;
--token-foreground-rgb: 0,0,0;
--token-foreground-secondary: #666;
--token-foreground-border-primary: #DDD;
--token-foreground-border-secondary:#F6F6F6;
--token-background: #FFF;
--token-background-secondary: #F8F6F3;
--token-neutral: #B8B8B8;

--color-success: #25B900;
--color-error: #EC0000;
--color-focus: #0038FF;

--hovered-primary-background-color: #B82D69;
--focused-border-color: #0038FF;
--disabled-button-color: #b8b8b8;
--hovered-tertiary-background-color: #eb3986;
--white: #ffffff;
--black: #000000;
--granite-gray: #666666;
--iron-gray: #444444;
--text-muted: #767676;
--gainsboro: #dddddd;
--lavender:#fff3fb;

      }
      
        
        .color-scheme-f3255262-2d6d-4fd4-8713-a23f16b641bb {
          --color-background: 235,57,134;
        
          --gradient-background: #eb3986;
        

        
        --color-foreground: 0,0,0;
        --color-background-contrast: 149,15,73;
        --color-shadow: 18,18,18;
        --color-button: 235,57,134;
        --color-button-text: 255,255,255;
        --color-secondary-button: 235,57,134;
        --color-secondary-button-text: 0,0,0;
        --color-link: 0,0,0;
        --color-badge-foreground: 0,0,0;
        --color-badge-background: 235,57,134;
        --color-badge-border: 0,0,0;
        --payment-terms-background-color: rgb(235 57 134);
        
--d-sp-3xs: 2px;
--d-sp-2xs: 5px;
--d-sp-xs: 10px;
--d-sp-sm: 20px;
--d-sp-md: 30px;
--d-sp-lg: 45px;
--d-sp-xl: 60px;
--d-sp-2xl: 80px;
--d-sp-3xl: 120px;

--m-sp-2xs: 5px;
--m-sp-xs: 10px;
--m-sp-sm: 15px;
--m-sp-md: 20px;
--m-sp-lg: 30px;
--m-sp-xl: 40px;
--m-sp-2xl: 60px;
--m-sp-3xl: 80px;

--d-br-sm: 4px;
--d-br-ms: 6px;
--d-br-md: 10px;
--d-br-lg: 16px;
--d-br-round: 1000px;
--m-br-sm: 4px;
--m-br-md: 8px;
--m-br-lg: 14px;
--m-br-round: 1000px;


--grid-desktop-vertical-spacing: 20px;
--grid-desktop-horizontal-spacing: 20px;
--grid-mobile-vertical-spacing: 10px;
--grid-mobile-horizontal-spacing: 10px;


--primary-background: #EB3986;
--primary-foreground: #ffffff;

--secondary-background: #ffffff;
--secondary-2-background: #E3B9B3;
--secondary-foreground: #000000;

--token-foreground: #000;
--token-foreground-rgb: 0,0,0;
--token-foreground-secondary: #666;
--token-foreground-border-primary: #DDD;
--token-foreground-border-secondary:#F6F6F6;
--token-background: #FFF;
--token-background-secondary: #F8F6F3;
--token-neutral: #B8B8B8;

--color-success: #25B900;
--color-error: #EC0000;
--color-focus: #0038FF;

--hovered-primary-background-color: #B82D69;
--focused-border-color: #0038FF;
--disabled-button-color: #b8b8b8;
--hovered-tertiary-background-color: #eb3986;
--white: #ffffff;
--black: #000000;
--granite-gray: #666666;
--iron-gray: #444444;
--text-muted: #767676;
--gainsboro: #dddddd;
--lavender:#fff3fb;

      }
      
        
        .color-scheme-ee0fa671-a158-42c5-9ab0-aff840adf116 {
          --color-background: 255,255,255;
        
          --gradient-background: #ffffff;
        

        
        --color-foreground: 235,57,134;
        --color-background-contrast: 191,191,191;
        --color-shadow: 235,57,134;
        --color-button: 235,57,134;
        --color-button-text: 235,57,134;
        --color-secondary-button: 255,255,255;
        --color-secondary-button-text: 235,57,134;
        --color-link: 235,57,134;
        --color-badge-foreground: 235,57,134;
        --color-badge-background: 255,255,255;
        --color-badge-border: 235,57,134;
        --payment-terms-background-color: rgb(255 255 255);
        
--d-sp-3xs: 2px;
--d-sp-2xs: 5px;
--d-sp-xs: 10px;
--d-sp-sm: 20px;
--d-sp-md: 30px;
--d-sp-lg: 45px;
--d-sp-xl: 60px;
--d-sp-2xl: 80px;
--d-sp-3xl: 120px;

--m-sp-2xs: 5px;
--m-sp-xs: 10px;
--m-sp-sm: 15px;
--m-sp-md: 20px;
--m-sp-lg: 30px;
--m-sp-xl: 40px;
--m-sp-2xl: 60px;
--m-sp-3xl: 80px;

--d-br-sm: 4px;
--d-br-ms: 6px;
--d-br-md: 10px;
--d-br-lg: 16px;
--d-br-round: 1000px;
--m-br-sm: 4px;
--m-br-md: 8px;
--m-br-lg: 14px;
--m-br-round: 1000px;


--grid-desktop-vertical-spacing: 20px;
--grid-desktop-horizontal-spacing: 20px;
--grid-mobile-vertical-spacing: 10px;
--grid-mobile-horizontal-spacing: 10px;


--primary-background: #EB3986;
--primary-foreground: #ffffff;

--secondary-background: #ffffff;
--secondary-2-background: #E3B9B3;
--secondary-foreground: #000000;

--token-foreground: #000;
--token-foreground-rgb: 0,0,0;
--token-foreground-secondary: #666;
--token-foreground-border-primary: #DDD;
--token-foreground-border-secondary:#F6F6F6;
--token-background: #FFF;
--token-background-secondary: #F8F6F3;
--token-neutral: #B8B8B8;

--color-success: #25B900;
--color-error: #EC0000;
--color-focus: #0038FF;

--hovered-primary-background-color: #B82D69;
--focused-border-color: #0038FF;
--disabled-button-color: #b8b8b8;
--hovered-tertiary-background-color: #eb3986;
--white: #ffffff;
--black: #000000;
--granite-gray: #666666;
--iron-gray: #444444;
--text-muted: #767676;
--gainsboro: #dddddd;
--lavender:#fff3fb;

      }
      
        
        .color-scheme-d0c4195b-cd63-4908-8940-3f9e75bb39e5 {
          --color-background: 255,255,255;
        
          --gradient-background: #ffffff;
        

        
        --color-foreground: 0,0,0;
        --color-background-contrast: 191,191,191;
        --color-shadow: 235,57,134;
        --color-button: 235,57,134;
        --color-button-text: 235,57,134;
        --color-secondary-button: 255,255,255;
        --color-secondary-button-text: 235,57,134;
        --color-link: 235,57,134;
        --color-badge-foreground: 0,0,0;
        --color-badge-background: 255,255,255;
        --color-badge-border: 0,0,0;
        --payment-terms-background-color: rgb(255 255 255);
        
--d-sp-3xs: 2px;
--d-sp-2xs: 5px;
--d-sp-xs: 10px;
--d-sp-sm: 20px;
--d-sp-md: 30px;
--d-sp-lg: 45px;
--d-sp-xl: 60px;
--d-sp-2xl: 80px;
--d-sp-3xl: 120px;

--m-sp-2xs: 5px;
--m-sp-xs: 10px;
--m-sp-sm: 15px;
--m-sp-md: 20px;
--m-sp-lg: 30px;
--m-sp-xl: 40px;
--m-sp-2xl: 60px;
--m-sp-3xl: 80px;

--d-br-sm: 4px;
--d-br-ms: 6px;
--d-br-md: 10px;
--d-br-lg: 16px;
--d-br-round: 1000px;
--m-br-sm: 4px;
--m-br-md: 8px;
--m-br-lg: 14px;
--m-br-round: 1000px;


--grid-desktop-vertical-spacing: 20px;
--grid-desktop-horizontal-spacing: 20px;
--grid-mobile-vertical-spacing: 10px;
--grid-mobile-horizontal-spacing: 10px;


--primary-background: #EB3986;
--primary-foreground: #ffffff;

--secondary-background: #ffffff;
--secondary-2-background: #E3B9B3;
--secondary-foreground: #000000;

--token-foreground: #000;
--token-foreground-rgb: 0,0,0;
--token-foreground-secondary: #666;
--token-foreground-border-primary: #DDD;
--token-foreground-border-secondary:#F6F6F6;
--token-background: #FFF;
--token-background-secondary: #F8F6F3;
--token-neutral: #B8B8B8;

--color-success: #25B900;
--color-error: #EC0000;
--color-focus: #0038FF;

--hovered-primary-background-color: #B82D69;
--focused-border-color: #0038FF;
--disabled-button-color: #b8b8b8;
--hovered-tertiary-background-color: #eb3986;
--white: #ffffff;
--black: #000000;
--granite-gray: #666666;
--iron-gray: #444444;
--text-muted: #767676;
--gainsboro: #dddddd;
--lavender:#fff3fb;

      }
      
        
        .color-scheme-26c1425c-a1f7-4509-83c7-2a28574664f3 {
          --color-background: 248,246,243;
        
          --gradient-background: #f8f6f3;
        

        
        --color-foreground: 0,0,0;
        --color-background-contrast: 201,186,162;
        --color-shadow: 18,18,18;
        --color-button: 18,18,18;
        --color-button-text: 255,255,255;
        --color-secondary-button: 248,246,243;
        --color-secondary-button-text: 18,18,18;
        --color-link: 18,18,18;
        --color-badge-foreground: 0,0,0;
        --color-badge-background: 248,246,243;
        --color-badge-border: 0,0,0;
        --payment-terms-background-color: rgb(248 246 243);
        
--d-sp-3xs: 2px;
--d-sp-2xs: 5px;
--d-sp-xs: 10px;
--d-sp-sm: 20px;
--d-sp-md: 30px;
--d-sp-lg: 45px;
--d-sp-xl: 60px;
--d-sp-2xl: 80px;
--d-sp-3xl: 120px;

--m-sp-2xs: 5px;
--m-sp-xs: 10px;
--m-sp-sm: 15px;
--m-sp-md: 20px;
--m-sp-lg: 30px;
--m-sp-xl: 40px;
--m-sp-2xl: 60px;
--m-sp-3xl: 80px;

--d-br-sm: 4px;
--d-br-ms: 6px;
--d-br-md: 10px;
--d-br-lg: 16px;
--d-br-round: 1000px;
--m-br-sm: 4px;
--m-br-md: 8px;
--m-br-lg: 14px;
--m-br-round: 1000px;


--grid-desktop-vertical-spacing: 20px;
--grid-desktop-horizontal-spacing: 20px;
--grid-mobile-vertical-spacing: 10px;
--grid-mobile-horizontal-spacing: 10px;


--primary-background: #EB3986;
--primary-foreground: #ffffff;

--secondary-background: #ffffff;
--secondary-2-background: #E3B9B3;
--secondary-foreground: #000000;

--token-foreground: #000;
--token-foreground-rgb: 0,0,0;
--token-foreground-secondary: #666;
--token-foreground-border-primary: #DDD;
--token-foreground-border-secondary:#F6F6F6;
--token-background: #FFF;
--token-background-secondary: #F8F6F3;
--token-neutral: #B8B8B8;

--color-success: #25B900;
--color-error: #EC0000;
--color-focus: #0038FF;

--hovered-primary-background-color: #B82D69;
--focused-border-color: #0038FF;
--disabled-button-color: #b8b8b8;
--hovered-tertiary-background-color: #eb3986;
--white: #ffffff;
--black: #000000;
--granite-gray: #666666;
--iron-gray: #444444;
--text-muted: #767676;
--gainsboro: #dddddd;
--lavender:#fff3fb;

      }
      

      body, .color-scheme-1, .color-scheme-2, .color-scheme-3, .color-scheme-4, .color-scheme-5, .color-scheme-f3255262-2d6d-4fd4-8713-a23f16b641bb, .color-scheme-ee0fa671-a158-42c5-9ab0-aff840adf116, .color-scheme-d0c4195b-cd63-4908-8940-3f9e75bb39e5, .color-scheme-26c1425c-a1f7-4509-83c7-2a28574664f3 {
        color: rgba(var(--color-foreground));
        background-color: rgb(var(--color-background));
      }

      :root {
        --font-body-family: Assistant, sans-serif;
        --font-body-style: normal;
        --font-body-weight: 400;
        --font-body-weight-bold: 700;

        --font-heading-family: Assistant, sans-serif;
        --font-heading-style: normal;
        --font-heading-weight: 400;

        --font-body-scale: 1.0;
        --font-heading-scale: 1.0;

        --media-padding: px;
        --media-border-opacity: 0.05;
        --media-border-width: 1px;
        --media-radius: 0px;
        --media-shadow-opacity: 0.0;
        --media-shadow-horizontal-offset: 0px;
        --media-shadow-vertical-offset: 4px;
        --media-shadow-blur-radius: 5px;
        --media-shadow-visible: 0;

        --page-width: 144rem;
        --page-width-margin: 0rem;

        --product-card-image-padding: 0.0rem;
        --product-card-corner-radius: 0.0rem;
        --product-card-text-alignment: left;
        --product-card-border-width: 0.0rem;
        --product-card-border-opacity: 0.1;
        --product-card-shadow-opacity: 0.0;
        --product-card-shadow-visible: 0;
        --product-card-shadow-horizontal-offset: 0.0rem;
        --product-card-shadow-vertical-offset: 0.4rem;
        --product-card-shadow-blur-radius: 0.5rem;

        --collection-card-image-padding: 0.0rem;
        --collection-card-corner-radius: 0.0rem;
        --collection-card-text-alignment: left;
        --collection-card-border-width: 0.0rem;
        --collection-card-border-opacity: 0.1;
        --collection-card-shadow-opacity: 0.0;
        --collection-card-shadow-visible: 0;
        --collection-card-shadow-horizontal-offset: 0.0rem;
        --collection-card-shadow-vertical-offset: 0.4rem;
        --collection-card-shadow-blur-radius: 0.5rem;

        --blog-card-image-padding: 0.0rem;
        --blog-card-corner-radius: 0.0rem;
        --blog-card-text-alignment: left;
        --blog-card-border-width: 0.0rem;
        --blog-card-border-opacity: 0.1;
        --blog-card-shadow-opacity: 0.0;
        --blog-card-shadow-visible: 0;
        --blog-card-shadow-horizontal-offset: 0.0rem;
        --blog-card-shadow-vertical-offset: 0.4rem;
        --blog-card-shadow-blur-radius: 0.5rem;

        --badge-corner-radius: 4.0rem;

        --popup-border-width: 1px;
        --popup-border-opacity: 0.1;
        --popup-corner-radius: 0px;
        --popup-shadow-opacity: 0.05;
        --popup-shadow-horizontal-offset: 0px;
        --popup-shadow-vertical-offset: 4px;
        --popup-shadow-blur-radius: 5px;

        --drawer-border-width: 1px;
        --drawer-border-opacity: 0.1;
        --drawer-shadow-opacity: 0.0;
        --drawer-shadow-horizontal-offset: 0px;
        --drawer-shadow-vertical-offset: 4px;
        --drawer-shadow-blur-radius: 5px;

        --spacing-sections-desktop: 0px;
        --spacing-sections-mobile: 0px;

        --grid-desktop-vertical-spacing: 20px;
        --grid-desktop-horizontal-spacing: 20px;
        --grid-mobile-vertical-spacing: 10px;
        --grid-mobile-horizontal-spacing: 10px;

        --text-boxes-border-opacity: 0.1;
        --text-boxes-border-width: 0px;
        --text-boxes-radius: 0px;
        --text-boxes-shadow-opacity: 0.0;
        --text-boxes-shadow-visible: 0;
        --text-boxes-shadow-horizontal-offset: 0px;
        --text-boxes-shadow-vertical-offset: 4px;
        --text-boxes-shadow-blur-radius: 5px;

        --buttons-radius: 0px;
        --buttons-radius-outset: 0px;
        --buttons-border-width: 1px;
        --buttons-border-opacity: 1.0;
        --buttons-shadow-opacity: 0.0;
        --buttons-shadow-visible: 0;
        --buttons-shadow-horizontal-offset: 0px;
        --buttons-shadow-vertical-offset: 4px;
        --buttons-shadow-blur-radius: 5px;
        --buttons-border-offset: 0px;

        --inputs-radius: 4px;
        --inputs-border-width: 0px;
        --inputs-border-opacity: 0.0;
        --inputs-shadow-opacity: 0.0;
        --inputs-shadow-horizontal-offset: 0px;
        --inputs-margin-offset: 0px;
        --inputs-shadow-vertical-offset: 4px;
        --inputs-shadow-blur-radius: 5px;
        --inputs-radius-outset: 4px;

        --variant-pills-radius: 40px;
        --variant-pills-border-width: 1px;
        --variant-pills-border-opacity: 0.55;
        --variant-pills-shadow-opacity: 0.0;
        --variant-pills-shadow-horizontal-offset: 0px;
        --variant-pills-shadow-vertical-offset: 4px;
        --variant-pills-shadow-blur-radius: 5px;
      }

      *,
      *::before,
      *::after {
        box-sizing: inherit;
      }

      html {
        box-sizing: border-box;
        font-size: calc(var(--font-body-scale) * 62.5%);
        height: 100%;
      }

      body {
        display: grid;
        grid-template-rows: auto auto auto 1fr;
        grid-template-columns: 100%;
        min-height: 100%;
        max-width: 100%;
        margin: 0;
        font-size: 1.5rem;
        letter-spacing: 0.06rem;
        line-height: calc(1 + 0.8 / var(--font-body-scale));
        font-family: var(--font-body-family);
        font-style: var(--font-body-style);
        font-weight: var(--font-body-weight);
      }

      @media screen and (min-width: 750px) {
        body {
          font-size: 1.6rem;
        }
      }
    </style>

    <link href="//hudabeauty.com/cdn/shop/t/162/assets/base.css?v=48850167271578192211775984105" rel="stylesheet" type="text/css" media="all" />

    <link rel="stylesheet" href="//hudabeauty.com/cdn/shop/t/162/assets/component-cart-items.css?v=42571435630777426601775984105" media="print" onload="this.media='all'">
    <link href="//hudabeauty.com/cdn/shop/t/162/assets/component-cart-drawer.css?v=47721460197685743111775984105" rel="stylesheet" type="text/css" media="all" />
    <link href="//hudabeauty.com/cdn/shop/t/162/assets/component-cart.css?v=32948292999271961751775984106" rel="stylesheet" type="text/css" media="all" />
    <link href="//hudabeauty.com/cdn/shop/t/162/assets/component-price.css?v=14160622623067344551775984107" rel="stylesheet" type="text/css" media="all" />
    <link href="//hudabeauty.com/cdn/shop/t/162/assets/component-discounts.css?v=152760482443307489271775984108" rel="stylesheet" type="text/css" media="all" />

    <link href="//hudabeauty.com/cdn/shop/t/162/assets/common-styles.css?v=19191003651901855031775984107" rel="stylesheet" type="text/css" media="all" />
    <link href="//hudabeauty.com/cdn/shop/t/162/assets/featured-card-product.css?v=84366162128615101681775984107" rel="stylesheet" type="text/css" media="all" />

      <link rel="preload" as="font" href="//hudabeauty.com/cdn/fonts/assistant/assistant_n4.9120912a469cad1cc292572851508ca49d12e768.woff2" type="font/woff2" crossorigin>
      

      <link rel="preload" as="font" href="//hudabeauty.com/cdn/fonts/assistant/assistant_n4.9120912a469cad1cc292572851508ca49d12e768.woff2" type="font/woff2" crossorigin>
      
<link href="//hudabeauty.com/cdn/shop/t/162/assets/component-localization-form.css?v=107874722301646417251775984106" rel="stylesheet" type="text/css" media="all" />
      <script src="//hudabeauty.com/cdn/shop/t/162/assets/localization-form.js?v=47419725477434653761775984105" defer="defer"></script><link
        rel="stylesheet"
        href="//hudabeauty.com/cdn/shop/t/162/assets/component-predictive-search.css?v=165549146666396883941775984106"
        media="print"
        onload="this.media='all'"
      ><script>
      if (Shopify.designMode) {
        document.documentElement.classList.add('shopify-design-mode');
      }
    </script>

    








<script type="application/ld+json">
  {
    "@context": "https://schema.org",
    "@graph": [
      {
        "@type": "Organization",
        "name": "Huda Beauty",
        "legalName": "HUDA BEAUTY DMCC",
        "url": "https://hudabeauty.com",
        "logo": "https://test-us.hudabeauty.com/cdn/shop/files/Main_Logo.svg?v=1735588094&width=340",
        "foundingDate": "2013",
        "founders": [
          {
            "@type": "Person",
            "name": "Huda Kattan",
            "sameAs": [
              "https://www.instagram.com/hudabeauty",
              "https://www.linkedin.com/company/hudabeauty",
              "https://twitter.com/hudabeauty",
              "https://www.facebook.com/hudabeauty/"
            ]
          }
        ],
        "address": {
          "@type": "PostalAddress",
          "streetAddress": "Office 2100, JBC 3, Cluster Y, JLT",
          "addressLocality": "Dubai",
          "addressRegion": "Dubai",
          "postalCode": "",
          "addressCountry": "UNITED ARAB EMIRATES"
        },
        "sameAs": ["https://hudabeauty.com"],
        "contactPoint": {
          "@type": "ContactPoint",
          "contactType": "customer support",
          "email": "shop@hudabeauty.com"
        }
      },{
          "@type": "WebSite",
          "name": "Huda Beauty",
          "potentialAction": {
            "@type": "SearchAction",
            "target": "https:\/\/hudabeauty.com\/en-fr\/search?q={search_term_string}",
            "query-input": "required name=search_term_string"
          },
          "url": "https:\/\/hudabeauty.com"
        }
      
    ]
  }
</script>



    

    
<!-- EqualWeb Accessibility Widget -->
      <script src="//hudabeauty.com/cdn/shop/t/162/assets/equalweb-widget.js?v=41767471421727191921775984106" defer="defer"></script><!-- BEGIN app block: shopify://apps/onetrust-consent-management/blocks/consent_management/a0f47f36-e440-438e-946e-6f1b3963b606 -->
<script src="https://cdn.shopify.com/extensions/f2dc2781-781c-4b62-b8ed-c5471f514e1a/51194b6b0c9144e9e9b055cb483ad8365a43092e/assets/storefront-consent.js"></script>
<script id="onetrust-script" src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" type="text/javascript" charset="UTF-8" data-domain-script="7139840c-61d3-40fc-a330-2da940b717ff" data-shopify-consent-mapping={"analytics":["C0002"],"marketing":["C0004"],"preferences":["C0003"],"sale_of_data":[]}></script><!-- END app block --><!-- BEGIN app block: shopify://apps/wunderkind/blocks/tag/40b05e3b-2403-4814-8fab-e17e57e8b1aa --><script type="text/javascript">
  window.__wunderkindShopifyApp = true;
</script>






  <script type="text/javascript">
    if (typeof window.bouncex === 'undefined') {
      window.bouncex = [];
    }

    localStorage.setItem('wknd-id', 3838);
  </script>
  <script
    src="https://tag.wknd.ai/3838/i.js"
    type="text/javascript"
    id="wunderkind-tag"
    async
></script>

  <script type="text/javascript">
    if (typeof window.wunderkind === 'undefined') {
      window.wunderkind = {};
    }
  </script>

  



<!-- END app block --><!-- BEGIN app block: shopify://apps/okendo/blocks/theme-settings/bb689e69-ea70-4661-8fb7-ad24a2e23c29 --><!-- BEGIN app snippet: header-metafields -->




    <script id="okeReferralSettings" type="application/json">{"subscriberId":"5d6ab41b-4057-419b-a549-335d151d78f9","matchCustomerLocale":false,"localeAndVariant":{"code":"en"},"referralSettings":{"referralsDisabled":false,"rewardSet":{"sender":{"type":"coupon","description":"20% off your next order with a minimum purchase of $100","value":20,"valueType":"percentage"},"recipient":{"type":"coupon","description":"20% off your next order with a minimum purchase of $100","value":20,"valueType":"percentage"}},"terms":{"enabled":false},"textContentSet":{"recipient":{"titleText":"Enter your email to receive your coupon"},"sender":{"titleText":"GIVE 20%, GET 20%","bodyText":"Give your friends 20% off their first order of $100 or more! For every friend you successfully refer, you'll receive 20% off your next order."}},"showMarketingOptIn":false,"socialShare":{"options":{"sms":true,"twitter":true,"whatsApp":true,"facebookMessenger":true,"facebook":true},"defaultText":"I think you'll love Huda Beauty as much as I do - use this link to save on your first order!","displayType":"monochrome","style":{"fillColor":"#FFFFFF","backgroundColor":"#EB3986"}},"style":{"button":{"hoverBackgroundColor":"#EB3986","backgroundColor":"#EB3986","hoverTextColor":"#FFFFFF","textColor":"#FFFFFF"},"text":{"primaryColor":"#000000","secondaryColor":"#000000"},"hideOkendoBranding":true,"bubble":{"textColor":"#FFFFFF","backgroundColor":"#EB3986"},"removeBorderRadius":false,"textField":{"border":{"color":"#F8F6F3","focusColor":"#F8F6F3","focusShadowColor":"#FFFFFF"}}}}}</script><script type="text/javascript" defer="" src="https://cdn-static.okendo.io/referrals/js/referrals-api.js"></script>







    <style data-oke-reviews-version="0.85.10" type="text/css" data-href="https://d3hw6dc1ow8pp2.cloudfront.net/reviews-widget-plus/css/okendo-reviews-styles.6dbb2446.css"></style><style data-oke-reviews-version="0.85.10" type="text/css" data-href="https://d3hw6dc1ow8pp2.cloudfront.net/reviews-widget-plus/css/modules/okendo-star-rating.4cb378a8.css"></style><style data-oke-reviews-version="0.85.10" type="text/css" data-href="https://d3hw6dc1ow8pp2.cloudfront.net/reviews-widget-plus/css/modules/okendo-reviews-keywords.0942444f.css"></style><style data-oke-reviews-version="0.85.10" type="text/css" data-href="https://d3hw6dc1ow8pp2.cloudfront.net/reviews-widget-plus/css/modules/okendo-reviews-summary.a0c9d7d6.css"></style><style type="text/css">.okeReviews[data-oke-container],div.okeReviews{font-size:14px;font-size:var(--oke-text-regular);font-weight:400;font-family:var(--oke-text-fontFamily);line-height:1.6}.okeReviews[data-oke-container] *,.okeReviews[data-oke-container] :after,.okeReviews[data-oke-container] :before,div.okeReviews *,div.okeReviews :after,div.okeReviews :before{box-sizing:border-box}.okeReviews[data-oke-container] h1,.okeReviews[data-oke-container] h2,.okeReviews[data-oke-container] h3,.okeReviews[data-oke-container] h4,.okeReviews[data-oke-container] h5,.okeReviews[data-oke-container] h6,div.okeReviews h1,div.okeReviews h2,div.okeReviews h3,div.okeReviews h4,div.okeReviews h5,div.okeReviews h6{font-size:1em;font-weight:400;line-height:1.4;margin:0}.okeReviews[data-oke-container] ul,div.okeReviews ul{padding:0;margin:0}.okeReviews[data-oke-container] li,div.okeReviews li{list-style-type:none;padding:0}.okeReviews[data-oke-container] p,div.okeReviews p{line-height:1.8;margin:0 0 4px}.okeReviews[data-oke-container] p:last-child,div.okeReviews p:last-child{margin-bottom:0}.okeReviews[data-oke-container] a,div.okeReviews a{text-decoration:none;color:inherit}.okeReviews[data-oke-container] button,div.okeReviews button{border-radius:0;border:0;box-shadow:none;margin:0;width:auto;min-width:auto;padding:0;background-color:transparent;min-height:auto}.okeReviews[data-oke-container] button,.okeReviews[data-oke-container] input,.okeReviews[data-oke-container] select,.okeReviews[data-oke-container] textarea,div.okeReviews button,div.okeReviews input,div.okeReviews select,div.okeReviews textarea{font-family:inherit;font-size:1em}.okeReviews[data-oke-container] label,.okeReviews[data-oke-container] select,div.okeReviews label,div.okeReviews select{display:inline}.okeReviews[data-oke-container] select,div.okeReviews select{width:auto}.okeReviews[data-oke-container] article,.okeReviews[data-oke-container] aside,div.okeReviews article,div.okeReviews aside{margin:0}.okeReviews[data-oke-container] table,div.okeReviews table{background:transparent;border:0;border-collapse:collapse;border-spacing:0;font-family:inherit;font-size:1em;table-layout:auto}.okeReviews[data-oke-container] table td,.okeReviews[data-oke-container] table th,.okeReviews[data-oke-container] table tr,div.okeReviews table td,div.okeReviews table th,div.okeReviews table tr{border:0;font-family:inherit;font-size:1em}.okeReviews[data-oke-container] table td,.okeReviews[data-oke-container] table th,div.okeReviews table td,div.okeReviews table th{background:transparent;font-weight:400;letter-spacing:normal;padding:0;text-align:left;text-transform:none;vertical-align:middle}.okeReviews[data-oke-container] table tr:hover td,.okeReviews[data-oke-container] table tr:hover th,div.okeReviews table tr:hover td,div.okeReviews table tr:hover th{background:transparent}.okeReviews[data-oke-container] fieldset,div.okeReviews fieldset{border:0;padding:0;margin:0;min-width:0}.okeReviews[data-oke-container] img,.okeReviews[data-oke-container] svg,div.okeReviews img,div.okeReviews svg{max-width:none}.okeReviews[data-oke-container] div:empty,div.okeReviews div:empty{display:block}.okeReviews[data-oke-container] .oke-icon:before,div.okeReviews .oke-icon:before{font-family:oke-widget-icons!important;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:inherit}.okeReviews[data-oke-container] .oke-icon--select-arrow:before,div.okeReviews .oke-icon--select-arrow:before{content:""}.okeReviews[data-oke-container] .oke-icon--loading:before,div.okeReviews .oke-icon--loading:before{content:""}.okeReviews[data-oke-container] .oke-icon--pencil:before,div.okeReviews .oke-icon--pencil:before{content:""}.okeReviews[data-oke-container] .oke-icon--filter:before,div.okeReviews .oke-icon--filter:before{content:""}.okeReviews[data-oke-container] .oke-icon--play:before,div.okeReviews .oke-icon--play:before{content:""}.okeReviews[data-oke-container] .oke-icon--tick-circle:before,div.okeReviews .oke-icon--tick-circle:before{content:""}.okeReviews[data-oke-container] .oke-icon--chevron-left:before,div.okeReviews .oke-icon--chevron-left:before{content:""}.okeReviews[data-oke-container] .oke-icon--chevron-right:before,div.okeReviews .oke-icon--chevron-right:before{content:""}.okeReviews[data-oke-container] .oke-icon--thumbs-down:before,div.okeReviews .oke-icon--thumbs-down:before{content:""}.okeReviews[data-oke-container] .oke-icon--thumbs-up:before,div.okeReviews .oke-icon--thumbs-up:before{content:""}.okeReviews[data-oke-container] .oke-icon--close:before,div.okeReviews .oke-icon--close:before{content:""}.okeReviews[data-oke-container] .oke-icon--chevron-up:before,div.okeReviews .oke-icon--chevron-up:before{content:""}.okeReviews[data-oke-container] .oke-icon--chevron-down:before,div.okeReviews .oke-icon--chevron-down:before{content:""}.okeReviews[data-oke-container] .oke-icon--star:before,div.okeReviews .oke-icon--star:before{content:""}.okeReviews[data-oke-container] .oke-icon--magnifying-glass:before,div.okeReviews .oke-icon--magnifying-glass:before{content:""}@font-face{font-family:oke-widget-icons;src:url(https://d3hw6dc1ow8pp2.cloudfront.net/reviews-widget-plus/fonts/oke-widget-icons.ttf) format("truetype"),url(https://d3hw6dc1ow8pp2.cloudfront.net/reviews-widget-plus/fonts/oke-widget-icons.woff) format("woff"),url(https://d3hw6dc1ow8pp2.cloudfront.net/reviews-widget-plus/img/oke-widget-icons.bc0d6b0a.svg) format("svg");font-weight:400;font-style:normal;font-display:swap}.okeReviews[data-oke-container] .oke-button,div.okeReviews .oke-button{display:inline-block;border-style:solid;border-color:var(--oke-button-borderColor);border-width:var(--oke-button-borderWidth);background-color:var(--oke-button-backgroundColor);line-height:1;padding:12px 24px;margin:0;border-radius:var(--oke-button-borderRadius);color:var(--oke-button-textColor);text-align:center;position:relative;font-weight:var(--oke-button-fontWeight);font-size:var(--oke-button-fontSize);font-family:var(--oke-button-fontFamily);outline:0}.okeReviews[data-oke-container] .oke-button-text,.okeReviews[data-oke-container] .oke-button .oke-icon,div.okeReviews .oke-button-text,div.okeReviews .oke-button .oke-icon{line-height:1}.okeReviews[data-oke-container] .oke-button.oke-is-loading,div.okeReviews .oke-button.oke-is-loading{position:relative}.okeReviews[data-oke-container] .oke-button.oke-is-loading:before,div.okeReviews .oke-button.oke-is-loading:before{font-family:oke-widget-icons!important;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"";color:undefined;font-size:12px;display:inline-block;animation:oke-spin 1s linear infinite;position:absolute;width:12px;height:12px;top:0;left:0;bottom:0;right:0;margin:auto}.okeReviews[data-oke-container] .oke-button.oke-is-loading>*,div.okeReviews .oke-button.oke-is-loading>*{opacity:0}.okeReviews[data-oke-container] .oke-button.oke-is-active,div.okeReviews .oke-button.oke-is-active{background-color:var(--oke-button-backgroundColorActive);color:var(--oke-button-textColorActive);border-color:var(--oke-button-borderColorActive)}.okeReviews[data-oke-container] .oke-button:not(.oke-is-loading),div.okeReviews .oke-button:not(.oke-is-loading){cursor:pointer}.okeReviews[data-oke-container] .oke-button:not(.oke-is-loading):not(.oke-is-active):hover,div.okeReviews .oke-button:not(.oke-is-loading):not(.oke-is-active):hover{background-color:var(--oke-button-backgroundColorHover);color:var(--oke-button-textColorHover);border-color:var(--oke-button-borderColorHover);box-shadow:0 0 0 2px var(--oke-button-backgroundColorHover)}.okeReviews[data-oke-container] .oke-button:not(.oke-is-loading):not(.oke-is-active):active,.okeReviews[data-oke-container] .oke-button:not(.oke-is-loading):not(.oke-is-active):hover:active,div.okeReviews .oke-button:not(.oke-is-loading):not(.oke-is-active):active,div.okeReviews .oke-button:not(.oke-is-loading):not(.oke-is-active):hover:active{background-color:var(--oke-button-backgroundColorActive);color:var(--oke-button-textColorActive);border-color:var(--oke-button-borderColorActive)}.okeReviews[data-oke-container] .oke-title,div.okeReviews .oke-title{font-weight:var(--oke-title-fontWeight);font-size:var(--oke-title-fontSize);font-family:var(--oke-title-fontFamily)}.okeReviews[data-oke-container] .oke-bodyText,div.okeReviews .oke-bodyText{font-weight:var(--oke-bodyText-fontWeight);font-size:var(--oke-bodyText-fontSize);font-family:var(--oke-bodyText-fontFamily)}.okeReviews[data-oke-container] .oke-linkButton,div.okeReviews .oke-linkButton{cursor:pointer;font-weight:700;pointer-events:auto;text-decoration:underline}.okeReviews[data-oke-container] .oke-linkButton:hover,div.okeReviews .oke-linkButton:hover{text-decoration:none}.okeReviews[data-oke-container] .oke-readMore,div.okeReviews .oke-readMore{cursor:pointer;color:inherit;text-decoration:underline}.okeReviews[data-oke-container] .oke-select,div.okeReviews .oke-select{cursor:pointer;background-repeat:no-repeat;background-position-x:100%;background-position-y:50%;border:none;padding:0 24px 0 12px;-moz-appearance:none;appearance:none;color:inherit;-webkit-appearance:none;background-color:transparent;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg fill='currentColor' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");outline-offset:4px}.okeReviews[data-oke-container] .oke-select:disabled,div.okeReviews .oke-select:disabled{background-color:transparent;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg fill='%239a9db1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E")}.okeReviews[data-oke-container] .oke-loader,div.okeReviews .oke-loader{position:relative}.okeReviews[data-oke-container] .oke-loader:before,div.okeReviews .oke-loader:before{font-family:oke-widget-icons!important;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"";color:var(--oke-text-secondaryColor);font-size:12px;display:inline-block;animation:oke-spin 1s linear infinite;position:absolute;width:12px;height:12px;top:0;left:0;bottom:0;right:0;margin:auto}.okeReviews[data-oke-container] .oke-a11yText,div.okeReviews .oke-a11yText{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.okeReviews[data-oke-container] .oke-hidden,div.okeReviews .oke-hidden{display:none}.okeReviews[data-oke-container] .oke-modal,div.okeReviews .oke-modal{bottom:0;left:0;overflow:auto;position:fixed;right:0;top:0;z-index:2147483647;max-height:100%;background-color:rgba(0,0,0,.5);padding:40px 0 12px}@media only screen and (min-width:1024px){.okeReviews[data-oke-container] .oke-modal,div.okeReviews .oke-modal{display:flex;align-items:center;padding:48px 0}}.okeReviews[data-oke-container] .oke-modal ::-moz-selection,div.okeReviews .oke-modal ::-moz-selection{background-color:rgba(39,45,69,.2)}.okeReviews[data-oke-container] .oke-modal ::selection,div.okeReviews .oke-modal ::selection{background-color:rgba(39,45,69,.2)}.okeReviews[data-oke-container] .oke-modal,.okeReviews[data-oke-container] .oke-modal p,div.okeReviews .oke-modal,div.okeReviews .oke-modal p{color:#272d45}.okeReviews[data-oke-container] .oke-modal-content,div.okeReviews .oke-modal-content{background-color:#fff;margin:auto;position:relative;will-change:transform,opacity;width:calc(100% - 24px)}@media only screen and (min-width:1024px){.okeReviews[data-oke-container] .oke-modal-content,div.okeReviews .oke-modal-content{max-width:1000px}}.okeReviews[data-oke-container] .oke-modal-close,div.okeReviews .oke-modal-close{cursor:pointer;position:absolute;width:32px;height:32px;top:-32px;padding:4px;right:-4px;line-height:1}.okeReviews[data-oke-container] .oke-modal-close:before,div.okeReviews .oke-modal-close:before{font-family:oke-widget-icons!important;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"";color:#fff;font-size:24px;display:inline-block;width:24px;height:24px}.okeReviews[data-oke-container] .oke-modal-overlay,div.okeReviews .oke-modal-overlay{background-color:rgba(43,46,56,.9)}@media only screen and (min-width:1024px){.okeReviews[data-oke-container] .oke-modal--large .oke-modal-content,div.okeReviews .oke-modal--large .oke-modal-content{max-width:1200px}}.okeReviews[data-oke-container] .oke-modal .oke-helpful,.okeReviews[data-oke-container] .oke-modal .oke-helpful-vote-button,.okeReviews[data-oke-container] .oke-modal .oke-reviewContent-date,div.okeReviews .oke-modal .oke-helpful,div.okeReviews .oke-modal .oke-helpful-vote-button,div.okeReviews .oke-modal .oke-reviewContent-date{color:#676986}.oke-modal .okeReviews[data-oke-container].oke-w,.oke-modal div.okeReviews.oke-w{color:#272d45}.okeReviews[data-oke-container] .oke-tag,div.okeReviews .oke-tag{align-items:center;color:#272d45;display:flex;font-size:var(--oke-text-small);font-weight:600;text-align:left;position:relative;z-index:2;background-color:#f4f4f6;padding:4px 6px;border:none;border-radius:4px;gap:6px;line-height:1}.okeReviews[data-oke-container] .oke-tag svg,div.okeReviews .oke-tag svg{fill:currentColor;height:1rem}.okeReviews[data-oke-container] .hooper,div.okeReviews .hooper{height:auto}.okeReviews--left{text-align:left}.okeReviews--right{text-align:right}.okeReviews--center{text-align:center}.okeReviews :not([tabindex="-1"]):focus-visible{outline:5px auto highlight;outline:5px auto -webkit-focus-ring-color}.is-oke-modalOpen{overflow:hidden!important}img.oke-is-error{background-color:var(--oke-shadingColor);background-size:cover;background-position:50% 50%;box-shadow:inset 0 0 0 1px var(--oke-border-color)}@keyframes oke-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes oke-fade-in{0%{opacity:0}to{opacity:1}}.layout-panel-flex>div:has([data-oke-container]){width:100%}
.oke-stars{line-height:1;position:relative;display:inline-block}.oke-stars-background svg{overflow:visible}.oke-stars-foreground{overflow:hidden;position:absolute;top:0;left:0}.oke-sr{display:inline-block;padding-top:var(--oke-starRating-spaceAbove);padding-bottom:var(--oke-starRating-spaceBelow)}.oke-sr .oke-is-clickable{cursor:pointer}.oke-sr--hidden{display:none}.oke-sr-count,.oke-sr-rating,.oke-sr-stars{display:inline-block;vertical-align:middle}.oke-sr-stars{line-height:1;margin-right:8px}.oke-sr-rating{display:none}.oke-sr-count--brackets:before{content:"("}.oke-sr-count--brackets:after{content:")"}
.oke-rk{display:block}.okeReviews[data-oke-container] .oke-reviewsKeywords-heading,div.okeReviews .oke-reviewsKeywords-heading{font-weight:700;margin-bottom:8px}.okeReviews[data-oke-container] .oke-reviewsKeywords-heading-skeleton,div.okeReviews .oke-reviewsKeywords-heading-skeleton{height:calc(var(--oke-button-fontSize) + 4px);width:150px}.okeReviews[data-oke-container] .oke-reviewsKeywords-list,div.okeReviews .oke-reviewsKeywords-list{display:inline-flex;align-items:center;flex-wrap:wrap;gap:4px}.okeReviews[data-oke-container] .oke-reviewsKeywords-list-category,div.okeReviews .oke-reviewsKeywords-list-category{background-color:var(--oke-filter-backgroundColor);color:var(--oke-filter-textColor);border:1px solid var(--oke-filter-borderColor);border-radius:var(--oke-filter-borderRadius);padding:6px 16px;transition:background-color .1s ease-out,border-color .1s ease-out;white-space:nowrap}.okeReviews[data-oke-container] .oke-reviewsKeywords-list-category.oke-is-clickable,div.okeReviews .oke-reviewsKeywords-list-category.oke-is-clickable{cursor:pointer}.okeReviews[data-oke-container] .oke-reviewsKeywords-list-category.oke-is-active,div.okeReviews .oke-reviewsKeywords-list-category.oke-is-active{background-color:var(--oke-filter-backgroundColorActive);color:var(--oke-filter-textColorActive);border-color:var(--oke-filter-borderColorActive)}.okeReviews[data-oke-container] .oke-reviewsKeywords .oke-translateButton,div.okeReviews .oke-reviewsKeywords .oke-translateButton{margin-top:12px}
.oke-rs{display:block}.oke-rs .oke-reviewsSummary.oke-is-preRender .oke-reviewsSummary-summary{-webkit-mask:linear-gradient(180deg,#000 0,#000 40%,transparent 95%,transparent 0) 100% 50%/100% 100% repeat-x;mask:linear-gradient(180deg,#000 0,#000 40%,transparent 95%,transparent 0) 100% 50%/100% 100% repeat-x;max-height:150px}.okeReviews[data-oke-container] .oke-reviewsSummary .oke-tooltip,div.okeReviews .oke-reviewsSummary .oke-tooltip{display:inline-block;font-weight:400}.okeReviews[data-oke-container] .oke-reviewsSummary .oke-tooltip-trigger,div.okeReviews .oke-reviewsSummary .oke-tooltip-trigger{height:15px;width:15px;overflow:hidden;transform:translateY(-10%)}.okeReviews[data-oke-container] .oke-reviewsSummary-heading,div.okeReviews .oke-reviewsSummary-heading{align-items:center;-moz-column-gap:4px;column-gap:4px;display:inline-flex;font-weight:700;margin-bottom:8px}.okeReviews[data-oke-container] .oke-reviewsSummary-heading-skeleton,div.okeReviews .oke-reviewsSummary-heading-skeleton{height:calc(var(--oke-button-fontSize) + 4px);width:150px}.okeReviews[data-oke-container] .oke-reviewsSummary-icon,div.okeReviews .oke-reviewsSummary-icon{fill:currentColor;font-size:14px}.okeReviews[data-oke-container] .oke-reviewsSummary-icon svg,div.okeReviews .oke-reviewsSummary-icon svg{vertical-align:baseline}.okeReviews[data-oke-container] .oke-reviewsSummary-summary.oke-is-truncated,div.okeReviews .oke-reviewsSummary-summary.oke-is-truncated{display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis}</style>

    <script type="application/json" id="oke-reviews-settings">{"subscriberId":"5d6ab41b-4057-419b-a549-335d151d78f9","analyticsSettings":{"isWidgetOnScreenTrackingEnabled":true,"provider":"gtm"},"locale":"en","localeAndVariant":{"code":"en"},"matchCustomerLocale":false,"widgetSettings":{"global":{"dateSettings":{"format":{"type":"absolute","options":{"dateStyle":"short"}}},"hideOkendoBranding":true,"reviewTranslationsMode":"per-review","showIncentiveIndicator":false,"searchEnginePaginationEnabled":true,"stars":{"backgroundColor":"#E5E5E5","foregroundColor":"#EB3986","interspace":4,"shape":{"type":"thin"},"showBorder":false},"font":{"fontType":"inherit-from-page"}},"homepageCarousel":{"slidesPerPage":{"large":3,"medium":2},"totalSlides":12,"scrollBehaviour":"slide","style":{"showDates":true,"border":{"color":"#E5E5EB","width":{"value":1,"unit":"px"}},"headingFont":{"hasCustomFontSettings":false},"bodyFont":{"hasCustomFontSettings":false},"arrows":{"color":"#676986","size":{"value":24,"unit":"px"},"enabled":true},"avatar":{"backgroundColor":"#E5E5EB","placeholderTextColor":"#2C3E50","size":{"value":48,"unit":"px"},"enabled":true},"media":{"size":{"value":80,"unit":"px"},"imageGap":{"value":4,"unit":"px"},"enabled":true},"stars":{"height":{"value":18,"unit":"px"}},"productImageSize":{"value":48,"unit":"px"},"layout":{"name":"default","reviewDetailsPosition":"below","showProductName":false,"showAttributeBars":false,"showProductVariantName":false,"showProductDetails":"only-when-grouped"},"highlightColor":"#0E7A82","spaceAbove":{"value":20,"unit":"px"},"text":{"primaryColor":"#2C3E50","fontSizeRegular":{"value":14,"unit":"px"},"fontSizeSmall":{"value":12,"unit":"px"},"secondaryColor":"#676986"},"spaceBelow":{"value":20,"unit":"px"}},"defaultSort":"rating desc","autoPlay":false,"truncation":{"bodyMaxLines":4,"enabled":true,"truncateAll":false}},"mediaCarousel":{"minimumImages":1,"linkText":"Read More","autoPlay":false,"slideSize":"medium","arrowPosition":"outside"},"mediaGrid":{"gridStyleDesktop":{"layout":"default-desktop"},"gridStyleMobile":{"layout":"default-mobile"},"showMoreArrow":{"arrowColor":"#676986","enabled":true,"backgroundColor":"#f4f4f6"},"linkText":"Read More","infiniteScroll":false,"gapSize":{"value":10,"unit":"px"}},"questions":{"initialPageSize":6,"loadMorePageSize":6},"reviewsBadge":{"layout":"large","colorScheme":"dark"},"reviewsTab":{"enabled":false},"reviewsWidget":{"tabs":{"reviews":true,"questions":true},"header":{"columnDistribution":"space-between","verticalAlignment":"top","blocks":[{"columnWidth":"full","modules":[{"name":"rating-average","layout":"one-line"},{"name":"reviews-summary","heading":"Reviews Summary","maxTextLines":3}],"textAlignment":"left"},{"columnWidth":"one-third","modules":[],"textAlignment":"center"}]},"style":{"showDates":true,"border":{"color":"#DDDDDD","width":{"value":1,"unit":"px"}},"bodyFont":{"hasCustomFontSettings":false},"headingFont":{"fontSize":{"value":18,"unit":"px"},"fontType":"use-global","fontWeight":700,"hasCustomFontSettings":true},"filters":{"backgroundColorActive":"#EB3986","backgroundColor":"#FFFFFF","borderColor":"#000000","borderRadius":{"value":26,"unit":"px"},"borderColorActive":"#EB3986","textColorActive":"#FFFFFF","textColor":"#000000","searchHighlightColor":"#f7b0cf"},"avatar":{"enabled":false},"stars":{"height":{"value":15,"unit":"px"}},"shadingColor":"#F7F7F8","productImageSize":{"value":40,"unit":"px"},"button":{"backgroundColorActive":"#EB3986","borderColorHover":"#000000","backgroundColor":"#FFFFFF","borderColor":"#000000","backgroundColorHover":"#FFFFFF","textColorHover":"#000000","borderRadius":{"value":26,"unit":"px"},"borderWidth":{"value":1,"unit":"px"},"borderColorActive":"#EB3986","textColorActive":"#FFFFFF","textColor":"#000000","font":{"fontSize":{"value":14,"unit":"px"},"fontType":"custom","fontFamily":"'Review Condensed Web'","fontWeight":700,"hasCustomFontSettings":true}},"highlightColor":"#666666","spaceAbove":{"value":25,"unit":"px"},"text":{"primaryColor":"#000000","fontSizeRegular":{"value":14,"unit":"px"},"fontSizeLarge":{"value":48,"unit":"px"},"fontSizeSmall":{"value":14,"unit":"px"},"secondaryColor":"#666666"},"spaceBelow":{"value":25,"unit":"px"},"attributeBar":{"style":"default","backgroundColor":"#D3D4DD","shadingColor":"#9A9DB1","markerColor":"#EB3986"}},"showWhenEmpty":true,"reviews":{"list":{"layout":{"collapseReviewerDetails":false,"columnAmount":4,"name":"default","showAttributeBars":false,"borderStyle":"minimal","showProductVariantName":false,"showProductDetails":"only-when-grouped"},"loyalty":{"maxInitialAchievements":3,"showVipTiers":false,"showAchievements":false},"initialPageSize":3,"replyTruncation":{"bodyMaxLines":4,"enabled":true},"media":{"layout":"featured","size":{"value":200,"unit":"px"}},"truncation":{"bodyMaxLines":4,"truncateAll":false,"enabled":true},"loadMorePageSize":3},"controls":{"filterMode":"closed","freeTextSearchEnabled":true,"writeReviewButtonEnabled":true,"defaultSort":"helpful desc"}}},"starRatings":{"showWhenEmpty":false,"style":{"spaceAbove":{"value":0,"unit":"px"},"text":{"content":"average-rating","style":"number-only","brackets":false},"singleStar":false,"height":{"value":15,"unit":"px"},"spaceBelow":{"value":0,"unit":"px"}},"clickBehavior":"scroll-to-widget"}},"features":{"attributeFiltersEnabled":true,"recorderPlusEnabled":true,"recorderQandaPlusEnabled":true,"reviewsKeywordsEnabled":true,"reviewsSummariesEnabled":true}}</script>
            <style id="oke-css-vars">:root{--oke-widget-spaceAbove:25px;--oke-widget-spaceBelow:25px;--oke-starRating-spaceAbove:0;--oke-starRating-spaceBelow:0;--oke-button-backgroundColor:#fff;--oke-button-backgroundColorHover:#fff;--oke-button-backgroundColorActive:#eb3986;--oke-button-textColor:#000;--oke-button-textColorHover:#000;--oke-button-textColorActive:#fff;--oke-button-borderColor:#000;--oke-button-borderColorHover:#000;--oke-button-borderColorActive:#eb3986;--oke-button-borderRadius:26px;--oke-button-borderWidth:1px;--oke-button-fontWeight:700;--oke-button-fontSize:14px;--oke-button-fontFamily:'Review Condensed Web',sans-serif;--oke-border-color:#ddd;--oke-border-width:1px;--oke-text-primaryColor:#000;--oke-text-secondaryColor:#666;--oke-text-small:14px;--oke-text-regular:14px;--oke-text-large:48px;--oke-text-fontFamily:inherit;--oke-avatar-size:undefined;--oke-avatar-backgroundColor:undefined;--oke-avatar-placeholderTextColor:undefined;--oke-highlightColor:#666;--oke-shadingColor:#f7f7f8;--oke-productImageSize:40px;--oke-attributeBar-shadingColor:#9a9db1;--oke-attributeBar-borderColor:undefined;--oke-attributeBar-backgroundColor:#d3d4dd;--oke-attributeBar-markerColor:#eb3986;--oke-filter-backgroundColor:#fff;--oke-filter-backgroundColorActive:#eb3986;--oke-filter-borderColor:#000;--oke-filter-borderColorActive:#eb3986;--oke-filter-textColor:#000;--oke-filter-textColorActive:#fff;--oke-filter-borderRadius:26px;--oke-filter-searchHighlightColor:#f7b0cf;--oke-mediaGrid-chevronColor:#676986;--oke-stars-foregroundColor:#eb3986;--oke-stars-backgroundColor:#e5e5e5;--oke-stars-borderWidth:0}.oke-w,.oke-modal{--oke-title-fontWeight:700;--oke-title-fontSize:18px;--oke-title-fontFamily:inherit;--oke-bodyText-fontWeight:400;--oke-bodyText-fontSize:var(--oke-text-regular,14px);--oke-bodyText-fontFamily:inherit}</style>
            <style id="oke-reviews-custom-css">[data-oke-loyalty-embedded-widget] .c-embeddedWidget>div#oke-loyalty-profile{display:none}div#oke-loyalty-profile .c-customisableProfile-cards .c-card--customisable.c-promptProgressCard--profile.c-promptProgressCard .c-promptProgressCard-progress-tier{row-gap:5px}div#oke-loyalty-profile .u-lineHeight--tight.c-promptProgressCard-progress-tier-text .u-textStyleEmbedded--body{display:none}div#oke-loyalty-refer-friends .u-textStyleEmbedded--h1.u-marginBottom--4,div#oke-loyalty-refer-friends .u-textStyleEmbedded--h2.u-marginBottom--4{font-size:0;font-family:"Review Condensed Web"}div#oke-loyalty-refer-friends .u-textStyleEmbedded--h1.u-marginBottom--4::after,div#oke-loyalty-refer-friends .u-textStyleEmbedded--h2.u-marginBottom--4::after{font-size:36px;content:"GET 20%";color:#eb3986}div#oke-loyalty-refer-friends .u-textStyleEmbedded--h1.u-marginBottom--4::before,div#oke-loyalty-refer-friends .u-textStyleEmbedded--h2.u-marginBottom--4::before{font-size:36px;content:"GIVE 20%,";margin-right:5px}div#oke-loyalty-refer-friends .u-textStyleEmbedded--body.u-marginBottom--10{font-size:0}div#oke-loyalty-refer-friends .u-textStyleEmbedded--body.u-marginBottom--10::before{font-size:16px;content:"Give your friends 20% off their first order of $100 or more! For every friend you successfully refer, you'll receive 20% off your next order."}div#oke-loyalty-earn .c-customIcon-image{margin-bottom:10px}div#oke-loyalty-earn .c-embeddedEarningRules{max-width:unset}.product-grid-container [data-oke-star-rating]{margin-bottom:1px}.product-grid-container .oke-sr-cont{flex-wrap:wrap}.product-grid-container .oke-sr>div,.product-grid-container .oke-sr .oke-sr-count{line-height:1}@media all and (max-width:500px){.product-grid-container .oke-sr .oke-stars svg{height:10px}.product-grid-container .oke-sr-cont,.product-grid-container .oke-sr .oke-sr-count{font-size:12px}}.oke-sr-count .oke-sr-label-text,div.okeReviews[data-oke-container] .oke-w-navBar-item-count,div.okeReviews[data-oke-container] .oke-w-writeReview:before,div.okeReviews[data-oke-container] .oke-w-reviews-count,div.okeReviews[data-oke-container] .oke-sortSelect-label,div.okeReviews[data-oke-container] .oke-w-reviewer-flag,div.okeReviews[data-oke-container] .oke-w-reviewer-verified-icon,div.okeReviews[data-oke-container] .oke-w-review-side-expandContent,div.okeReviews[data-oke-container] .oke-helpful-label{display:none}.oke-sr-cont{display:inline-flex;gap:3px;align-items:center;line-height:1}.okeReviews.oke-sr .oke-sr-total-text{color:#666}.featured-product.product .oke-sr-cont{margin-bottom:10px}div.okeReviews[data-oke-container].oke-w{max-width:unset}div.okeReviews[data-oke-container] .oke-modal div.okeReviews.oke-w,div.okeReviews[data-oke-container] .oke-modal .oke-modal-content,div.okeReviews[data-oke-container] .oke-modal .oke-modal-content p{color:var(--oke-text-primaryColor)}div.okeReviews[data-oke-container] .oke-modal .oke-modal-content .oke-helpful,div.okeReviews[data-oke-container] .oke-modal .oke-modal-content .oke-helpful-vote-button,div.okeReviews[data-oke-container] .oke-modal .oke-modal-content .oke-reviewContent-date{color:var(--oke-text-secondaryColor)}div.okeReviews[data-oke-container] .oke-modal .oke-reviewContent-title{font-size:18px;font-weight:700}div.okeReviews[data-oke-container] .oke-button{text-transform:uppercase}div.okeReviews[data-oke-container] .oke-button:not(.oke-is-loading):not(.oke-is-active):hover{box-shadow:none}.okeReviews.oke-w .oke-button.oke-w-writeReview{height:100%;line-height:normal;vertical-align:middle}div.okeReviews[data-oke-container] .oke-w-textSearchFilter{outline:0}div.okeReviews[data-oke-container] .oke-w-textSearchFilter-input{background-color:#f8f6f3;border:0;outline:0}div.okeReviews[data-oke-container] .oke-w-textSearchFilter:before{font-size:10px;margin:3px 0}div.okeReviews[data-oke-container] .oke-is-small .oke-w-header-content-module{text-align:left}div.okeReviews[data-oke-container] .oke-w-ratingAverageModule-rating{line-height:1}div.okeReviews[data-oke-container] .oke-w-ratingAverageModule-rating-average{color:#eb3986;font-family:'Review Condensed Web';font-size:110px;letter-spacing:.96px;vertical-align:middle}div.okeReviews[data-oke-container] .oke-w-ratingAverageModule-rating-stars{margin-top:-22px;vertical-align:middle}div.okeReviews[data-oke-container].oke-w .oke-w-controls-nav{border-bottom:0}div.okeReviews[data-oke-container] .oke-w-navBar-item{font-family:'Review Condensed Web';font-size:28px;letter-spacing:.96px;text-transform:uppercase}div.okeReviews[data-oke-container] .oke-w-navBar-item[aria-selected=true]{border-color:#000}div.okeReviews[data-oke-container] .oke-is-small .oke-w-reviews-head{margin-bottom:10px;gap:12px}div.okeReviews[data-oke-container] .oke-is-small .oke-button.oke-w-reviews-filterToggle,div.okeReviews[data-oke-container] .oke-is-small .oke-w-reviews-writeReview,div.okeReviews[data-oke-container] .oke-is-small .oke-button:not(.oke-is-loading):not(.oke-is-active):hover{width:100%}div.okeReviews[data-oke-container] .oke-w-reviews-controls{justify-content:end}div.okeReviews[data-oke-container] .oke-w-reviews-sort{background-color:#f8f6f3;padding:12px 16px}div.okeReviews[data-oke-container] .oke-is-small .oke-w-reviews-sort,div.okeReviews[data-oke-container] .oke-select{width:100%}div.okeReviews[data-oke-container] .oke-select{background-image:url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.5835 0.968018L5.00016 4.97843L0.416829 0.968018' stroke='black'/%3E%3C/svg%3E%0A");color:#666;padding-left:0}div.okeReviews[data-oke-container] .oke-is-large .oke-w-review-side,div.okeReviews[data-oke-container] .oke-is-medium .oke-w-review-side{border:0;flex-basis:150px}div.okeReviews[data-oke-container] .oke-w-reviewer-name,div.okeReviews[data-oke-container] .oke-w-reviewer-verified{font-weight:400}div.okeReviews[data-oke-container] .oke-w-reviewer-name{font-size:16px}div.okeReviews[data-oke-container] .oke-reviewContent-body{color:#666}div.okeReviews[data-oke-container] .oke-w-review-footer{justify-content:left;text-align:left}div.okeReviews[data-oke-container] .oke-helpful-vote{margin-left:0}div.okeReviews[data-oke-container] .oke-helpful-vote-button:before{opacity:1}@media all and (max-width:749px){div.okeReviews[data-oke-container] .oke-w-ratingAverageModule-rating-average{font-size:80px}}.okeQuiz .c-emailInput .c-checkbox-label:before{font-size:14px;content:"I'd like to receive emails from Huda Beauty"}.okeQuiz .c-questions .c-emailInput .c-checkbox-label{font-size:0}[oke-channel-quiz-id="c2602d38-3b1c-41e2-85a3-9a16b4b73371"] .okeQuiz div#subtitle-81148f1f-2575-4946-b185-ada7c99ae053:before{content:"Subscribe for new launches, beauty tips, and exclusive updates.\A \A";white-space:pre}[oke-channel-quiz-id="c2602d38-3b1c-41e2-85a3-9a16b4b73371"] .okeQuiz #title-81148f1f-2575-4946-b185-ada7c99ae053{font-size:0}[oke-channel-quiz-id="c2602d38-3b1c-41e2-85a3-9a16b4b73371"] .okeQuiz #title-81148f1f-2575-4946-b185-ada7c99ae053:after{content:"Don't Miss a Drop";font-size:48px}</style>
            <template id="oke-reviews-body-template"><svg id="oke-star-symbols" style="display:none!important" data-oke-id="oke-star-symbols"><symbol id="oke-star-empty" style="overflow:visible;"><path id="star-thin--empty" fill="var(--oke-stars-backgroundColor)" stroke="var(--oke-stars-borderColor)" stroke-width="var(--oke-stars-borderWidth)" d="M9.944 6.4L8 0L6.056 6.4H0L4.944 9.928L3.064 16L8 12.248L12.944 16L11.064 9.928L16 6.4H9.944Z"/></symbol><symbol id="oke-star-filled" style="overflow:visible;"><path id="star-thin--filled" fill="var(--oke-stars-foregroundColor)" stroke="var(--oke-stars-borderColor)" stroke-width="var(--oke-stars-borderWidth)" d="M9.944 6.4L8 0L6.056 6.4H0L4.944 9.928L3.064 16L8 12.248L12.944 16L11.064 9.928L16 6.4H9.944Z"/></symbol></svg></template><script>document.addEventListener('readystatechange',() =>{Array.from(document.getElementById('oke-reviews-body-template')?.content.children)?.forEach(function(child){if(!Array.from(document.body.querySelectorAll('[data-oke-id='.concat(child.getAttribute('data-oke-id'),']'))).length){document.body.prepend(child)}})},{once:true});</script>




    
    




    <script src="https://surveys.okendo.io/js/init-quizzes.js" defer></script>




    <script type="application/json" id="oke-loyalty-settings">{"subscriberId":"5d6ab41b-4057-419b-a549-335d151d78f9","countryCode":"US","currency":"USD","customerAccountSettings":{"customerAccountsVersion":"classic"},"general":{"pointName":"Point","pointNamePlural":"Points","programName":"Huda's VIPs","storeLoyaltyPagePath":"rewards","postLoginRedirect":"account-page"},"isLaunched":true,"isVipTiersEnabled":true,"locale":"en","localeAndVariant":{"code":"en"},"storefrontAccessToken":"e7752a10bbf25109dea5aba15e64ed8b","style":{"embeddedWidget":{"customisableModules":[{"isOnLoyaltyPage":true,"styleVariant":"cards","type":"customisable-profile","background":{"style":"none"},"headingEnabled":true,"titleAlign":"left"},{"layout":"grid","isOnLoyaltyPage":true,"background":{"color":"#F9F1EF","style":"color"},"headingEnabled":true,"hasCards":true,"styleVariant":"icons-in-circles","imageSize":{"fit":"stretch","height":{"type":"square","cropPosition":"center"}},"type":"customisable-redeem","titleAlign":"left"},{"isOnLoyaltyPage":true,"background":{"style":"none"},"imagePosition":"none","headingEnabled":true,"styleVariant":"table","type":"customisable-vip-tiers","titleAlign":"left"},{"layout":"grid","isOnLoyaltyPage":true,"background":{"style":"none"},"headingEnabled":true,"hasCards":true,"styleVariant":"icons","imageSize":{"fit":"stretch","height":{"type":"square","cropPosition":"center"}},"type":"customisable-earn","titleAlign":"left"},{"alignContent":"center","isOnLoyaltyPage":true,"background":{"style":"none"},"imagePosition":"right","expandToFullWidth":false,"imageSize":{"fit":"stretch","height":{"type":"square","cropPosition":"center"}},"type":"customisable-refer-friends","dynamicKey":"5d6ab41b-4057-419b-a549-335d151d78f9/fa7fc8f8-5e5b-4f67-ad05-bbc6c06e27ed","justifyContent":"center"},{"isOnLoyaltyPage":true,"background":{"style":"none"},"imagePosition":"none","headingEnabled":true,"styleVariant":"plain","type":"customisable-faq","titleAlign":"left"},{"alignContent":"end","isOnLoyaltyPage":false,"containerAroundText":false,"containerBorderRadius":{"value":8,"unit":"px"},"expandToFullWidth":true,"styleVariant":"full-width-image","imageSize":{"fit":"custom","cropPosition":"center","height":615},"type":"customisable-welcome-header","title":"JOIN HUDA’S VIPS","body":"&nbsp;","dynamicKey":"5d6ab41b-4057-419b-a549-335d151d78f9/8b465c3b-6dda-497a-a438-46471c0f7e35","justifyContent":"start"},{"isOnLoyaltyPage":false,"background":{"style":"none"},"headingEnabled":true,"styleVariant":"dots","type":"customisable-how-it-works","steps":[{"title":"Join","body":"Create an account"},{"title":"Earn","body":"$1 = 1 point earned"},{"title":"Redeem","body":"For products you love"}],"titleAlign":"left"},{"isOnLoyaltyPage":false,"background":{"style":"none"},"headingEnabled":true,"hasCards":true,"styleVariant":"grid","type":"customisable-achievements","titleAlign":"left"},{"layout":"grid","isOnLoyaltyPage":false,"background":{"style":"none"},"headingEnabled":true,"hasCards":true,"styleVariant":"icons-in-circles","type":"customisable-free-product-showcase","titleAlign":"left"},{"isOnLoyaltyPage":false,"type":"customisable-join-program","title":"Join Our Loyalty Program","body":"Join now and start earning rewards","background":{"style":"none"}},{"isOnLoyaltyPage":false,"type":"customisable-promotions","background":{"style":"none"},"upcomingPromotionsRange":"none","titleAlign":"left"}],"hideOkendoBranding":true,"modules":[{"type":"profile"},{"type":"earn"},{"type":"redeem"},{"type":"vip-tiers"},{"type":"faq","displayType":"default"}],"style":{"brandSecondaryColor":"#EB3986","buttonBackgroundColor":"#EB3986","buttonBorderColor":"#EB3986","buttonBorderHoverColor":"#000000","primaryTextColor":"#000000","brandPrimaryColor":"#EB3986","linkTextColor":"#EB3986","buttonTextColor":"#FFFFFF","secondaryTextColor":"#000000","buttonTextHoverColor":"#000000","buttonBackgroundHoverColor":"#FFFFFF"},"styleSettings":{"button":{"secondary":{"backgroundColor":"#FFFFFF","borderColor":"#000000","hoverTextColor":"#FFFFFF","borderRadius":{"value":50,"unit":"px"},"borderWidth":{"value":1,"unit":"px"},"hoverBorderColor":"#EB3986","hoverBackgroundColor":"#EB3986","textColor":"#000000"},"primary":{"backgroundColor":"#EB3986","borderColor":"#EB3986","hoverTextColor":"#000000","borderRadius":{"value":50,"unit":"px"},"borderWidth":{"value":1,"unit":"px"},"hoverBorderColor":"#000000","hoverBackgroundColor":"#NaNed4d","textColor":"#FFFFFF"}},"general":{"blockSpacing":{"value":50,"unit":"px"},"accentColor":"#EB3986","imageBorderRadius":{"value":8,"unit":"px"},"iconColor":"#000000","iconSize":{"value":24,"unit":"px"},"shadingColor":"#EB3986","innerPageMaxWidth":{"value":1248,"unit":"px"}},"text":{"secondary":{"color":"#000000","font":{"type":"inherit-from-page"}},"h1":{"fontWeight":700,"fontSize":{"value":48,"unit":"px"}},"h2":{"fontWeight":700,"fontSize":{"value":36,"unit":"px"}},"h3":{"fontWeight":700,"fontSize":{"value":20,"unit":"px"}},"body":{"emphasisFontWeight":700,"fontWeight":400,"fontSize":{"value":16,"unit":"px"}},"primary":{"color":"#000000","font":{"type":"inherit-from-page"}}},"card":{"fillColor":"#FFFFFF","borderColor":"#EB3986","borderRadius":{"value":10,"unit":"px"},"textColor":"#000000","borderWidth":{"value":1,"unit":"px"}}}},"floatingWidget":{"expanded":{"headerTextColor":"#FFFFFF","brandSecondaryColor":"#EB3986","buttonBackgroundColor":"#EB3986","buttonBorderColor":"#EB3986","buttonBorderHoverColor":"#EB3986","primaryTextColor":"#000000","brandPrimaryColor":"#EB3986","linkTextColor":"#EB3986","buttonTextColor":"#FFFFFF","secondaryTextColor":"#676986","buttonTextHoverColor":"#FFFFFF","buttonBackgroundHoverColor":"#EB3986"},"hideOkendoBranding":true,"bubble":{"backgroundColor":"#EB3986","bubbleColor":"#FFFFFF","mobileStyle":"floating","icon":"crown","textHoverColor":"#FFFFFF","textColor":"#FFFFFF","desktopStyle":"floating","backgroundHoverColor":"#EB3986"},"textContent":{"headerFirstLine":"Welcome to","headerSecondLine":"Huda's VIPs"},"position":"bottom-left","showFloatingWidget":false,"modules":[{"type":"earn-and-redeem"},{"type":"vip-tiers","featureFlag":"loyaltyVIPTiers"}]},"pointsPreview":{"style":{"backgroundColor":"#fafafb","borderRadius":"0","primaryTextColor":"inherit","horizontalAlign":"left","icon":"gift","iconColor":"#000000","linkTextColor":"inherit"},"customText":"You could earn up to {{ points }} with Huda's VIPs"}}}</script><script src="https://d3hw6dc1ow8pp2.cloudfront.net/loyalty/js/init-onsite.js" defer></script>

    

      

  



<!-- END app snippet -->

    <!-- BEGIN app snippet: okendo-reviews-json-ld -->
<!-- END app snippet -->

<!-- BEGIN app snippet: widget-plus-initialisation-script -->




    <script async id="okendo-reviews-script" src="https://cdn-static.okendo.io/reviews-widget-plus/js/okendo-reviews.js"></script>

<!-- END app snippet -->


<!-- END app block --><!-- BEGIN app block: shopify://apps/okendo/blocks/loyalty-widget-v2/bb689e69-ea70-4661-8fb7-ad24a2e23c29 -->
    <script type="application/json" id="oke-loyalty-v2">
        {
            "okeLoyaltyV2": true
        }
    </script>



<!-- END app block --><!-- BEGIN app block: shopify://apps/elevar-conversion-tracking/blocks/dataLayerEmbed/bc30ab68-b15c-4311-811f-8ef485877ad6 -->



<script type="module" dynamic>
  const configUrl = "/a/elevar/static/configs/118d85b8dd828996fe9ddbbd425256082f3648af/config.js";
  const config = (await import(configUrl)).default;
  const scriptUrl = config.script_src_app_theme_embed;

  if (scriptUrl) {
    const { handler } = await import(scriptUrl);

    await handler(
      config,
      {
        cartData: {
  marketId: "95988908310",
  attributes:{},
  cartTotal: "0.0",
  currencyCode:"EUR",
  items: []
}
,
        user: {cartTotal: "0.0",
    currencyCode:"EUR",customer: {},
}
,
        isOnCartPage:false,
        collectionView:null,
        searchResultsView:null,
        productView:null,
        checkoutComplete: null
      }
    );
  }
</script>


<!-- END app block --><link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
<script>(function(){if ("sendBeacon" in navigator && "performance" in window) {try {var session_token_from_headers = performance.getEntriesByType('navigation')[0].serverTiming.find(x => x.name == '_s').description;} catch {var session_token_from_headers = undefined;}var session_cookie_matches = document.cookie.match(/_shopify_s=([^;]*)/);var session_token_from_cookie = session_cookie_matches && session_cookie_matches.length === 2 ? session_cookie_matches[1] : "";var session_token = session_token_from_headers || session_token_from_cookie || "";function handle_abandonment_event(e) {var entries = performance.getEntries().filter(function(entry) {return /monorail-edge.shopifysvc.com/.test(entry.name);});if (!window.abandonment_tracked && entries.length === 0) {window.abandonment_tracked = true;var currentMs = Date.now();var navigation_start = performance.timing.navigationStart;var payload = {shop_id: 95989629206,url: window.location.href,navigation_start,duration: currentMs - navigation_start,session_token,page_type: "index"};window.navigator.sendBeacon("https://monorail-edge.shopifysvc.com/v1/produce", JSON.stringify({schema_id: "online_store_buyer_site_abandonment/1.1",payload: payload,metadata: {event_created_at_ms: currentMs,event_sent_at_ms: currentMs}}));}}window.addEventListener('pagehide', handle_abandonment_event);}}());</script>
<script>
  window.__TREKKIE_SHIM_QUEUE = window.__TREKKIE_SHIM_QUEUE || [];
</script>
<script id="web-pixels-manager-setup">(function e(e,d,r,n,o){if(void 0===o&&(o={}),!Boolean(null===(a=null===(i=window.Shopify)||void 0===i?void 0:i.analytics)||void 0===a?void 0:a.replayQueue)){var i,a;window.Shopify=window.Shopify||{};var t=window.Shopify;t.analytics=t.analytics||{};var s=t.analytics;s.replayQueue=[],s.publish=function(e,d,r){return s.replayQueue.push([e,d,r]),!0};try{self.performance.mark("wpm:start")}catch(e){}var l=function(){var e={modern:/Edge?\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Firefox\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Chrom(ium|e)\/(9{2}|\d{3,})\.\d+(\.\d+|)|(Maci|X1{2}).+ Version\/(15\.\d+|(1[6-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(9{2}|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(15[._]\d+|(1[6-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Android.+Firefox\/(13[5-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|SamsungBrowser\/([2-9]\d|\d{3,})\.\d+/,legacy:/Edge?\/(1[6-9]|[2-9]\d|\d{3,})\.\d+(\.\d+|)|Firefox\/(5[4-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)|Chrom(ium|e)\/(5[1-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)([\d.]+$|.*Safari\/(?![\d.]+ Edge\/[\d.]+$))|(Maci|X1{2}).+ Version\/(10\.\d+|(1[1-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(3[89]|[4-9]\d|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(10[._]\d+|(1[1-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Mobile Safari.+OPR\/([89]\d|\d{3,})\.\d+\.\d+|Android.+Firefox\/(13[5-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(13[3-9]|1[4-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+(UC? ?Browser|UCWEB|U3)[ /]?(15\.([5-9]|\d{2,})|(1[6-9]|[2-9]\d|\d{3,})\.\d+)\.\d+|SamsungBrowser\/(5\.\d+|([6-9]|\d{2,})\.\d+)|Android.+MQ{2}Browser\/(14(\.(9|\d{2,})|)|(1[5-9]|[2-9]\d|\d{3,})(\.\d+|))(\.\d+|)|K[Aa][Ii]OS\/(3\.\d+|([4-9]|\d{2,})\.\d+)(\.\d+|)/},d=e.modern,r=e.legacy,n=navigator.userAgent;return n.match(d)?"modern":n.match(r)?"legacy":"unknown"}(),u="modern"===l?"modern":"legacy",c=(null!=n?n:{modern:"",legacy:""})[u],f=function(e){return[e.baseUrl,"/wpm","/b",e.hashVersion,"modern"===e.buildTarget?"m":"l",".js"].join("")}({baseUrl:d,hashVersion:r,buildTarget:u}),m=function(e){var d=e.version,r=e.bundleTarget,n=e.surface,o=e.pageUrl,i=e.monorailEndpoint;return{emit:function(e){var a=e.status,t=e.errorMsg,s=(new Date).getTime(),l=JSON.stringify({metadata:{event_sent_at_ms:s},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:d,bundle_target:r,page_url:o,status:a,surface:n,error_msg:t},metadata:{event_created_at_ms:s}}]});if(!i)return console&&console.warn&&console.warn("[Web Pixels Manager] No Monorail endpoint provided, skipping logging."),!1;try{return self.navigator.sendBeacon.bind(self.navigator)(i,l)}catch(e){}var u=new XMLHttpRequest;try{return u.open("POST",i,!0),u.setRequestHeader("Content-Type","text/plain"),u.send(l),!0}catch(e){return console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging to Monorail."),!1}}}}({version:r,bundleTarget:l,surface:e.surface,pageUrl:self.location.href,monorailEndpoint:e.monorailEndpoint});try{o.browserTarget=l,function(e){var d=e.src,r=e.async,n=void 0===r||r,o=e.onload,i=e.onerror,a=e.sri,t=e.scriptDataAttributes,s=void 0===t?{}:t,l=document.createElement("script"),u=document.querySelector("head"),c=document.querySelector("body");if(l.async=n,l.src=d,a&&(l.integrity=a,l.crossOrigin="anonymous"),s)for(var f in s)if(Object.prototype.hasOwnProperty.call(s,f))try{l.dataset[f]=s[f]}catch(e){}if(o&&l.addEventListener("load",o),i&&l.addEventListener("error",i),u)u.appendChild(l);else{if(!c)throw new Error("Did not find a head or body element to append the script");c.appendChild(l)}}({src:f,async:!0,onload:function(){if(!function(){var e,d;return Boolean(null===(d=null===(e=window.Shopify)||void 0===e?void 0:e.analytics)||void 0===d?void 0:d.initialized)}()){var d=window.webPixelsManager.init(e)||void 0;if(d){var r=window.Shopify.analytics;r.replayQueue.forEach((function(e){var r=e[0],n=e[1],o=e[2];d.publishCustomEvent(r,n,o)})),r.replayQueue=[],r.publish=d.publishCustomEvent,r.visitor=d.visitor,r.initialized=!0}}},onerror:function(){return m.emit({status:"failed",errorMsg:"".concat(f," has failed to load")})},sri:function(e){var d=/^sha384-[A-Za-z0-9+/=]+$/;return"string"==typeof e&&d.test(e)}(c)?c:"",scriptDataAttributes:o}),m.emit({status:"loading"})}catch(e){m.emit({status:"failed",errorMsg:(null==e?void 0:e.message)||"Unknown error"})}}})({shopId: 95989629206,storefrontBaseUrl: "https://hudabeauty.com",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",monorailEndpoint: "https://monorail-edge.shopifysvc.com/unstable/produce_batch",surface: "storefront-renderer",enabledBetaFlags: ["2dca8a86","d5bdd5d0","5476ea20","ed8389fc"],webPixelsConfigList: [{"id":"2463400214","configuration":"{\"campaignId\":\"1101l6186\",\"baseURL\":\"https:\\\/\\\/prf.hn\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"b4794efed556f308ac34691629bfad11","type":"APP","apiClientId":11838521345,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_personal_data"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized","enabledFlags":["3b5414a6"]},{"id":"2418671894","configuration":"{\"trackingId\":\"bff11bc8-098d-4e00-a7b4-be0c9c1c4407\",\"HMAC\":\"0466ee101018547c86abea12c3ce413ce9e8fae50a919becba48449c3f08f70a\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"343defba7c9f0f08f3e9afbb013ed49c","type":"APP","apiClientId":174634827777,"privacyPurposes":["ANALYTICS"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_personal_data"],"dataSharingControls":["share_all_events"]},"dataSharingState":"unrestricted","enabledFlags":["3b5414a6"]},{"id":"2362966294","configuration":"{\"appSettingSchemaVersion\":\"2.0\",\"sdkUrl\":\"sdk.fra-02.braze.eu\",\"sdkVersion\":\"5.4.0\",\"userTrackingBehavior\":\"on_visit\",\"apiKey\":\"cb8cb046-5b07-4c40-b001-4bae7f70eb3e\",\"shopDomain\":\"hudabeauty-srore.myshopify.com\",\"features\":\"WEB_SDK_FEATURE,ACCOUNT_LOGIN_FEATURE,VIEW_PRODUCTS_FEATURE,PURCHASE_COMMERCE_EVENTS_FEATURE,IN_BROWSER_MESSAGES_FEATURE\",\"appEmbedEnabled\":\"true\",\"selectedExternalId\":\"email-sha256\",\"customIdEndpoint\":\"none\",\"thirdPartyTagManagerEnabled\":\"true\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"c57d38160b86f32880eae344614ad1ec","type":"APP","apiClientId":4371083,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized","enabledFlags":["3b5414a6"]},{"id":"2310668566","configuration":"{\"config_url\": \"\/a\/elevar\/static\/configs\/118d85b8dd828996fe9ddbbd425256082f3648af\/config.js\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"ab86028887ec2044af7d02b854e52653","type":"APP","apiClientId":2509311,"privacyPurposes":[],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"unrestricted","enabledFlags":["3b5414a6"]},{"id":"2281636118","configuration":"{\"partnerId\": \"69866\", \"environment\": \"prod\", \"countryCode\": \"US\", \"logLevel\": \"none\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"8412b332d4693e70ac17331f67670a53","type":"APP","apiClientId":5829751,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":[],"dataSharingControls":["share_all_events"]},"dataSharingState":"unrestricted","enabledFlags":["9a3ed68a","3b5414a6"]},{"id":"2137587990","configuration":"{\"pixel_id\":\"295838851370081\",\"pixel_type\":\"facebook_pixel\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"ca16bc87fe92b6042fbaa3acc2fbdaa6","type":"APP","apiClientId":2329312,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"unrestricted","enabledFlags":["9a3ed68a","3b5414a6"]},{"id":"2134540566","configuration":"{\"subscriberId\":\"5d6ab41b-4057-419b-a549-335d151d78f9\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"7840e1d80e0e2c318fd68350f635b25f","type":"APP","apiClientId":1576377,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"optimized","enabledFlags":["3b5414a6"]},{"id":"2102558998","configuration":"{\"accountID\":\"3631\",\"checkoutExperienceEnabled\":\"true\",\"espPerformsOptInCheck\":\"1\",\"fieldMappingCountries\":\"[\\\"US\\\",\\\"CA\\\"]\",\"markets\":\"{\\\"gid:\/\/shopify\/Market\/95979241750\\\":{\\\"websiteId\\\":\\\"3631\\\",\\\"fieldMappingCountries\\\":\\\"[\\\\\\\"US\\\\\\\",\\\\\\\"CA\\\\\\\"]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95988810006\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95988908310\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95989039382\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95989072150\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95989104918\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95989137686\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95989170454\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95989203222\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95989235990\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95989268758\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95989334294\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95989399830\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95989432598\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95989498134\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95989530902\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95989563670\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95989596438\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95990808854\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95994282262\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95994380566\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95994413334\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95994544406\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95994577174\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95994609942\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/95994741014\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96131940630\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96131973398\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96132038934\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96132071702\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96132104470\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96132170006\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96132235542\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96142360854\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96142524694\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96142622998\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96142688534\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96142721302\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96142754070\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96142786838\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96142819606\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96142852374\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96142885142\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96142917910\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96142950678\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96142983446\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96143016214\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96143048982\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96143114518\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96143180054\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96143212822\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96143245590\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96143278358\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96143343894\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96143376662\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96143409430\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96143442198\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96270811414\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96270876950\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96270942486\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96270975254\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96271008022\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96271040790\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96271073558\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96271106326\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96271139094\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96271171862\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96271204630\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96271237398\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96271270166\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96271302934\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96271335702\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96271434006\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96271466774\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96271532310\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96271597846\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96271630614\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96271663382\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96272220438\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96272253206\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96272285974\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96272318742\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96272351510\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96272384278\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96272417046\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96272449814\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96272482582\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96272515350\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96272548118\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96272580886\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96272613654\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96272646422\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/96272679190\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/97011237142\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/97011302678\\\":{\\\"websiteId\\\":\\\"3631\\\",\\\"fieldMappingCountries\\\":\\\"[\\\\\\\"US\\\\\\\",\\\\\\\"CA\\\\\\\"]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/97011368214\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/97011400982\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/97011466518\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/97011499286\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/97011532054\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}},\\\"gid:\/\/shopify\/Market\/97012121878\\\":{\\\"websiteId\\\":\\\"3838\\\",\\\"fieldMappingCountries\\\":\\\"[]\\\",\\\"espPerformsOptInCheck\\\":\\\"1\\\",\\\"checkoutSmsCampaign\\\":{\\\"id\\\":\\\"\\\",\\\"attributes\\\":{\\\"name\\\":\\\"\\\",\\\"test-mode\\\":false}}}}\",\"onsiteExperienceEnabled\":\"false\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"7906c9645923698b6f931c009e63dc40","type":"APP","apiClientId":54985097217,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"unrestricted","enabledFlags":["3b5414a6"]},{"id":"1970405654","configuration":"{\"isUserEvents\":\"enabled\",\"isSavePromiseDate\":\"enabled\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"7eed76bac2b9f05e17b14ae836193dff","type":"APP","apiClientId":1461275,"privacyPurposes":["ANALYTICS","PREFERENCES"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"unrestricted","enabledFlags":["3b5414a6"]},{"id":"1953890582","configuration":"{\"shortId\":\"04h\",\"price\":\"subtotal\",\"duelApiUrl\":\"https:\\\/\\\/api.duel.me\",\"analyticsTTL\":\"30\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"b8ceac2056b1dec5a80d4c0211721c8a","type":"APP","apiClientId":2310802,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_email","read_customer_name","read_customer_personal_data"],"dataSharingControls":["share_all_events"]},"dataSharingState":"unrestricted","enabledFlags":["3b5414a6"]},{"id":"1935900950","configuration":"{\"accountID\":\"RU2ww8\",\"webPixelConfig\":\"eyJlbmFibGVBZGRlZFRvQ2FydEV2ZW50cyI6IHRydWV9\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"524f6c1ee37bacdca7657a665bdca589","type":"APP","apiClientId":123074,"privacyPurposes":["ANALYTICS","MARKETING"],"dataSharingAdjustments":{"protectedCustomerApprovalScopes":["read_customer_address","read_customer_email","read_customer_name","read_customer_personal_data","read_customer_phone"],"dataSharingControls":["share_all_events"]},"dataSharingState":"unrestricted","enabledFlags":["9a3ed68a","3b5414a6"]},{"id":"188678422","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"81","type":"CUSTOM","privacyPurposes":[],"name":"Elevar+GTM-ITG [DO NOT DELETE]"},{"id":"194773270","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"3","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"Datahash - neotag"},{"id":"195658006","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"2","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"Google Ads - purchase event"},{"id":"199229718","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"3","type":"CUSTOM","privacyPurposes":["ANALYTICS"],"name":"Heatmap.com"},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0450","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0450","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,initData: {"shop":{"name":"Huda Beauty","paymentSettings":{"currencyCode":"USD"},"myshopifyDomain":"hudabeauty-srore.myshopify.com","countryCode":"US","storefrontUrl":"https:\/\/hudabeauty.com\/en-fr"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"purchasingCompany":null},},"https://hudabeauty.com/cdn","5bfe654aw9a31df99pb879ff13m3bd6cd49",{"modern":"","legacy":""},{"trekkieShim":true,"shopId":"95989629206","storefrontBaseUrl":"https:\/\/hudabeauty.com","extensionBaseUrl":"https:\/\/extensions.shopifycdn.com\/cdn\/shopifycloud\/web-pixels-manager","surface":"storefront-renderer","enabledBetaFlags":"[\"2dca8a86\", \"d5bdd5d0\", \"5476ea20\", \"ed8389fc\"]","isMerchantRequest":"false","hashVersion":"5bfe654aw9a31df99pb879ff13m3bd6cd49","publish":"custom","events":"[[\"page_viewed\",{}]]"});</script><script>
  window.ShopifyAnalytics = window.ShopifyAnalytics || {};
  window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
  window.ShopifyAnalytics.meta.currency = 'EUR';
  var meta = {"page":{"pageType":"home","requestId":"c70e56c3-7164-42cf-adfd-212b52d1e016-1776084616"}};
  for (var attr in meta) {
    window.ShopifyAnalytics.meta[attr] = meta[attr];
  }
</script>
<script class="analytics">
  (function () {
    var customDocumentWrite = function(content) {
      var jquery = null;

      if (window.jQuery) {
        jquery = window.jQuery;
      } else if (window.Checkout && window.Checkout.$) {
        jquery = window.Checkout.$;
      }

      if (jquery) {
        jquery('body').append(content);
      }
    };

    var hasLoggedConversion = function(token) {
      if (token) {
        return document.cookie.indexOf('loggedConversion=' + token) !== -1;
      }
      return false;
    }

    var setCookieIfConversion = function(token) {
      if (token) {
        var twoMonthsFromNow = new Date(Date.now());
        twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);

        document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
      }
    }

    var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
    window.ShopifyAnalytics.lib.trekkie = window.trekkie;
    if (trekkie.integrations) {
      return;
    }
    trekkie.methods = [
      'identify',
      'page',
      'ready',
      'track',
      'trackForm',
      'trackLink'
    ];
    trekkie.factory = function(method) {
      return function() {
        var args = Array.prototype.slice.call(arguments);
        args.unshift(method);
        trekkie.push(args);
        if (window.__TREKKIE_SHIM_QUEUE && (method == 'track' || method == 'page')) {
          try {
            window.__TREKKIE_SHIM_QUEUE.push({
              from: 'trekkie-stub',
              method: method,
              args: args.slice(1)
            });
          } catch (e) {
            // no-op
          }
        }
        return trekkie;
      };
    };
    for (var i = 0; i < trekkie.methods.length; i++) {
      var key = trekkie.methods[i];
      trekkie[key] = trekkie.factory(key);
    }
    trekkie.load = function(config) {
      trekkie.config = config || {};
      trekkie.config.initialDocumentCookie = document.cookie;
      var first = document.getElementsByTagName('script')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
script.onerror = function(e) {
  var scriptFallback = document.createElement('script');
  scriptFallback.type = 'text/javascript';
  scriptFallback.onerror = function(error) {
          var Monorail = {
      produce: function produce(monorailDomain, schemaId, payload) {
        var currentMs = new Date().getTime();
        var event = {
          schema_id: schemaId,
          payload: payload,
          metadata: {
            event_created_at_ms: currentMs,
            event_sent_at_ms: currentMs
          }
        };
        return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
      },
      sendRequest: function sendRequest(endpointUrl, payload) {
        // Try the sendBeacon API
        if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
          var blobData = new window.Blob([payload], {
            type: 'text/plain'
          });

          if (window.navigator.sendBeacon(endpointUrl, blobData)) {
            return true;
          } // sendBeacon was not successful

        } // XHR beacon

        var xhr = new XMLHttpRequest();

        try {
          xhr.open('POST', endpointUrl);
          xhr.setRequestHeader('Content-Type', 'text/plain');
          xhr.send(payload);
        } catch (e) {
          console.log(e);
        }

        return false;
      },
      isIos12: function isIos12() {
        return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
      }
    };
    Monorail.produce('monorail-edge.shopifysvc.com',
      'trekkie_storefront_load_errors/1.1',
      {shop_id: 95989629206,
      theme_id: 186067484950,
      app_name: "storefront",
      context_url: window.location.href,
      source_url: "//hudabeauty.com/cdn/s/trekkie.storefront.8aba195e1f0d50eb4ee5422e0104eb204e686edd.min.js"});

  };
  scriptFallback.async = true;
  scriptFallback.src = '//hudabeauty.com/cdn/s/trekkie.storefront.8aba195e1f0d50eb4ee5422e0104eb204e686edd.min.js';
  first.parentNode.insertBefore(scriptFallback, first);
};
script.async = true;
script.src = '//hudabeauty.com/cdn/s/trekkie.storefront.8aba195e1f0d50eb4ee5422e0104eb204e686edd.min.js';
first.parentNode.insertBefore(script, first);

    };
    trekkie.load(
      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":95989629206,"isMerchantRequest":null,"themeId":186067484950,"themeCityHash":"2164995188442345400","contentLanguage":"en","currency":"EUR","eventMetadataId":"755ecf15-0e6e-43b3-9bee-d0d18151ead4"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain","enabledBetaFlags":["b5387b81","d5bdd5d0"]},"Session Attribution":{},"S2S":{"facebookCapiEnabled":true,"source":"trekkie-storefront-renderer","apiClientId":580111}}
    );

    var loaded = false;
    trekkie.ready(function() {
      if (loaded) return;
      loaded = true;

      window.ShopifyAnalytics.lib = window.trekkie;

      var originalDocumentWrite = document.write;
      document.write = customDocumentWrite;
      try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
      document.write = originalDocumentWrite;

      window.ShopifyAnalytics.lib.page(null,{"pageType":"home","requestId":"c70e56c3-7164-42cf-adfd-212b52d1e016-1776084616","shopifyEmitted":true});

      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
      var token = match? match[1]: undefined;
      if (!hasLoggedConversion(token)) {
        setCookieIfConversion(token);
        
      }
    });

    var eventsListenerScript = document.createElement('script');
    eventsListenerScript.async = true;
    eventsListenerScript.src = "//hudabeauty.com/cdn/shopifycloud/storefront/assets/shop_events_listener-3da45d37.js";
    document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
})();</script>
<script
  defer
 src="https://hudabeauty.com/cdn/shopifycloud/perf-kit/shopify-perf-kit-3.3.1.min.js"
  data-application="storefront-renderer"
  data-shop-id="95989629206"
  data-render-region="gcp-europe-west1"
  data-page-type="index"
  data-theme-instance-id="186067484950"
  data-theme-name="Dawn"
  data-theme-version="15.2.0"
  data-monorail-region="shop_domain"
  data-resource-timing-sampling-rate="10"
  data-shs="true"
  data-shs-beacon="true"
  data-shs-export-with-fetch="true"
  data-shs-logs-sample-rate="1"
  data-shs-beacon-endpoint="https://hudabeauty.com/api/collect"
></script>
<script>window.ShopifyAnalytics = window.ShopifyAnalytics || {};window.ShopifyAnalytics.performance = window.ShopifyAnalytics.performance || {};(function () {const LONG_FRAME_THRESHOLD = 50;const longAnimationFrames = [];let activeRafId = null;function collectLongFrames() {let previousTime = null;function rafMonitor(now) {if (activeRafId === null) {return;}const delta = now - previousTime;if (delta > LONG_FRAME_THRESHOLD) {longAnimationFrames.push({startTime: previousTime,endTime: now,});}previousTime = now;activeRafId = requestAnimationFrame(rafMonitor);}previousTime = performance.now();activeRafId = requestAnimationFrame(rafMonitor);}if (!PerformanceObserver.supportedEntryTypes.includes('long-animation-frame')) {collectLongFrames();const timeoutId = setTimeout(() => {cancelAnimationFrame(activeRafId);}, 10_000);window.ShopifyAnalytics.performance.getLongAnimationFrames = function(stopCollection = false) {if (stopCollection) {clearTimeout(timeoutId);cancelAnimationFrame(activeRafId);}return longAnimationFrames;};}})();</script></head>

  <body
    class="gradient animate--hover-default"
    
      data-page-type="index"
    
  >
    <!-- Google Tag Manager (noscript) -->
<noscript>
  
  <iframe
    src="https://www.googletagmanager.com/ns.html?id=GTM-NF5885ZB"
    height="0"
    width="0"
    style="display:none;visibility:hidden"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
    <a class="skip-to-content-link button visually-hidden" href="#MainContent">
      Skip to content
    </a><section id="shopify-section-cart-drawer" class="shopify-section section">

<link href="//hudabeauty.com/cdn/shop/t/162/assets/quantity-popover.css?v=38940397011286639321775984106" rel="stylesheet" type="text/css" media="all" />
<link href="//hudabeauty.com/cdn/shop/t/162/assets/component-card.css?v=183669816822881184091775984104" rel="stylesheet" type="text/css" media="all" />

<script src="//hudabeauty.com/cdn/shop/t/162/assets/cart.js?v=149872908630389171351775984106" defer="defer"></script>
<script src="//hudabeauty.com/cdn/shop/t/162/assets/quantity-popover.js?v=35197131797408944011775984107" defer="defer"></script>

<style>
  .drawer {
    visibility: hidden;
  }
</style>














  
    
      
    
      
    

    
    
    
    
    
    
    

    
    
    

    
    
      
      
    

    
    

    

    

    

    
    
  
    

    
    
    
    
    
    
    
      

<script>
  window.hbGiftPickerConfig = Object.assign({}, window.hbGiftPickerConfig, {
    enabled: true,
    legacyPropertyValue: "GWP-SELECTED-GIFT-BOX",
    validationRules: {
      excludedProductIds: [
  
  ],
      excludeCompareAtPriceItems: false,
      compareAtVariantIds: [
  
  ]
    },
    campaigns: [
      {
        id: "gift_campaign_epzqjd",
        propertyValue: "GWP-SELECTED-GIFT-gift_campaign_epzqjd",
        goalCount: 1,
        triggerProductIds: [
      
      ],
        ignorePriceThresholdWhenTriggered: false,
        thresholdsCents: {
          USD: 10000,
          AED: 40500,
          AUD: 17000,
          CAD: 15500,
          EUR: 10500,
          GBP: 9000,
          QAR: 39500,
          SAR: 45500
        }
      }
    ]
  });
</script>

<cart-drawer class="drawer is-empty">
  <div id="CartDrawer" class="cart-drawer">
    <div id="CartDrawer-Overlay" class="cart-drawer__overlay"></div>
    <div
      class="drawer__inner gradient"
      role="dialog"
      aria-modal="true"
      aria-label="Your Bag"
      tabindex="-1"
    >
      <div class="drawer__header">
        <div class="h4">YOUR BAG (0)</div>
        <button
          class="drawer__close"
          type="button"
          onclick="this.closest('cart-drawer').close()"
          aria-label="Close"
        >
          <span class="svg-wrapper hide-on-desktop"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewbox="0 0 20 19" fill="none">
  <path d="M18.9999 0.5L1.25488 18.245L18.9999 0.5Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
  <path d="M18.745 18.245L1 0.5L18.745 18.245Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
</svg></span>
          <span class="svg-wrapper hide-on-mobile"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none">
<path d="M18 6L6 18M6 6L18 18" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg></span>
        </button>
      </div>
      <div class="free-shipping-box">
          


















  

  
  
  
  
  
  
  
    
  

  
  
  
  
  
  
  

  
  
  

  
    
  
    
















  
  
  

  

  
  
  
  
  
  

  
    
      
      
      
      
      
      
      
    
  

  

  
  

  
  
  

  

  
  
  
  
  
  

  

  

  
  





<link href="//hudabeauty.com/cdn/shop/t/162/assets/component-cart-progress-bar.css?v=94942289323692959551775984106" rel="stylesheet" type="text/css" media="all" />

<div class="progress-bar-v2"><p class="progress-bar-v2__status">
    
      Add €48,00 to unlock free shipping
    
  </p><div class="progress-bar-v2__bar-area">
    <div class="progress-bar-v2__track">
      <div
        class="progress-bar-v2__fill"
        style="transform: scaleX(0.0);"
      ></div>
    </div><div class="progress-bar-v2__milestones">
      
      
        
        
        
        

        
        
        

        
        
        
        
        
        

        
        
        
        
        
        
        

        <div
          class="progress-bar-v2__milestone"
          style="left: 45%;"
          
        >
          <div class="progress-bar-v2__icon">
            
              <span class="svg-wrapper"><svg aria-hidden="true" width="33" height="33" viewbox="0 0 33 33" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<circle cx="16.5" cy="16.5" r="15.5" fill="white"/>
<circle cx="16.5" cy="16.5" r="15.5" fill="url(#pattern0_673_8251)"/>
<circle cx="16.5" cy="16.5" r="15.5" stroke="#EB3986" stroke-width="2"/>
<defs>
<pattern id="pattern0_673_8251" patterncontentunits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image0_673_8251" transform="translate(0.168772 0.134848) scale(0.00140115)"/>
</pattern>
<image id="image0_673_8251" width="480" height="480" preserveaspectratio="none" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAeAAAAHgCAYAAAB91L6VAAAACXBIWXMAABCcAAAQnAEmzTo0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAACl8SURBVHgB7d3BchvXlf/xc7ohGx4nZaTqL5leGd5pJ2zsUN4IWc1/J72B6CdItrYnRascStuZJ7D0BvLyvzK0iTXJBtopK0GLf5kSp2qQmskEjok+c04DlChbsiQSZN/b+H5SNCmIcmiK3b++5957rggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHIkKftaDwXbv7TNvd+flvFvOq15VWLdU68bvmXa6Nl98DLRJVcyn5byYxsdFR2c/mM7cVHoy+2B0bSYAjq0j+Fndbrcn8x96HSl6Vkq/UL8FadGL31Ozd6TQngAt05FyYqU9jI/nc5l2Cpn6tTCZTWcRygQwsAKMgJe+27zh4WqDeKtfMLnk356hADjEpio6rUxHldm9UnV89u6nIwHw2tY6gCN0O7LfNyn6qnrBQ3fDh7Ub8Xt+k/HXpS8ADvPRr81MdOI3j1013a10fs/nY6ZW6fR//vH9iDI18GrWugTdqQO2vKRqQ//lcPE4sngmMQHwHF2/Rrp+ldSVIlN/fJViYmITn46ZeJl6TJkaeDVrNwKOUa/q/EopepkSM7BafkOZ+LuxB/O9/aq4GQu3PhhfmwqAn1iLAF6sZH6jb6r9ooy5XTnvI9zzSokZWDHzsNVdf7/rw+ORj4wfqlSTs3d/PxIAz1iLEnSsZJ5LNfBRr4evbcVrrD4DTkK9K8Df9Lyq9FXUR8PFPX9tJACe0eocWiyy8lGu2jcCoDFRmjaTm/uit967++lEALQ3gPc2vxyaloPC9ILPR20JgAbVpem7YnI3Qrjrc8O/Ym4Ya669JeiiGKrZJVMZCoCGRWnaNlX1fMfkzqzbnfiLBDDWWutGwI83d7Z87ukqK5yBNB1eKX32j59/IcCaalUAR/gWhVyqTIescAZSdXildHVtXzoT5oWxjlpVgo6Rr4dvn/AFUvZ0pbRPFd3pVPsjWYyKgbXSihEwZWcgT/XqaJHbYvo1PaWxbrIfAcdqZx/6Xoi+zeztBfJiYjEaHkQSPxhsj+kjjXVSSO6KYuiX8YCyM5Cjuhwd1++V+ujPqXC+NtZGtiPgJ002zLYFQMa05xWs3hm1b8q3zvybv/CvAqyBbEfApcp5UbssAFohytGFlRcefXT9igBrIOMS9DwOU+BCBVpDe5X6dFKhPFhjLWS5bmnv450v/HH5EquegZYy/c2+CPuD0Wp5joA9fFW0LwBayi51ZL8vQItlughLhyYAWkttaFY8FKDFsipBx+KMmB9STjcCWk9Nb/qD9i0adKCtsilBPxhs96ysz/YdCIB1wE4HtFo2ARyb9EuR9zW65gBoPdOKnQ5otWwCuFNUW9HxSgCsibpBR39v88YwGu8I0DLZLMLy+aDo97whANaKSdUvC5kK0DI5bUPy0a8RwMCa0UL6WlU9AVommxGw1YctcN4RsHZMLpkUEwFaJvkR8OMPtzcef7jD3C+wpky0r6LvMw+MtsmgBP3GhpSsfAbWldZnfevi9DOgRZIPYFPt+5d5SQCsLdOqL0U1FKBFkg9gLayn4hcfAAAtkn4JWj2A61EwAADtkfwqaLXiHVPmfoB1Vi/EMo5gQbvkeRwhAACZI4ABAGhA0gFc7/tToQMOsOZUYjGm9gVokcRHwPs+76MEMACgdZIO4FKKvqkRwACA1smmF3SKfHR+00Runb376UiAzD3e3NlSlav+kz2U5NRHE/IwjlZhERYAAA0ggAEAaAABDABAAwhgAAAaQAADANAAAhgAgAYQwAAANIAABgCgAQQwAAANIIABAGgAAQwAQAMIYAAAGkAAAwDQAAIYAIAGEMAAADSAAAYAoAEEMAAADSCAAQBoQEcAIBOPPrp+RVqkKubTcl5M52UxPXjtvbufTgRrgQAGkA0t9LK0SEfKiZX20G/Ek0MvTwRrgQAGkA1V25KWUf+fiD359d7F6/Hrqb8+rUxHldm9UnV89u6nI0GrEMAAkBztmljPs3lQqmyoyYXHF/8wUNVdqard/57tj6Unsw9G12aCbBHAAJCeboSwj40H8QvzBC6kmPhAeWxFca/b7U5m01nMGxPAGSOAASADXqTuS7yZXumobb/91pvjx5s3xnORa7PZbPrB+NpUkBW2IQFAhnxQvOH/GHTErr7dfePK3uaXQ0FWGAEDQI5iblj8TaWnomPT4p6/OhJkgwAGgIwdLk3vXdy5NBf72qy8zX7i9BHAANASJtovRS/5R+94SfrOvnQmBHG6CGAAaAmtR8PWU9WBl6S1U+2PhMYeyWIRFgC0ivaiLK2mV1XL3+59vPOFIEmMgAGghepGHqIRxBIrpClHp4cRMAC0knoAW1+imUdRDDuy3xckhQAGgNZ6Wo4WLS/vbd4YCpJBCRoAWm5RjvaRsIp8t3lj0p3Npr+ic1bjGAEDQOtpHcCev1d81NWfdbs9QeMIYABYC8tytNpX0b7SR8J9QaMIYABYI8tjDjcjhAWNIoABYK3Uq6M3VWVL0CgCGADWzqIcHU06OEWpOQQwAKwrk0um5YD54GYQwACwtnRYmF7oLE5UwikjgAFgjZlWV2JldIyCHwy22Z50ighgAFhr2o2V0bEq+hfdzkBwaghgAFhv3ViUFauiTZUAPkUEMABArJ4HLq4+3rzxleBUEMAAgJqabPg/Bo8/3PG37Q3BiSKAAQALKhsahzaU/iZvEMAnjAAGADyjUN3WUi+zP/hkEcAAgGfQL/p0EMAAgB+hX/RpIIABAM+x6Bcdq6IffXT9imDlCGAAwIupDYpCLsTKaMFKEcAAgBeqV0XrwcporFJHAAD4WTYsVOPUpNFsNpt+ML42FRwbI2AAwEvQL/okEMAAgJehX/QJIIABAK+EftGrRQADAF4Z/aJXhwAGALw6+kWvDKugAWTj7LefqWQu+it3opSr9o1kLPpFWyk3/b9n+t7dTyeC18YIGABOUXc2m+6LTHxGdaT1+zzRL/r4CGAAOEW/Gl9bjBhV7niITSRb9Is+LgIYABqwXxU352Jfx0hYskW/6OMggAGgAdFRyszGyxCOzlIzyRX9oo+EAAaABkQ7x9lsf2xW3lZRD2DLNoDpF300BDAANOSD5XywmX6iVtyWrNX9ordjlfeDwXZP8FIEMAA0LFZFV2r3Mp8Ppl/0ayKAAaBhMQpWm49jZbTki37Rr4kABoAE/LfPB8fK6BgFW9b7g+kX/aoIYABIQS8WRs+msSpaRcbLldFZol/0qyGAASABH4yuzWJRVqyK9mHkeLEyOlP0i34lBDAAJCTmg/dFb8XKaMlcrIrWUi/HymjBTxDAAJAY+kWvBwIYABJDv+j1QAADQKLoF91uBDAAJIp+0e1GAANAougX3W4EMAAkjH7R7UUAA0AG6BfdPgQwAGSAftHtQwADQCboF90uBDAA5IJ+0a1CAANAJugX3S4EMABkhn7R7UAAA0CG6BedPwIYADJEv+j8EcAAkDH6ReeLAAaAjNEvOl8EMABkjH7R+SKAASBz9IvOEwEMAC1Bv+i8EMAA0BL0i84LAQwALUK/6HwQwADQJvSLzgYBDAAtQr/ofBDAANBC9ItOHwEMAC1Fv+i0EcAA0FL0i05bRwAgE483d7YER7KcC54sVhfnqO4X3YtV0VbZ1+/+6bPMG44QwAAyoqqXBa/PLMJrQ6KUGw0fc7boFz15/OHO5NyfPx9LxghgADlZm5NyVkt/9D5fy37REynlodTbrPJFAAMAMlP3ix58t3ljFHueY9uVZIhFWACAzCz6RavOr7z15pnzkikCGACQm7pfdCl62UfCBDAAAKdLh7EwL9fV8QQwACBnfQ+yS5IhFmEBADJmfdFo1JEfRsAAgIzVDTr60aDj0UfXs9qmxggYAJA9larvQ8qsRsKMgAEA2VNVL0UbAQwAwGmKMnRh5YW9zRtDyQQBDABoBVMvQ4tlsyKaAAYAtIKJRhl6KJkggAEAraD1UYs6/G7zRv/BYDv5+WACGADQKuW86r195u2uJI4ABgC0ipZFb17OCWAAAE6TiVwtKhtI4mjEAQBolVyacjACBgC0Si5NOQhgAECrRFMOteIdSRwBDABoHVXppr4ViQAGALSOj4K7jgAGAOA0qWmvUzfmSBcBDABAAwhgAAAaQAADAFrH1HoW+4ETRgADANAAAhgAgAYQwAAANIAABgCgAQQwAAANIIABAGgAAQwAQAMIYAAAGkAAAwDQAAIYAIAGEMAAADSAAAYAoAEdAYBs2EiQBBPtq1hPRJM+9D5lBDCAfKjcESRBzZYhLATwERHAALJx9o+ffyFIwuPNnS1Vuewf9gVHwhwwAAANIIABAGgAAQwAQAMIYAAAGkAAAwDQAAIYAIAGEMAAADSAAAYAoAEEMAAADSCAAQBoAAEMAEADCGAAABpAAAMA0AACGACABhDAAAA0gAAGAKABBDAAAA0ggAEAaAABDABAAwhgAAAaQAADANAAAhgAgAYQwAAANIAABgCgAQQwAAANIIABAGgAAQwAQAMIYAAAGkAAAwDQAAIYAIAGEMAAADSAAAYAoAEEMAAADSCAAQBoAAEMAEADCGAAABpAAAMA0AACGACABnQEa+vBYLvX7XZ7naLaevKiySX/Z09Fe4tfmr9ffHxARSaHf+2fM/V3U7NiomIT//VDlWKy75/33t1PJwJk6LvNG/1yXvW0LHpSVEMxfcdMe6pVX5bXiIn0n/1TNvXXp8+84tfEk4+5RnAIAbwGHgy3uzKV7i+6nUGlZU/N4ubxvqp0/UbQ9TvE4OBzTbTvAbt4vabdH//7FqF8mPrnS0/UXzfrq+pUTaYdtene5vWpafVXv3lNrdJpVei4O5tNfzW+NhUgEf/pD6OzeBiV/b4UxYaZbXhQvi+dous/y10z6Xv4dv1n3H/WPYSfXCP6o39TXAvPXh9xTT397WevkTNqu48v/uFRXB+i1a7sF7vn/vz5WLAWCOB14OEbI914ii/9prJ8ah/ak0/Qn/3op7T3k1eefLD4yNSe/EbhT/r1KKDQif/ATf1GN6m/KiARi/CVCN+hml7wB9TB4jrxn9z6R9pfUfvRn3ruNdL98UOrxsPpMy8cvkZs6teHP6TGKLkcW2n3/EUCeE0QwC11UF4uRbb9qXvgT/ODuJOYnL76RqYxsq7/37c6ftP5j4sxMrZbVskkSnFn7346EuCURHm58Osi3vy62JaDK+PUr5G6jB3TPH3/xdBHxuLXxraPwP2htZiIVHdkLmNGxe1EALdEBO4v33rTS2fzDVMdqBXvRLnLL27/WDZ+dkB76pZlOp9vLlQv+Pupl+EGccPRfZtws8FJ2Nv8cvhMeTmuC6nfkhLXhl/Dff9osRajIxf8+vCRuY1Vy93/+vv3ux8whdMKBHBLxGh3Lna+KIpBYXrVdLF4alk9S81BmW5RBvcnhChT+9zYqCrljlCCw0n4cXk50Ytjed0elK0HT8rUhd2am4z9Wp8JUzitQABn7Nkymm3XLz4poaV4Y3mxZZl6y7/qrSjB+Utjf4i4d/aPn38hwBHtfbzzxWJlvw7jh6yJKZjjW5apvVReeBiXKlP/77olVTU6e/f3I0G2COAMRfDWqzXVLqdaRjuO5dan8/5Bz0tvvxMp7/uT/322a+BVRKnZayr9WOnvD6aX/H0/z+B9nqfTN6qdd2PqJkrT+9JhO1OGCOAMLbdKxBP979Itox1Hvcq6DuFC4uZptzuiUXabCPAydam53s8+jGujPeFbOzR9Uw0OStOdan8kXB/ZIYAzsRj1Sl/Vvlo8Af90K1AbLbdM+YOG/e7x5o2b81gVKsWIp30cFteH6vxKKepVIS83r4WnpWnR4rf1zgLTT2jukQ8COAN1SS22EpleWJZnu7KO/HvQiWYIYu8/GGz/m996Zh+Mrs0Ea+uZ6RgpzscDW9vqQa9mWZpWudyx6i9+z7jP/HD6COAc1CU1u2S6KKmtK40VoWoxt7fZ7XZvzaazWAlKAK+xZ6ZjZJ2vjkVp2v/7r/hoOBYwxrqQkSBpBHCi1rOk9ioWZbczat+ceevN8d7HO6yUXjNPephr9VXdOtV+3I95fS2nbPp+z7iyd3HnkpncOnf385uCJBHAiTno29wRu+pD38H6ltR+3jMrpTd3tqSQ8bk/0sCj7SJ8336ru+kVoV8v+pbXPweCn1r2df/nxxf/0Pvb33+4yZRNegjg1Cz7Nqvalh10wsFzPF0pHT16rapfJIBbrr42PHxVZUvq0R7h+yJa7623XiFFTNncZsomPQRwQvY2bwz9ookuVls5NtNojg49hAfRwOMH09/MZrMprfraqaP2IN63bGvRCWLKJmWFoHGPP9zeePzhzmAZvgPBESxWgUbpPkqUUaoUALW6v3RMZ5leiF0VscZE0DhGwEl4Y0NKGcTIV3BUi1WgUZo0i1LlfaFfLrAUUzbWr98XxZDGHWlgBNywx5s3vvK62leq+pXg2BY9pe13UXKLp3xGwsCBuhzdXzbu2K77ZKNRSY+ArdKpFjJLdSo09trNKxk8+uj6a9/ktYhN87GC0xI8LjB3B+VoufqLt97c9b+fR4KX8ofAX/v3jVX3a6Duj+2VIr82rsgRebXpQn20o/ITc1RJB3BReACLzCzRJRf+VW3U59n6D6K8Jq1vdEX/6bFoWKEn5eg42FyLONgcL2PxMCjsqV0Hi/3C2tdCJ3JkVZxg1qqDYE4bc8DHsOzMdMRFU61rEp+c5RGHfb7TwPPpsdadaOpjh8lcipEkLOk5YJtXU1P2rQEA2ifpAJ6XxdRjmAAGALRO0gFcH6llbCUBALwmz47Uj2VMfhuSFnEQuxHCAIBWST6AK5t/71P9BDAAoFXSb8RhOjWxiQAA8Eps5LnxUBKXfACb6lSVlmkAgFcVVdPi75K45AO4sLmPgCX5JxkAQBosKqeVfS+JSz6A96UzkSrtzdQAgHSoyK2q0OTPB08+gLuz2XS/PrXDOEwaAPBSkRmRHZK4bLoQ/8fF6w+iwf7iWC0AAJ7v7LefZZFt2RxHWJmOTI7TOBwA0GYmMvb535uSiYwC2O75I82uAADwHJERkRWSiWwCuFQdqykBDAB4rsiIyArJRDYBfPbup6NKqjuxwVoAAHiG1RkRWSGZyCaAg0o1EZ8LFgAADvNsqDMiIx3JSOwJXnzBHLAOADhM79R9IzKSzTakw/Yu7nxjon3/4vsCAFhbsfLZR7/jc3c//UQyk9UI+MBc7OtS9J+FAD4B0fAkFrvZbt1P1WSmojPTHx8JqV016frrPTPbENUNHoiwHp5eI2rFxDQaBNkzTYLUtGdiXR/idD0g+n6t+DXib1i5WPk8z2jl82FZBrBZedt/wt/3D/+vYKWWRz/e95vKPatsYpVOi0Km+/bsHuxyXvWkLCJ8+6p6wf9WBv6n+wK03DPXiMnI9qvpvCyeeUD1G2u/qqSnRTQPKi75g+rAg4IAPgGLlc+Szcrnw7IsQYe9zS+HUhRDLz1sC45Fo9WnxQpCuXPu7uc35Yi+27zRL/xGE2/8vaAdbBqB6wF6S6pqdPbu70dyBA8G271ut9srpRoWIpe8YjQ0KkbHp3btOH8vTctyBBzqBVnV/si0vEx552gieOOs5cpL+qbFRPePd+7ybDab/vKtN+9bVU1Fy3cWo2IZ0D4UOfKAnPjo6m6l1b9rZeNjLfDp+eUxnU3fPvPG2Iq6p/3Ew2Po4d4niI/CpuYPRurhm9vCq8OyHQEfeLx54ytZlHcGgtdkI/8JuHP2j59/ISsWo+GO2FVV2eIGgzzZyEvMt45TFXqeg9Fwp6i2POUv+W14KHgt9cORDx7Ofvv5byRj2Qdw3OhV51dK0cv8IL+KZUnN9JM4MeS9u59O5IRwo0GeTu7B9McWD6r+gKr2jeCVROWukurfzn37L/8qmcuqEcfzRNnTzMaxMpojC19OrbjvT4+3T+W4rii7xf+Hl4k89O/W2wWApC3CN35m5RQ8PW5VbvvbfcFLeVXipvo9X1og+xFwOBhpnfGnSI4s/Hk+p3XTg/DWabdre/TR9Sta6GVV2xIgVQ0t6nm8ubOlGlU8uSL4WfumH8SD/Qfja8mf9/syrQjgA8w7voTpb0667PwiT8rRWn1FExWkJoU5RXZ2vNhiwahXCUy/zqnX88tkX4I+rC5Hq/57lCgoRx8WKwZlcipl5xdZlqNjqkAptSExWp8jK7ekQarlbmU6trokbdmP7lZjce+KOV9/cP9/y3J9a7RqBBwoR/9USisG6yqF2m/9w98JkAqTL87e/eyaNIgq0U+1ZbXzi7RqBBxiXiBKrD94ubUS/aSe01lzGouurEiiT2r83VjdNo5jJZGI+h4xvyMNO7h3xUhcWbAo9T3C7Fpbwze0LoAPRLmzjFJnvZrRRtqy0sWripXHc5GHs6ZKz8/BsZJISZR9o/wriZj79aGma1qCrkvv9w/2YHtCtfpBJNtOWC+zXCFX/2Xufbwz9FGXrGWv4ri5VDZJacUgx0oiJRHA/5PQA6rflic/PfxkPRzus33u29U2QElRawP4sNhQv75NIao7ammN/mM07n8XkzOLVpjM06MRB8fYNbEr4OfE17O3+eXXUhR/XZ8V0Yv91//nFJqfpGQtAri27MX6i25nVB8lpjqOXsVt78Ua5SwpO2k9TS//LjpvvRHHunUFwNo56EXvH/mDkP3F39Zud8TaBPAHo2uxJSneRj4aHi9Gw7bV/tJ0Z5LS/G84+LvYu7gTWwx6rVuKD+Cl6vD1Ue9+pTdnsx9a0Vjjda3PCPiQQ/PDXxw+JsxHw+/Xy//p1nQqzIo4EYbyMxqxGIFVja9+fp7FaW/iZVlrQQl62X/eA1e1bqjx8OyalZpfZC0D+BmHjgnbL+eToirvaSlTNe1ZHQ7W86Do+oXQrT97SRdzl/Fa0iXUevTbS7MhiT/oxKEQM//eCoCnynk5M/lhqp3k60N+b7Hl/UX9a67vNVOfu56pVv5xLKrSaKTx0F+bVv7rwuY0GVla+wA+VJp+stz9u80b/vF+v7Sir4X0PWzf8aDo+Q9U/+BzFnPHT0I4WUmXddT+qvXFSxEaOOxvP/xt5pW5aSf5nQI2W65cjpKyj3RlGpWteLj2y/qvVnmZeS7jc3/+F/Y1Pwcj4OdYroqcvOzzOGCg9W6b2derPg92Xext3vBpHblqXB+vrV6jkvjiUIuDXSr5+t0/fXZbcCStbcRxGrSMMkva+/VijvvBcDvNUbrpO3V5P1HRDKFeRY4jsXk1NU26H3s31TUIZ3zKq6rSXh8R9764BwqOjAA+BrX9mL/8qyQsnqR9RibJkIuy/nJuPUmLZgidieBI5mUxfTo/mCLrqqa5B73a96+tSHyBYkwhxT0QR0YAH4PNi6mXYCaSsChj1SGcoELNS5TWFwDZiXtf3AMFR0YAH0PR0ZlVafdsNan6ZVElGcCpL2JTWRyhKDiS+N5p0keC6oZPM1yQBM3LqhfbIgWtRgAfww+ms6JIO4DrVdxVmgG8bEGZbgnaZLaOzQFWJb538T2UZNmG/2MgCSqqshc9CQStxirolvMn/KuV1g8JI0nE4w93BlKmeeM7EE0aKq2Snt/Pgfn3sJBikma7V+1FJ7ZYrR0HvafUE7oo5IIkvnp8LsVo9gMVouNgBHwM9Wb5eZV4Cdp6fgN897vNG31JRafaUE2z9Hcg9jR2pPi74Fjie2iS9k6BudlAbb4hiagfUFWT+XpwcgjgY4jN8ouVninzMq/pRlJ7Cq3YiIMwJG3TfbPvBcey/B4mfY0U/jCo9c9kIurqkBHAa4AS9DEc9JTeu3hdUlY9XW08koY93tzZ8tHvZf9wKAmLbj5WreeZrOsmVuNbIZPogJdCGdqvj68kA6kd45gjAnglbJpyX+joWx0LOurSlvxj99yfr+1KQ6L0bGZRgha0n6lOPeAmlnBHxeVq/PP+qDr0X96Uhvz/i9fPd+ZyXrA2KEGvwKIXasoNBzSO/OsvSltvNFzaMua31kg03o/TbyRpcfCKnC+luCQNivCN1raCtUEAr0Acs2WS9nak4HNd21rq5SYWZEXpee/izjd+sxtq4j1uF6o7anFYOI4jjtWTqhhJ4vxnchA93fc+3vlib/PLoZyyWIldZtJX3h+oxtEHWnBsBPBK6NgnDRsr676qutSmstkRu3qaPaLrQyu0+HVO+xqjB3T6C+zSl8NOgcOiMYdpuXlaIfyffh3GA/Hy0IrUFybW/MF06tNaE8GxMQe8Aj6nec/nNPuSvGh8YZv+tZ7vdru34hxkOYVORVFW8/Af5DHyPdCZ0AXr+PI5Vu+JQYxKrKgPCRnJCZstTz3K6sQon9f3e17i0wp5IIBXIDak+w0m6X2tTy2aD5xR++ZM942Rl4bvnMRxe/VTvc6vlBJzWjaUTER5TUyTWA3bBk93CuyMogKS+kPYsmFI338Grng52mciqtHZu78fyQmIcrdYdSmmZSQvk7jnCY6NAF6BGCn98p+6u5XPGeYyyotytH+t5+Np38ttk5irW0XoRPB2ZL/vdSoP3uJ83NByWu8c5TWRtA/YyFM9TdOVLCpFSyaXVDvvPr74h8Hcyttdv85/dczWpHF9lBornefn63+/aD+b2oAsHlArkYdUh1aDAF6BeMr3keQj1bhxa1+yECs/7bzfADa8RvywU+2PZAXBU4dvUQz9Sv1d/f8imaG8diLymaY5TIcmlZekizhUYuzl4okcs6nIoiGO/bNKcSUeTnMK35pXh7SyCT3SV4MAXhGNg9u1uOPBM5RsLMrRflFt+9f+2/+4eH1amY58JH+vVB2fvfvp6GX/hniiL9QG8Vb/e0J2d5VnUF47AXlN0xy2vEZ8ysa//uniGrFr/h80Pvfnz8c/9ydjoWMcBdopqq3lqUsDWx6/me8lErsDqBCtCgG8Iqrl7txknO+ycu0uV0kPvES24RfZhSi9Pflte7rN6plj0tT/jEns681+b6/fFCeF6u7s75TXVi3HaZqfWlwjdSe3jv56b/P6bhw2Ef2uo+VmHE1alPLu8nrwe4LE53f91x688Vrd8ENyFrsDpOxwfawIAbwi//X373f9aXfmI0HJVDduMLo8ns3L0xKn2Bz8pv96cuhzh8/8SX3yj6zF1oqqskeU11Yvz2man+guO95dqR/XVOprZO4jY//vmkqhk3q1vy6voSd/TH/0PmfsDlglAnhFclvt+SqePUJO+9J2Kl5e8yd8nIg8p2l+3uIaWQSr5vvw/crYHbBaBPDKZbjaEzWf/x6XPpUgOBH5T9Osrzgf22i+sXIE8IrludoTIQL4fyivnZgWTNOsrTp8vUIkWCkCeMXyXe25vmi+cToOpmkeb964KVp3Rsui9SIkFoGMzn772TXBSlENWrFYoBCjYP/wtiALWm89qni6PyXxvVaaneTktpf2/iJYOQJ4xeqn/HmcFmJfC3IxEfb+nqL6ez0RZCHuZVbJfcHKUYI+AX/74R+TbhkN6KvWrIhuqzhWzSq7896fKD+flij1P/ro+h0ttJfD8XvrK0490unZE+gVjwVGwCehF5XoWMyTxzGF68zD9+v9kqf70xZnLVP2T5tacd+YSjtRjIBPwAeja3HE3+zx5g4rohP37p8+4wbTgIMqUe59S1vuvpgylXaCGAGfoDjmbzEXbCNBYvzvRI1VnQ2JtRJRivbr4xNhlJUgG1VeoXiVfvA4OgL4hNXdf0xHgoTE3FZxP856FTSq7i0suht/J4J0+D2rvnfhRFGCPmFxzu7im0ypLRWxsKSS+V/OndBB63gdnUmsk9A4BjJWTyAReifuXYIT1Ybu4FnY+3jniziAO84YFTTL9Df7IhMab6Th8Yc7Ayll4CH8laBRcSJYHEpy9tvPfyM4cZSgT0m0OfRvd6wqnAgasWj+YKMI3y4tJxPyj93YOx9/NzToaM7iOE4bmcktwamgBH1KIoBN5/1S9PxanCyUoIN+tu99y8g3Jef+fC226u16leiOWUzVaF9w6hbHccqdc+z7PTWUoE/Rg8F2r9vt9s6ofWOLw7mZ8zo1iyd7bi5pe/TR9Sta6GUadJymRcONH3xqJvoXcB726aEEfZqWDTo8CG5KHACAU2CxuGdSl9UKvuepO2jQsZiqYWX0aThouFE3D/J7lODUUII+RQcNOr7bvHGrs1jxORScKPMn+3pRCSPfLBw06FCpri7buFIlOnl1ww1GvqePEnRDWPl58nQx8r25L3qLFc958YfUfkfsqqpsGb3UTw47AhpFCboxrPw8aVFWq1TuzVjxnJ16qkb135fTNVgxdgSkgRFww9gffIJ4us/awaLFjtoDwYpFK1a5c/aPn38haAwB3LAotRVqg3jzwNgWHJvGEYMit+hj2w6PN3e2fKrmsn94RXBsyyM4v+YgkuaxCKthUWr75Vtv3reqmooWl1S0z5zXkcz81jJTK25HE/m5FBNBO/hUjZUmHsIT/zve8kesrr/aFbyuOHbzPkdwpoMRcEIoRx/HYi+jP91/Qtm5fdhDvxK343Q29sKngwBODPNeR0GTjXURUzaq8yulREmaB9WX48E0ZZSgUxPNOqaz6S/eevNf/eIZ+CsDnvZfwGTXVHaFJhtrI6Zsut3OeO5Dh1Lqk62YsnmhaGSid/3h9C6rndPECDhR7IN8OYtuYqbjc3c//USwNp5UiYpqiymbF2MffPoI4IRxo/kZatekqkZnOdN3re1tfjmUohiyg+ApjhTMByXolC3L0f/01ptjNeuqxkkxdUl6TVeB+nyWFYuVnDYfcWA44megU+2PRMt3/Jfn/Qo5r+tZMap3Afj7sZflxz7yvSdIHiPgDBzeK6ymV9d1FWhdUhO5HX1r2eOLw1ictVxspXaLylA+CODMrFvjjrplntmoEs4pxauJxh2F+JSN6nAt1k8wHZMtStCZebZxh5fdTDb8Atxo11N/vXpz19/vVmJfmxYT3beJAK8iGncU9bF6E782hv6z5NdHfY20qGpkI/Xrwiq/Lqy6w3RMnhgBZ6yto+Hl4RRjL6fdo1ctjuLwAkaftrngLw1aNRpm1NsKBHBLRBiLVMNSikuq0a4vL4QuTkp7dhPYaB4VIStvs62oHShBt0SUpt8+80YE2FRLmfpTf88/7sVTv9Zlan9Lx+EVm1MfvU8rnd9T9bJzVe0KsEoHzW26nVE9taE6Xl4fG359bKhYP72dBTY1vzZiO9FBqdm/1of+AHF/9j0NNdqCEXALLUbD+30fDfv74pLE6ul6+1Iqnq7YtCr2LBYTVjXjNDwZDfuD6dxi+kYv+BTOMLWdBQd7eePIQErN7UUAr4GDm07pJWoPvvf9ybp/mmXqw+VlqYoRPWmRmmfmjEXeN4v54tMoVR96GDWrq0Gs9l8flKDXwbIEFyXq/XI+KaryXpSpD367LseJdT0pvQTnZWsr/GPr1n/y4HMWI4Rlma5epTyzupQscdOYqVaz5WfG+5n/O/2msig1V1I9PCgv7/tol560SM6hMvVcy56a9VSjv7h2fQqnG9M5B5/6o8VcPV1cE93lCPpgekVedI0cTLssPkV2/fp4pJWNK/+copKZYG0wAl5TizL1QpTjqspvOEW8+c3F9B3zUPYbxpPPWTS9X5TpFg0xIoRl6mHtc1T+sdpf4/MOnuKjrGzzajoviymjXeQorpFyXvW0LPwB9em1UE/rLC2vEb8mtLcI5sWINn7vhdfIctolPqYaBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcva/GZ68JTgPbQEAAAAASUVORK5CYII="/>
</defs>
</svg>
</span>
            
          </div>

          <div class="progress-bar-v2__milestone-text">
            
              <span>Free Shipping</span>
              
                
<span class="progress-bar-v2__threshold">€48</span>
              
            
          </div>
        </div>
        
      
        
        
        
        

        
        
        

        
        
        
        
        
        

        
        
        
        
        
        
        
          
            
          
            
              
              
              
              
              
              
              
        

        <div
          class="progress-bar-v2__milestone"
          style="left: 100%;"
          
        >
          <div class="progress-bar-v2__icon">
            
              <span class="svg-wrapper"><svg aria-hidden="true" width="33" height="33" viewbox="0 0 33 33" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<circle cx="16.5" cy="16.5" r="15.5" fill="white"/>
<circle cx="16.5" cy="16.5" r="15.5" fill="url(#pattern0_673_8253)"/>
<circle cx="16.5" cy="16.5" r="15.5" stroke="#EB3986" stroke-width="2"/>
<defs>
<pattern id="pattern0_673_8253" patterncontentunits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image0_673_8253" transform="translate(0.168772 0.134848) scale(0.00140115)"/>
</pattern>
<image id="image0_673_8253" width="480" height="480" preserveaspectratio="none" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAeAAAAHgCAYAAAB91L6VAAAACXBIWXMAABCcAAAQnAEmzTo0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAACiySURBVHgB7d3Bd1TXle/xvW8VULRfL1ev1RBlvQHlUWtmTdJPzkTK6A3hPwD+AqeHmJeFWWnsYSd/QeA/gNl7IxeTRB1PxEwZuRj0igJvrVRWx+2yUd3de99SgXDASCDpnHPv97MWQgI7kVWn7u+efc7dRwQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4cSpABv64/vno4Ne9eT3UXjWMz+vahlr5L6kmy7/fE3n++Y+3bkwEnXZw/PRFRq/6Z2LMzGaz6Qfbt6cCZIAAxqn489qt4WwwGPZlb7T8M5NqJOrBatX7PhKHL/8bOlCTweKfs4H/vX+tzy+cpvbic6kfP/98Xk3qaj7tzavpvFdNB37B/QcuuEWLcO1VfkNW18O67vnNmJ7z27LzMXYq7Z2zuhkfz8ePj5Phq/53Ysz4BW9m5r+0/ktfqm/2zL61WqeMGaTQF+AULMLXZyZVtbn8Mw/YjUUIv2rG4rH7vdtDv4C+8n+7OjAzrisd96U3sZ497seMZzCIv+NiWrAYN1Y3Y2ekopfUg9f/OCoiI7N6KPpy4L5unDR/Fx90MWbm4oGsPjYqnTBmkAIzYByrr3ymO4iwreprPrgu+Wxj5MNsU5KJWY/PcEzHKjbxWH98cevmXUGWDo4fT8uNNGNnMWZ8rEw8oH3MyGO/sxtHCZvlDhwnAhjvJC6Yf3/+3IrZfMVU116Uk23Nh9fQmpnKq9fkTsnMv5eZiU7UvGytcWGtH6rqri8u7/51trft3+3sg/HtmeDUHRw/vvK/4YE38DEziPHjITiyNGNnOWaiZD1tAtm8yqK2W0v9Jx9H21Z5ubqupgQy3gUlaLyTmK14KW+1qqq1yvSqNeXBKAku7u0yuMMbNOvJImsevs0fePlxzWdXcRF95N//ZDadRbmRAE7g4Pjx1+TWi+KxikkyyzEzfP69NGVtm/rYmVpl96SWSX+xEXAiwFtiBowje7r++aZfjDZ8RrCZtrx8PPzSOonytFh1mzLjyYtNVarzKz3Ry6WPH40ANhvXIg9Z2sBREcA4lKfrv9yUqvJSoa1U1vvQtPbyoI4Sl5ePiU2j3Ogz+LF/sTOv7Q//9d23Y0rTxyuCt9kFrz0PXln1G5/V8sdP7MbXiX8yObi0cWHrF2MB3oASNA6nqjbV9ENfl1vzctwo7t3ac/emsU499P+uax4K21rptpdGtylNH68mfGMXvMnP4+t2jJ9mB/Za/Dq4tOFfjwV4A2bAeK2m1Kx22QfJFWvFTPfwdLG2t+2h/OjCb29+Kngri1mveMnZfmOy3B/QfowfHAYBjJfErtTz586sVqqrfke/IVEq1Hq1KxfOF5rS4q7/vuvB8UCktzM32WF9+M2+2rw1kKkM3hucvdI8tys68jF0JTY2iSyaq7TfgfFjcq822/nm22c7dOHCQZSg8ZLYlSo6X/c7s8sePJuLP+3ifVpzwxEzNr8Ricdh7H5fNMrRE8EPm8YwGgxV66uLysliyaJbXowfjR3UKg/8Z+KBTIMPvMAMGI39TVa+Pqe3BK+ndlvqeswmm1eLZQu/qMTjaNcEB+w399B4hInxgwUCuMNeKhWqfrjfPGNT8ANsrFLt1DL/w9ffPLvLTumFJz+5tSJydqXqVR97yDSbkgQHNc09JDb5MX6wjxJ0l32vVBhrdYI30E2TOna8Tv1nd5+d0ktnV6Qna8x8X2uwvwbO+MFzzIA7ilLhu6MJw8LTn975NF3f5nKxUxoEcMcsmyGo9K9SKnxX0SNYdvyTHZ/V3NuTfqe6aP3HR5+t9ueyWvXs44R9mwv2Yqe0WH27a+MHlKA7Z9kMwYyZ77vTaN6x6uGzIlo97td7Y+nQLukIX62inWSUVXF0L3ZK+3vyYdfGD5gBd8qT9c9/IxqnzDDrPW5dKyc+/ejOF+1pRZoLG/tAekg5ujsI4A548tM7a1I3pwF97CVTn635LxyzbpQTD4ylW9qhzlanQZt+0jap5/rrvZ7s/M/ffbIjaDVK0F3gF0xVuSrNkXyCE9GRcuKLsTTi/v14LdbQvapQ6aQ/b4r6BHDL8Q5qOUqFqbSvnMhYOk2Lxh3/+LtPPhC0FgHcUpQK01qWE9tQjl7udtae/Btj6dQ0jTu8HH2dcnR7UYJuK0qFSS3LiW0oRy93O2snezon0zTuiJ875ej24t3UQux2zk255egn63euqTaPGl0RJBFnVIvp9sWtG9cFrUIAt8iyyYZp79/Y7ZyVHX+j7Twz/ZfBbDb9hwKOpPvz2q3hbDAY9tX+zb9c3f+FFEx2TWVXbf4vNOtoF0rQLbJssuHhy27nrNhKlBPjYHoPtYkUcCRdE76LzVbMfFPzG2l/O6/Ee5tmHe3CZbol6O2cv2ZjlsndPdF7Oc9iGEv5UtO7XpK+d2HrxlhQPGbAhVseKbh/wWTNN2MWO4hV1/vWbKq5LZliLGVt1VP48ldrt7Y5yrB8laBs+0cK7s9WuGhmLR7fsXVVuSYZYyzly7Re9RukK/Gej/e+oGgEcOHeG5y90tf6N4JC6DAeUYqmFrHDWDIS3098X4KMLcbPGbUv3jt/5pqgaARwwZ6u/3JTVT+M7kSCojQdpfy1i9dQMhA76FX0EmOpDLGcUUnvn3IZP3g7BHDJqmrT34prtAYsz+I183XW5jVML3Y8x5m+jKVSxEy4Xs1l/ODtsAu6QF+t3RoOFs9ofiUo2KLfr5le3xNJ8nwnY6lk6ccP3g0z4AKdP3dmVXXO85nF08FiZ7Rd7mmaRheMpZLtjx+xjaYHAIpDABeoUl3tSdMeEGWLfr9DbZpdzJMEMGOpaM348Ru4TZNqJCgOAVyYaJJQSbXhb7xNQSssDm6orjY9vE/Riz7PjKWyaXNNiGuDoCg04iiNlyvFlL68LRO9u6P5RexGPul+0c+btywOWWAstUPToMN/HwuKwQy4MFGujIfxBe2y6Pe7tt8v+mTP291v3iKLPs+MpRZYNugQFIVd0IV48pM7a9KLM36Vphstdhr9ohel5zgrmtJz25jZdZnL9sUvb24LskcJuhDW11HPbMOkrcxLrjrz/77obTv1W/qZar3f51bj9/i7eE514L8P2vq86mJXaywx1Jv+5V05ZnEjV6n+U734WbZIM352/ffdxdeLMeNfD82qgZdno23jUBc/35OtMCTkJc2NeV9j+YIALgABXAiVeiRabUpLNc8zNs81ytQvmBNVv6Cq/CX+zqyOQPaLSrXhF9LlRXQkraRDU1ntWRUBcleOm1dR/AZmtW03MDF+/Lcd/9k9iq+XY0aruNGw98106Dd0o6YDmQextJXqpl8rHgmKQAm6AC92q7ZljWe/gYDaPatlolJNjnq8WmxWWn7eE7nlwRwdwdp1gIDpz467wcL//+izr6wts0C121LX4wtbvxgf9l9ZNh7peYVh2XpTW3bsIkcWloMZcAGafs9mK/67FCzKgTGr2/bA3all/getbVuqarpXH/2A+tls9vzf+buz5x5UlUz8dnLi/x+b0aBApAUnxUSDDtH/J8dwAPuTn9xaETm7sh++Bf9s/ObNqh2J2a7Nx3vSnxzl344j/GbT2fS9M2e393rzSVX3HmkvljxkxX/eK21YFzef6fuHDWFHdPYI4CLYmqfwihTNZvuz3odW740vHmHW8iofvPyYzn1f25z4VPixr2+ulR8yC82Od5k/9k//r7yzsytRfi595rs/hrY8YB5ceIsxtH9+bnMjuPwzr6ZsV15BqdR/PiabUrj9Wf2mZHzmNBYoQRfg6Ueflb336i1KhW8rStOLi6nftJjekuLZ2N+lDy/89uan8g6ern/mZXr5VAplEZim2xe3blyXE9Sq8XMCSxg4XsyAM/YfH3222p8X/Zzmtq9Hbb9VqfAtRWn678+f27G6nor2PpTFc64F/wx1RU0+jLXLKJ/uz+CO5E///FnRz/tas2wh47q2h3LCDo4flf6laI4ihe4tMKlHveroyzs4PQRwxiJ8tYrNV2VOgJvwbTaDnPzMd2m/NN3siH2yfme0v25ecAA365JN44xYu5RF+fRIYgx5kKwWW+7ycRTh+6Pff3JfTtjB8fN0/fMYw7IfwsWJHeBeeZoIskUJOmNPPvrXn1dSfWxFPTKS1xFpbWlgYrGztbYHRwmh0o8a9HE/8fibXPjdzZ9JIsuf4Rm1L0rbPR5NXWqpf33xd//nV4Is0YoyUxEcKtWlxZu+FE34juNNH+E7OLBTOZ3vdqMzUDyaIQU3J4jnwLUno4OPX71JyUcNRvj6OuzYTO5JSrFr2sdxdCfzV2Fr0fCjDHHt8Bv4Hx1lzOB0UYLOVbNjNWa+Jd1x69TD92FOd9wXv7wdnZF2vZx4r+hyourIf7vUX1RDJof5d+KoQZ8FFXnUYMx861oeXty6eVcSWu6a9hC71/cU9tdh1Ypp5OHXDtOVo4wZnC5mwJlq1m+Kmv02ZdLrc+ud+Drd24imBP85m/3LnukHUqBYhrBoxKL1oXbmlnpspTVBYeMoO6cO34NiKeWvs29//cw0WTn8bTTPBFdNW1NkiADOlM9cLhU0+21KvPmUnV9jv5zon8VNwo4UJlpwxjOeUVL8c+yK/gFzszVrGkuUxcf9zlzsgeRof/yUtZyhw8W1BDmiBJ0pr3bFjGdYwi655W7n3J83XJYTn6zfeVDm7ujmYjrcP7JwIvL6R0yq6J4mtlLgLssdy7SKshw/JS1nNOVya+fBJW3ADDhb0VQ9/zdO7M6d1/agpL6zTWnT5r9uGoSUyMvQPXl1WTF27cYMOfobF9cbOxpHmP469xu5GOsme/dKGD9RNVHRkSBLBHBmomdv8+hMIeLRmL1egeVc7e3Wi5n7pKSdrWFxoo9eetXu1vfOnB2JlLbmZ9N4HbJfwjhgOX4kezqI3dCHWbbA6aMEnZ1lz94ynEZzhJPwn998uzsYDGZ9rSelHVGnzVm+OnrV7lZTHfUkGvGX07zFf/7T2PX8461PJlKI5fipNPuf8yBC+DDLFjh9zIAzo716uNgBnbvoUVxoCVcWHY+i1Lln1XVdbMoqSh3N9l+xI7qq5MPSjtfzDLubstnG21iOHzOL3tT5j5+q3uzL3kiQFQI4M6b9gX94XzKnWk3igAUp3KLJgsUB5kWF8Kt2RJfY8zl2FNcqxR4gP5d64v8N2c8qYyd0rT1K0JkhgDNjcxuY5f/4ka/9Tk6zx/NJaXr/zmXbQzjPR19eq9kRPdovLTbjZdHzuawAjt3zZaylvk5/Ypr/HoJ4qkKtrL4CXUAAZ8ZL0HEc2qZkLHY+13W5s5bvu/jlze1F0wcbW2kdgw7siC5p5/PzhhtbN8YlH5cX33s9l4e2eDYYOBI2YeHIYsPMvJq3bjNHNIDoif5vKejwiyhDV5VtPFm/IyWJMeRLLWNpAdN616x61Mv7oethX/WcICvMgHFkJva4N69aF8D7DSCKeqQqytBewt1UlatSELVq4h9P/Hzf02Da2+1p3mV09SWLPanPC7JCAGfGL0zv5378YJRro2wrLdPsat2ze/s7W4uxaNhSTs/nEpu3/JDYyLeX+dKFNY+uVZc4GSkvBHBGoouRz2QGkiuTXSv4SL/DmPeqaexsLbFBRyn85/tQzUvQbbE8spAxgyMigDMSB3+b5BvAprIrRe9YfbPFYQ395iD4aBAhOAHV+Otn302kJaJHdOymZ8zgqNiElZF4pERNh5Z/d53Wah5LEpk+Xf/8tt+dXrXCmlrkrKme+A1cybuef4jFurbm+6hPXFs4GzgvzIBxeKYzLeCZx+MQa3rWzGi4WB0Xv6/cid7h0lLNe8PfIwIcEgGMQ1OtZ34V/Yt0QLMhS+xx87gMjstOqb3DD8XfG817BDgkAhhHoFOruzMj/Hr23f3oFS14Z21r3vIqi/cGa8A4PAIYeJ0Xu1u3Ywe44K21budzgbyiM6hr2lHmhAAGXmO5uzU2DjU7wPEO2rXzuUgqA60I4JywCxp4g7nIbX+jfCyF9FnOSdt3PpdkcWqTTgTZYAYMvEGUoT2EH7e9CclJUJFJlJ8FwN8ggIE3aJoszGXS9iYkJ2QS5WcB8DcIYOAQ/uu7b8dRihYcWrPzeS4PKT8Dr0YA4ygGOXf6OVH0+z2y2uxRHNUnXbF4b+TcSnZm85qxmxECGEdgA1XtZADT7/fo4oi+OKpPOmLx3rB8D1MRm8VhI4JssAs6I9H+sN+RVo+lisYc/hrFjuifC14pqgRxo3Jh65OxdIjV1aWYBasAh8MMGEegcXG5JB0WZWif6ezSI/oHmPmslw1rwJsQwDg0D52hWXOaSmdFGbqu6z/RI/r1mhsUX/8VAD+IAM5Is1vUhBJ05ubxWI1V7Ih+HZPti1s370rHVGqbfmM2klz5tYUd6XkhgDOjVRxnluc6sC52eHa+ld3Ay9CL4wrZEf19TbOSjrbtNIld0JrpJiybLq4tyAkBnJna5t9qtrtsbeDfW+cD+B+8DB0zCXZEv4Lpdj2XP0knabaPIcU1Ja4tgqwQwLkxnVq264s69BnO6On655t/XP98JB3n6+H3lPaUL4lmJdG0RJCV5ppi3CzmhseQgLc0l3pyxvpTUxPYNKoBsUs8mpZIhzz5ya0VkbMrkrXmIIZvBFkhgIG31p8Yz203InyjJN8c39g5Hr69vE/Ksqis1UYJOjOUoDOjPqvyD3mfHqP1rZ7Um9JxsQ4cvY6j57F0XJTioyQvHWSqI7+UbghwRARwZqyq/E41+yYPw77qOYGoGcftNXTXa/KdXA+PQ+79xnkkGYvqRF3NqdZkhhJ0ZuZ1Ne0vHm+RXMVO6D2pzwvk62ffTQa9wTTn1+tUmO1e/PJmNzekNe0nq1HOI8DEHvfm9IHODTPgzMz2nzGVjMVO6Mp6H8ZuaOm4D/YfSfKfyrir7SmbYwdr6WTnqyfrd655+G7Ee0IyFs1j4mZRkBUCGG/FNEpuxrrXc7q96IHcPZ07dvAAVf3QzDLfAb24se/a7vQSUILGWzHRkaptCofUN6L3sTabcbonjh3ck+4cO/gyW/MUzj6Au7k7PX8EcGb23yjTpx/dGTchl2lpa/F9adOUI0rmXe8xGyW+vtiH0kEXtm6MpWOiEU2/eQ9E/+d8LY+GFGSJEnSmVOONU8DBDGqXK7W1r9ZudbpFZSePKTTZtQ52AouxHmM+xr5kzq8hM6FdarYI4Ez5he1xCY3+/Q1+pTL5cDAYdDqAu3hMocWhC9a9c39jrMeYj7EvmfPryMxoQZktStC5qqtxHH6fe5vDZven2s/PiFzzLz+QDmvK0OYz4MXaeOtVHr7++neu+UZf69/E8pBkvvM5aHNqF8+p54oAzpTN66n0q0J2LeogjmJ78tG//lzNtv8629vu4qaP3rw3M3k21X7Oq4LHJ9pw7plOpAOi7Hz+3JnVSnV1sTejOXpQ8hcNUowDQzJFCTpT8148NG+lPDYwiJOSKqk+9hja6Go5+utnX88Wr1tHdOiA92ZMV7KuKlf3NyCWMca73CClAN24VS9U85C/v+H9ZdqUYth0cfaojuP50HhEpWu7ZJ9+dOeLnHewH4dovmG1PfjR7z+5Ly0VO51js1Wz4cr0lhSmC69R6QjgN4jS03tn3hvMe/NBb14P68oGPbXm0G3T/sDmdmIHcFc92YjHHPxlyvqkle+ZxczdAyh2ce+q6W6t8xddkpoNIdU3bT6ZperZx20PYHffZ8DbbemApVX0Nt9vrxqtJa1636+OQ/9vXPGvV8q6CX7u1F6jqppP56azqtaXqkBdfzzxTVgDfoOm9DR/NuxLNbSe+B2xvym1aspPvt75vlQnWIqyeqSqw8K6DEc5euDh09w0xCYyL01Pln/pX0+a3d1Vm3dmdqEvtK+Bqq55cI2kBVRjTVea97KP2JGH72jxF88/FOgUX6OqelyZv69V9nvZPzcRvBYz4H0vlZuCxeyzyLteAMhCswvbbGLNTXj9ME7MYk36hU4H8KKbzd4o7nijp+uLclNz4s8o9wbrAJA3m9qiEchUF7PheCzqcbMUFf3D96pObxLrdAl60Uqut7Hf03jzYLmp44fLAcAx0KHul/alWZayqS9JTRdLUb1t61msT3c2gDs3A45Zr+r8Sk/0MiVmAEhr0SwkNozpg649MdGJAF7sZD47MtXRYmexrPoLvtryXaoAUACbqlU7/snOvLYH6mvGcXZxF5r5dKIEHTuZ51Kv+aw3Huu5Fn/G7jMAyIEOvSS97p+sa6UyF3s46A2adWNpuVbn0PMjw9S+EABAARbNfDyU70ldjy9s/WIsLdXaVpRP13+52VO74ncYVwUAUIhFb/nmUdCq2oxrubRUe0vQ/sL5WsKGqWwKAKAUTTMfiSdTzOJaHn82lhZqXQm6zP7JAIDXaWtf61aVoCN8/WZpY/+sTgBAG6it9Sq9HEeeSou0qgQdM9/aWt8EHwA6JXrLm9ajSqpN//JX0hKtKEFTdgaAbmhTObr4EnTskIs+zpSdAaADohzdk//Vht3R5Zegqyp2yq3F4QkCAGi1phzdHGlaxZniYylYsSVommwAQFftN+swvb4nMvnx1o2JFKjYEnRPZdXD97IAADpmv1mHZ0CTBYUqeA14HocpXBEAQNcM9o86vBJZIIUqsgT99Kd3Pm3alLHrGQA6zeI8YdPti1s3rkthypwBe/iy6QoA4HwmXI/i2NmvNm8NpCCFlqB102i2AQCdp74WrKqjOHZWplJUABf1GNKf/vmzK1rp5aboAABAnCfss+CeyK2/O3vugf9BMQ06ipkBR3nBes1jR2sCAMABUYZWz4h4RFUKUUwAR3nB73AuxUPYAgDAAVGG9ny41C9oebKYAO5X9TUvPRO+AIC/sdgX5BlR1ZtSiGLWgNWi37OsCAAAr6QravKhFKKkTVg++7VhSw5wAgAcO1uJLllSiGLS7OlHn7H1GQDwZqY/K6FHdPYz4Cc/ueV3NGcpPQMADsWkHvUqmUrmCtiE5eHbY+czAOBwtJKR1vVQMpd9AJvqyL/NDQEA4DBMNkyqkWQu+wDWypo+nwIAwOEM+6rnJHP5l6B10edTAAA4BBUd7kl9XjKX/wzYqvc5eAEA0DaFnoYEAMCrWZyQ5JO3OENAMkYAAwBaRodehx42RxRmLOsAbk618B+iAABwBGo6zP1ghsxnwHuj+CEKAAAtk3UA96QamRoBDABonZIOY8jRfTN7cHHr5l0B3uDJ+p1rqnrZP70ieWI849ByH88xefPxPJKMsQkLAIAECGAAABIggAEASIAABgAgAQIYAIAECGAAABIggAEASIAABgAgAQIYAIAECGAAABIggAEASIAABgAgAQIYAIAECGAAABIggAEASIAABgAgAQIYAIAECGAAABIggAEASIAABgAgAQIYAIAECGAAABIggAEASIAABgAgAQIYAIAECGAAABIggAEASIAABgAgAQIYAIAECGAAABIggAEASIAABgAgAQIYAIAECGAAABIggAEASIAABgAgAQIYAIAECGAAABLoS8ZUqomaTM0/5Mi/q5Hfw2w8Wb8jwJtVGyY2UskT4xlHk/d4LkHWAZw7vy9Y8ZuDNRUdCvAGzcXKx4xkesViPOMoch/P/g3OrNapZIwAfhcqKz72VvyzNQHeQJ9/yBTjGUeQ+3j2G8lZVUnWAZz1GvCeyMTvyLP+AQIA8hPZERkiGWMTFgCgdXxyPnPMgAEAOE3ma8AfbN8mgN/Wj7duTHwhnRI0AKB1sp8Bm9Z/sczr+ACAnNhUK51J5vIvQZtOVWwiAAAcgopOa5t/K5njMSQAQKvUpmOrq4lkLvsZsErt68A6FgAADiGqpnU1z37/UPYz4D3pTxbfZJ7tKAEAeTGxx715RQC/q3iOazAYTKiVAwAO4+LWzbtSgPw3YQ0XD1MvdkLTFQsA8Bomu54V21KI7AP4g/Ht5mHqqOmb5N1YGwCQjqns+gcC+LiZyT0t6M4GAHC6tKmU1g+lEMUE8Dx2Q4vuUoYGALyaZ8ScEvQJ6E98GryrlKEBAK/iGXHxy5sE8HGLvtA2twe12W0BAOAAM7seGSEFKeo0pHmvmkYpmh3RAIB9syYPmtLzd7tSkKIer10+E6xNCOtI4yElAECH2SyWJi98+Ulxm3SLmgHH40iLIwqr2xXtKQGg89Sq+2Z6XQpUVAAv7XkJ2prngjmmEAC6yvazYK/QLCgygJsNWWKPOaYQALpr0aDJHjeV0QIV22L569l39309eHxG7Qt/AXwtWFkPBoBOsGms+/7j727+TApW5Ay4sewRbXJX6JAFAJ3h6747Xn6+L4UrNoCXPaL3RO/5y0EAA0B37IhpUc/8vopKCzz5yZ016cmaqv5GAADtZfqz2HRV6rrvQeWWoF/y3X7/TxsrO6MBoI12/Nf9CN+BLz9KC7TinPuLX96O7ie7T39656H5orBP7EcCAGiTHb++P/jx1icTaYlWlKAPohwNAC3TorLzQa2YAb8sytFnt/2/7Ff+qq35H6zxiBIAlMamsdvZP9l51qKy80GtmwEv/XH981Ff7KqqXPOi9EgAAMXQpsuV3I/dzhe2boylhVobwOGrtVvDwWAw7Gv9m/3DG0YCAMhWtJeMDlcXCm+ycRgtLEEfEM06prPpe4Oz9yqVf/IXdtVf3k2/7xj43w4EAJCDOFLQf+m48pJzbfIH6YBWz4APWm7OqlRv0boSAHKyaC1Zm92OR0ovfnmzE82VOhPAS7E2XKmtxS81vUoYA0AKi9A1tXtS1+MLW78YS8e0uwT9CtE/+u/Pn9uxup6a9HxpuFrxgbASG7XUZMVvSVYEAHACzK+7Oo01XpVqp5b5H7S27T3pT6SDOjcDPihmwyJ7o55U/nu1ITErbh5bAgAct+UGK0+eh12d9R7U6QD+vuWu6Z7Umyp6qdk5rfWIHdQAcDgH2wFHednMpv7J9OLWzbuCl3SuBP2Dlrumz5zd3uvNJ1XdeySV/6nWQ7HqfR9Zz9eKff14aGWEc/FHdrVF9sscJrumsks/9axckUwtZ7Nq1cSD1svKMjOTWa31X5b/TJSXa9NZVccuZ3wfM+AjWJSsF/pN6FqUrTf9x7gpmfK7z+uCTOS9zGFxrrbF0Z71Q0EW8m6pa2MfL2P/Lh9Gm8jYXxNHxAoOjRnwEXyvD+nkT//82VCrysvUJrmi7JOPJ+t3/I632XGfZQAvOg/VDxkz+Xj60WfZBrDFzLe2Rz/6fTu7VJ2GlhxHCABAWQhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABAhgAAASIIABAEiAAAYAIAECGACABPqCVnuyfueaIBPVhomNVPJkIqP4Hn3MCICTRwC3nKpeFmShCV+TFck0geN7M7U1FR0KgBNHALffFUEW9PmHTKms+Le34p+tCYATRwC/g6qaT/3DY7Gcr6oAcPy0qh+r1FPBW2MT1juYm87MjAEIoHPi2hfXQMFbYwb8DqraB5/KNOuyIgCcBNNpVQsB/A6YAb+Dea+aqlQTAYCOiWtfXAMFb40Afge9eW9mc9ZAAHRPXPviGih4awTwO/j62dcz7gABdFFc++IaKHhrrAEDAI7sx1s3JoJ3wgz4XQxl5qYmMvGCDDNhAO1nsuvXvG3BOyOA38EH49uzD7ZvT1VsYqIEMIDWM5Vd/0AAHwMC+DhYdbsyHQsAtJw2Fb/6oeCdEcDHIHYD+l0hmxEAdIDuypwS9HEggI/BYie0EcAA2s9s9+KXNwngY0AAH4PYDWhmj3xkjgUAWspM79a1PBIcCwL4mKjUE2EdGECL1T7RMK13BceC54CPyZ70J4sfpgkAtFFPdXtPegTwMeEYgWP29KM7X5joyH+wIwGAFoheB/G45YXf3fyZ4NhQgj5mc7EHHr47AgAtEeHLEtvxI4CPmVnvvhDAAFpELU59U579PWYE8DFjRzSANomdz/PaHlzYujEWHCsC+ATUZjtRihYAKNxc6odqXoLGsSOAT8A33z7b2S9FA0DhqvHXz76bCI4du6BP0JP1O9dU9bJ/ekUAoCDqpWcTuUfp+eTwHPBJmsu29WVFxYY+nDcFAIpg41rl0dx0IjgxlKBPUPRLVZtveZ2B3YMAyuHXLL92bcemUsGJoQR9Sp7+9M6nYrLBTBhArmi4cbooQZ+S2nTbyw3v+wAf+l3PmgBARiJ8K/XSc03F7rQQwKckAriWetiTaihqBDCArMTMN8L34tbNu4JTQQn6FH21dms4GAyG/aq+RjkaQA585rstPkG4uHXjuuBUMQM+TUOZzaaz6f8Y9MdSVdFiRghhAOnYuBLdmtf274JTxww4kafrv9z0EN70O89bAgApqN2Wuh5f2PrFWHDqCODE/rj++agvdlVVrhlHGAI4YX7Rn/i15r7f/NPfOTFK0InNvCj93vnBvzflaLVNFR0RxACO2yJ4bVI3fep7O3P/WpAUM+AMsDkLwMmzcTTYuPDbm58KskAAZ4YwBnB8CN2cUYLOzcGd0qK7orrtb6I1/3y438RjJADwSjZtrhti/suvHWZ/8F87giwxA87Ywdmwv1CXfJl4xIwYwOvoYl1329Qe7dXV3dhj8sH27akgSwRwYWLXtMjeqCfVSFWuSjMrbmbHIwHQCfsbqiJYp81hLzxKVCRK0IWJO1qfFU9kXk+t5y+g6rk9qc+rVe97IA88iAeLf1IHav61xlGIAEqkps9nr7GDefl5rfVf+lJ9s2f2rVo92ZP+RFAcZsAtsixZx+e9eT3UXuUz43okAIqkUk2Wn/PMLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIC38N+LYsibUfXvpAAAAABJRU5ErkJggg=="/>
</defs>
</svg>
</span>
            
          </div>

          <div class="progress-bar-v2__milestone-text">
            
              
                <span>Free Gift</span>
                
<span class="progress-bar-v2__threshold">€105</span>
              
            
          </div>
        </div>
        
      
    </div>
  </div>
</div>

        
      </div>
          <div class="drawer__inner-empty">
            <div class="cart-drawer__warnings center cart-drawer__warnings--has-collection">
              <div class="cart-drawer__empty-content">
                
                  <div class="h4">YOUR BAG IS EMPTY</div>
                
                
                  <form action="/en-fr/collections/best-sellers" method="get">
                    <button type="submit" class="button button--primary">
                      Shop Best Sellers
                    </button>
                  </form>
                
              </div>
            </div>
          </div>
        
<cart-drawer-items
        
          class="is-empty"
        
      >
        
        <form
          action="/en-fr/cart"
          id="CartDrawer-Form"
          class="cart__contents cart-drawer__form"
          method="post"
        >
          <div id="CartDrawer-CartItems" class="drawer__contents js-contents"><p id="CartDrawer-LiveRegionText" class="visually-hidden" role="status"></p>
            <p id="CartDrawer-LineItemStatus" class="visually-hidden" aria-hidden="true" role="status">
              Loading...
            </p>
          </div>
          <div id="CartDrawer-CartErrors" role="alert"></div>
        </form>
      </cart-drawer-items>
      <div class="cart-drawer__gift-picker cart-drawer__gift-picker--sticky"><link href="//hudabeauty.com/cdn/shop/t/162/assets/component-slider.css?v=145016471790583707941775984106" rel="stylesheet" type="text/css" media="all" />
<link href="//hudabeauty.com/cdn/shop/t/162/assets/get-the-look.css?v=73349094133633534071775984105" rel="stylesheet" type="text/css" media="all" />

  
  
    
  
    
  

  
  
  
  
  
  
  



  


  

  
  
  
  
  
  
  
    


  <div
    class="suggested-items__wrapper suggested-items__wrapper--gift-picker"
  >
    <slider-component class="slider-component-full-width slider-wrapper slider-mobile-gutter slider-component-desktop">
      <div class="suggested-items__heading">
        <div class="h5">
          CHOOSE YOUR FREE GIFT(S)
          
            <span class="suggested-items__gift-progress">(0/1)</span>
          
        </div>
        
      </div>

      <ul
        class="slider slider--desktop contains-card grid grid--1-col-desktop grid--1-col-tablet-down slider slider--tablet grid--peek"
        id="Slider-cart-drawer-gift-campaigns"
        role="list"
      >
        
      <li
        id="Slide-cart-drawer-gift_campaign_epzqjd-1"
        class="suggested-items__slide slider__slide grid__item"
        data-gift-campaign-id="gift_campaign_epzqjd"
      >
        

<script src="//hudabeauty.com/cdn/shop/t/162/assets/price-per-item.js?v=62459101616294089921775984106" defer="defer"></script>

















<div
  class="suggested-items__product-card__wrapper  suggested-items__product-card__wrapper--gift-picker"
  data-gift-locked="true"
  data-gift-lock-reason="threshold"
  data-threshold-locked="true"
  
    data-gift-campaign-id="gift_campaign_epzqjd"
  
>
  <div class="product-card suggested-items__product-card">
    <a href="/en-fr/products/easy-blur-primer-bronze-fudge-hb01659">
      <div class="product-card__product-image">
        <img
          class="suggested-items-image"
          data-url="/en-fr/products/easy-blur-primer-bronze-fudge-hb01659"
          src="//hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBLURPRIMER-BRONZEFUDGE-TILE1.webp?v=1759671937"
          sizes="(min-width: 1440px) 327px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
          alt="Huda Beauty Easy Blur Primer BRONZE FUDGE">
      </div>
    </a>

    <div class="product-card__content">
      <div
        class="product-card__content-heading"
        data-product-id="10234764362006"
        data-update-url="false"
        data-url="/en-fr/products/easy-blur-primer-bronze-fudge-hb01659"
      >
        <a href="/en-fr/products/easy-blur-primer-bronze-fudge-hb01659">
          <div class="h6">
            <span class="title">EASY BLUR SILICONE-FREE SMOOTHING PRIMER BRONZE FUDGE</span>
          </div>
        </a>
        
          <div
            class="featured-card_product-description caption"
          >
            
              <span class="inner-description">Silicone-free primer with a bronze tint that blurs pores, controls shine & smooths skin for an airbrushed, soft-focus finish.</span>
            
            
          </div>
        

        <div
          id="price-cart-drawer"
          class="product_card_price"
          data-url="/en-fr/products/easy-blur-primer-bronze-fudge-hb01659"
          role="status"
          
        >
          


<div
    class="price      price-section-data"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €36,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €36,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€-36,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>


        </div>
      </div>

      <div class="product-card__content-footer">
        <span class="hudas-badge caption hide">
          <span class="svg-wrapper">
            <img
              src="//hudabeauty.com/cdn/shop/t/162/assets/icon-sparkle-theme.svg?v=73148265570976066861775984106"
              alt="Huda&#39;s Shade Icon"
              width="18"
              height="18"
              loading="lazy"
            >
          </span>
          Huda&#39;s Shade
        </span>
        <div class="footer-forms">
          
            

<link href="//hudabeauty.com/cdn/shop/t/162/assets/custom-select.css?v=75249235394090046051775984104" rel="stylesheet" type="text/css" media="all" />
<link href="//hudabeauty.com/cdn/shop/t/162/assets/component-swatch.css?v=64606090685076916391775984107" rel="stylesheet" type="text/css" media="all" />









          


          


















<div  class="buy-buttons-container">
<button
          type="button"
          class="product-form__submit button button--full-width button--primary short-text"
          data-threshold-lock="true"
          data-threshold-amount="€105"
          
          disabled
>
          <span>UNLOCK AT €105</span>
        </button>
    
</div>
        </div>
      </div>
    </div>
  </div>
  <div class="product-form__error-message-wrapper mb-sm" role="alert" data-form-id="product-form-cart-drawer-10234764362006-gift_campaign_epzqjd" hidden>
    <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
    <span class="product-form__error-message caption"></span>
  </div><script type="application/json" suggested-items-data-selected-variant-meta>
    {
      "handle": "easy-blur-primer-bronze-fudge-hb01659",
      "variants": [
        
{
            "id": 50573528432918,
            "title": "Default Title",
            "available": true,
            "variantOnline": true,
            "price": "€36,00",
            "save_price": "€-36,00",
            "compare_at_price": "",
            "underTone": null,
            "options": ["Default Title"],
            "image_url": null,
            "shortDescription": "Silicone-free primer with a bronze tint that blurs pores, controls shine & smooths skin for an airbrushed, soft-focus finish.",
            "size": "",
            "backInStock": "false",
            "enableWaitlist": "false",
            "effectiveWaitlist": "false"
          }
        
      ]
    }
  </script>
</div>

      </li>
    
      </ul>
    </slider-component>
  </div>




</div>
      <div class="drawer__footer"><!-- Start blocks -->
        <!-- Subtotals --><div class="cart-drawer__footer" >
          <div class="footer-row" role="status">
            <div>Subtotal</div>
            <div class="hide-on-desktop">€0,00</div>
            <div class="h6 hide-on-mobile">€0,00</div>
          </div>
        </div>

        <!-- CTAs -->
        <div class="cart__ctas" >
          <button
            type="submit"
            id="CartDrawer-Checkout"
            class="button button--primary"
            name="checkout"
            form="CartDrawer-Form"
            data-cart-checkout-button
 disabled
>
            Checkout
          </button>
        </div>
      </div>
    </div>
  </div>
</cart-drawer>

</section><!-- BEGIN sections: header-group -->
<div id="shopify-section-sections--26760397881622__announcement-bar" class="shopify-section shopify-section-group-header-group announcement-bar-section"><link href="//hudabeauty.com/cdn/shop/t/162/assets/component-slideshow.css?v=791413117635610561775984106" rel="stylesheet" type="text/css" media="all" />
<link href="//hudabeauty.com/cdn/shop/t/162/assets/component-slider.css?v=145016471790583707941775984106" rel="stylesheet" type="text/css" media="all" />

  <link href="//hudabeauty.com/cdn/shop/t/162/assets/component-list-social.css?v=111032223352684200331775984105" rel="stylesheet" type="text/css" media="all" />




<div
  class="utility-bar color-scheme-ee0fa671-a158-42c5-9ab0-aff840adf116 gradient utility-bar--bottom-border header-localization hide"
>
  <div class="utility-bar__grid utility-bar__grid--3-col"><slideshow-component
        class="announcement-bar"
        role="region"
        aria-roledescription="Carousel"
        aria-label="Announcement bar"
      >
        <div class="announcement-bar-slider slider-buttons">
          <button
            type="button"
            class="slider-button slider-button--prev"
            name="previous"
            aria-label="Previous announcement"
            aria-controls="Slider-sections--26760397881622__announcement-bar"
          >
            <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
          </button>
          <div
            class="grid grid--1-col slider slider--everywhere"
            id="Slider-sections--26760397881622__announcement-bar"
            aria-live="polite"
            aria-atomic="true"
            data-autoplay="true"
            data-speed="3"
          ><div
                  class="slideshow__slide slider__slide grid__item grid--1-col"
                  id="Slide-sections--26760397881622__announcement-bar-1"
                  
                  role="group"
                  aria-roledescription="Announcement"
                  aria-label="1 of 3"
                  tabindex="-1"
                >
                  <p
                    class="announcement-bar caption"
                    role="region"
                    aria-label="Announcement"
                    
                  >FREE FUDGE PRIMER ON ALL ORDERS OVER €105
</p>
                </div><div
                  class="slideshow__slide slider__slide grid__item grid--1-col"
                  id="Slide-sections--26760397881622__announcement-bar-2"
                  
                  role="group"
                  aria-roledescription="Announcement"
                  aria-label="2 of 3"
                  tabindex="-1"
                >
                  <p
                    class="announcement-bar caption"
                    role="region"
                    aria-label="Announcement"
                    
                  >Free Sample on Every Order
</p>
                </div><div
                  class="slideshow__slide slider__slide grid__item grid--1-col"
                  id="Slide-sections--26760397881622__announcement-bar-3"
                  
                  role="group"
                  aria-roledescription="Announcement"
                  aria-label="3 of 3"
                  tabindex="-1"
                >
                  <p
                    class="announcement-bar caption"
                    role="region"
                    aria-label="Announcement"
                    
                  >Free Shipping on Orders €48+
</p>
                </div></div>
          <button
            type="button"
            class="slider-button slider-button--next"
            name="next"
            aria-label="Next announcement"
            aria-controls="Slider-sections--26760397881622__announcement-bar"
          >
            <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
          </button>
        </div>
      </slideshow-component></div>
</div>


<style> #shopify-section-sections--26760397881622__announcement-bar .announcement-bar__link {font-size: 12px; text-underline-offset: 0.1rem;} #shopify-section-sections--26760397881622__announcement-bar .animate-arrow {color: black;} </style></div><div id="shopify-section-sections--26760397881622__header" class="shopify-section shopify-section-group-header-group section-header"><link rel="stylesheet" href="//hudabeauty.com/cdn/shop/t/162/assets/component-list-menu.css?v=151968516119678728991775984105" media="print" onload="this.media='all'">
<link rel="stylesheet" href="//hudabeauty.com/cdn/shop/t/162/assets/component-search.css?v=114582329025012598761775984105" media="print" onload="this.media='all'">
<link rel="stylesheet" href="//hudabeauty.com/cdn/shop/t/162/assets/component-menu-drawer.css?v=119043564471938218971775984106" media="print" onload="this.media='all'">
<link
  rel="stylesheet"
  href="//hudabeauty.com/cdn/shop/t/162/assets/component-cart-notification.css?v=111945631055528345991775984106"
  media="print"
  onload="this.media='all'"
>
<script src="//hudabeauty.com/cdn/shop/t/162/assets/header.js?v=511021077893409701775984107" defer="defer"></script><link rel="stylesheet" href="//hudabeauty.com/cdn/shop/t/162/assets/component-price.css?v=14160622623067344551775984107" media="print" onload="this.media='all'"><link rel="stylesheet" href="//hudabeauty.com/cdn/shop/t/162/assets/component-mega-menu.css?v=48039986887139701021775984106" media="print" onload="this.media='all'"><style>
  header-drawer {
    display: flex;
    justify-self: start;
  }@media screen and (min-width: 1200px) {
      header-drawer {
        display: none;
      }
    }.menu-drawer-container {
    display: flex;
  }

  .list-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .list-menu--inline {
    display: inline-flex;
    flex-wrap: wrap;
  }

  .list-menu__item {
    display: flex;
    align-items: center;
  }

  .list-menu__item--link {
    text-decoration: none;
    padding-bottom: 1rem;
    padding-top: 1rem;
    line-height: calc(1 + 0.8 / var(--font-body-scale));
  }

  @media screen and (min-width: 750px) {
    .list-menu__item--link {
      padding-bottom: 0.5rem;
      padding-top: 0.5rem;
    }
  }
</style><style data-shopify>.section-header {
    position: sticky; /* This is for fixing a Safari z-index issue. PR #2147 */
    margin-bottom: 0px;
  }

  @media screen and (min-width: 750px) {
    .section-header {
      margin-bottom: 0px;
    }
  }

  @media screen and (min-width: 1200px) {
    .header .list-menu__item {
      padding-top: 20px;
      padding-bottom: 20px;
    }
  }</style><script src="//hudabeauty.com/cdn/shop/t/162/assets/cart-notification.js?v=114304318078747081381775984105" defer="defer"></script>
  <sticky-header
    data-sticky-type="always"
    class="header-wrapper color-scheme-5 gradient header-wrapper--home-nav-hidden"
  >

<header class="header header--middle-center header--mobile-center  header--has-menu header--has-social header--has-account header--has-localizations">



<header-drawer
  class=""
  data-breakpoint="tablet"
>
  <details id="Details-menu-drawer-container" class="menu-drawer-container">
    <summary
      class="header__icon header__icon--menu header__icon--summary link focus-inset unclickable"
      aria-label="Menu"
    >
      <span><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-hamburger" viewbox="0 0 18 16"><path fill="currentColor" d="M1 .5a.5.5 0 1 0 0 1h15.71a.5.5 0 0 0 0-1zM.5 8a.5.5 0 0 1 .5-.5h15.71a.5.5 0 0 1 0 1H1A.5.5 0 0 1 .5 8m0 7a.5.5 0 0 1 .5-.5h15.71a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5"/></svg>
</span>
    </summary>
    <div id="menu-drawer" class="gradient menu-drawer motion-reduce color-scheme-5">
      <div class="menu-drawer__inner-container">
        <div class="menu-drawer__navigation-container">
          <div class="menu-drawer__header">
            <span class="logo__drawer-opened"><?xml version="1.0" encoding="UTF-8"?><svg id="a" xmlns="http://www.w3.org/2000/svg" width="191.56mm" height="33.51mm" viewbox="0 0 543 95" role="img" aria-label="Huda Beauty"><path d="M327.05,55.43h29.55v-20.45c0-9.67-6.52-15.45-17.43-15.45h-8.93c-11.12,0-17.76,5.77-17.76,15.45v31.99c0,9.67,6.7,15.67,17.93,15.67h8.6c11.02,0,17.6-6,17.6-15.67v-5.71h-11.76v3.83c0,7.21-3.01,10.29-10.05,10.29s-10.39-2.98-10.39-10.29v-7.37c0-1.27,1.19-2.3,2.65-2.3h0ZM324.4,36.73c0-7.21,3.11-10.29,10.39-10.29s10.05,3.08,10.05,10.29v7.65c0,1.6-1.49,2.89-3.33,2.89h-14.47c-1.46,0-2.64-1.03-2.64-2.29v-8.25Z"/><path d="M431.08,82.65c6.18,0,7.8-2.27,10.38-3.44.8-.36,1.69.22,1.69,1.1v2.12h11.76V19.79h-11.76v44.94c0,6.88-3.57,10.67-10.05,10.67s-9.38-3.04-9.38-9.29V19.79h-11.76v48.94c0,8.65,5.89,13.92,15.74,13.92h3.38Z"/><path d="M486.39,75.01h6.64v7.41h-13.38c-6.66,0-10.18-3.22-10.18-9.33V27.69h-8.09v-7.91h8.09V.28h11.76v19.5h8.49v7.91h-8.49v42.91c0,3.51,1.06,4.42,5.16,4.42h0Z"/><path d="M532.64,19.76h10.36s-13.52,50.53-18.75,67.17c-1.05,3.36-2.82,8.07-11.49,8.07h-11.19v-7.41h8.47c5.43,0,6.02-4.49,5.43-6.69l-19-61.14h11.39l11.44,40.8c.39,1.44,2.77,1.41,3.12-.04,0,0,10.22-40.76,10.22-40.76Z"/><path d="M58.68,31.37v51.05h-24.09v-47.6c0-2.91-2.35-5.27-5.25-5.27h0c-2.9,0-5.25,2.36-5.25,5.27v47.6H0V0h24.09v19.76h22.36c4.77,0,12.23,1.51,12.23,11.61Z"/><path d="M99.73,19.76h24.09v62.66h-24.09v-1.32c0-.81-.53-1.52-1.38-1.85-.87-.34-1.88-.22-2.61.33-2.5,1.85-5.74,2.84-9.36,3.06h-8.47c-3.84-.23-12.76-1.36-12.76-11.84V19.76h24.08v47.59c0,2.91,2.35,5.28,5.25,5.28h0c2.9,0,5.25-2.36,5.25-5.28,0,0,0-47.59,0-47.59Z"/><path d="M236.39,19.54h-26.7c-6.83,0-13.51,2.42-13.51,12.54v7.86h23.21v-5.73c0-2.91,2.35-5.27,5.25-5.27s5.25,2.36,5.25,5.27v4.49c0,2.7-1.12,4.05-3.25,4.72-1.87.6-12.28,1.04-20.83,1.3-5.87.18-10.53,5.01-10.53,10.91v14.86c0,6.8,4.14,12.2,13.26,12.15,1.99-.01,5.98.01,7.97,0,3.62-.02,6.86-1.31,9.36-3.17.74-.55,1.74-.67,2.61-.33.85.33,1.38,1.04,1.38,1.85v1.32h24.09v-45.91c0-11.36-4.82-16.87-17.58-16.87h.02ZM224.63,72.6h0c-2.9,0-5.25-2.36-5.25-5.28v-9.43c0-2.91,2.35-5.28,5.25-5.28h0c2.9,0,5.25,2.36,5.25,5.28v9.43c0,2.91-2.35,5.28-5.25,5.28Z"/><path d="M164.88.59v19.17h-20.75c-6.32,0-13.85,2.13-13.85,12.27v38.12c0,10.14,7.53,12.27,13.85,12.5h7.1c3.62-.23,6.86-1.21,9.36-3.07.74-.55,1.74-.67,2.61-.33.85.33,1.38,1.04,1.38,1.85v1.32h24.23V.59h-23.94,0ZM159.63,73.22h0c-2.9,0-5.25-2.36-5.25-5.28v-32.53c0-2.91,2.35-5.28,5.25-5.28h0c2.9,0,5.25,2.36,5.25,5.28v32.53c0,2.91-2.35,5.28-5.25,5.28Z"/><path d="M388.3,19.54h-7.86c-12.45.13-16.87,6.37-16.87,14.89v9.63h11.42v-6.41c0-5.26.09-11.1,9.71-11.1,7.44,0,9.21,3.74,9.21,10.05v2.8c0,4.44-1.51,6.77-5.46,7.71-2.91.7-8.26.58-12.79,1.17-9.88,1.28-12.59,6.31-12.59,15.18v4.82c0,9.93,5.04,14.36,14.57,14.36h2.68c6.18,0,7.8-2.27,10.38-3.44.8-.36,1.69.22,1.69,1.1v2.12h13.12v-46.24c0-10.74-3.95-16.52-17.2-16.65h-.01ZM393.91,64.9c0,7.01-5.12,10.98-11.63,10.98-6.98,0-9.53-3.74-9.53-9.34v-2.14c0-5.37,1.98-8.06,7.44-9.34,3.84-.93,7.44-1.28,10-2.34,1.39-.58,2.79-1.52,3.72-2.69,0,0,0,14.87,0,14.87Z"/><path d="M294.83,20.36c-7.66-1.58-14.95-1.1-19.79,1.55-1.23.68-2.84-.02-2.84-1.29V.28h-11.76v82.14h11.77v-2.12c0-.88.9-1.46,1.69-1.1,2.58,1.17,4.2,3.45,10.38,3.45h4.21c11.07,0,17.43-5.78,17.43-15.68v-31.87c0-9.84-7.03-13.9-11.09-14.74h0ZM295.63,65.22c0,7.02-5.23,10.29-12.2,10.29-7.56,0-11.4-4.13-11.4-12.29v-24.37c0-8.07,3.83-12.16,11.4-12.16,6.88,0,12.2,3.33,12.2,10.17v28.37h0Z"/></svg></span>
            <span class="menu-drawer__close-drawer-button"><svg aria-hidden="true" width="20" height="20" viewbox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon icon__close-dark">
    <g id="X">
    <path id="Vector" d="M18.9999 1L1.25488 18.745L18.9999 1Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    <path id="Vector_2" d="M18.745 18.745L1 1L18.745 18.745Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    </g>
</svg></span>
          </div>
          <div class="menu-drawer__body">
            <nav class="menu-drawer__navigation">
              <ul class="menu-drawer__menu has-submenu list-menu header-small-hide" role="list">

<li><a
      id="HeaderDrawer-strawberry-latte-collection"
      href="/en-fr/collections/shop-strawberry-latte"
      class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
      
    >
      <p class="h5">Strawberry Latte Collection</p>
      <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
    </a></li>



<li><details id="Details-menu-drawer-menu-item-2">
      <summary
        id="HeaderDrawer-new"
        class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
      >
        <p class="h5">New</p>
        <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
      </summary>
      <div
        id="link-new"
        class="menu-drawer__submenu has-submenu gradient motion-reduce"
        tabindex="-1"
      >
        <div class="menu-drawer__inner-submenu">
          <button class="menu-drawer__close-button link link--text focus-inset" aria-expanded="true">
            <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
            <p class="h5">New</p>
            <span class="menu-drawer__close-drawer-button"><svg aria-hidden="true" width="20" height="20" viewbox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon icon__close-dark">
    <g id="X">
    <path id="Vector" d="M18.9999 1L1.25488 18.745L18.9999 1Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    <path id="Vector_2" d="M18.745 18.745L1 1L18.745 18.745Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    </g>
</svg></span>
          </button>
          
          <ul class="menu-drawer__menu list-menu" role="list" tabindex="-1"><li><a
                    id="HeaderDrawer-new-new"
                    href="/en-fr/collections/new-hover"
                    class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                    
                  >
                    <p class="h5">new</p>
                    <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                  </a></li></ul>
          <div class="shop-all_link">
            <a href="/en-fr/collections/new" class="button button--primary">
              Shop All&nbsp;New
            </a>
          </div>
          <div class="menu-drawer__submenu-footer"><div class="login-section"><div class="login-section-content">
                    <span class="svg-wrapper"><svg aria-hidden="true" fill="none" viewbox="0 0 24 24" id="profile" xmlns="http://www.w3.org/2000/svg"><path d="M20.59 22c0-3.87-3.85-7-8.59-7s-8.59 3.13-8.59 7M17 7A5 5 0 1 1 7 7a5 5 0 0 1 10 0z" stroke="#1C1A1A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg></span>
                    <a class="login-section__link" href="/en-fr/account/login">
                      <p class="h5">Log in</p>
                    </a>
                    <span> / </span>
                    <a class="login-section__link" href="/en-fr/account/register">
                      <p class="h5">Create Account</p>
                    </a>
                  </div><div class="rewards-section-content">
                  <span class="svg-wrapper"><?xml version="1.0" encoding="UTF-8"?>
<svg aria-hidden="true" id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 32 32">
  <!-- Generator: Adobe Illustrator 29.8.1, SVG Export Plug-In . SVG Version: 2.1.1 Build 2)  -->
  <defs>
    <style>
      .st0 {
        fill: none;
        stroke: #191919;
        stroke-width: 1.5px;
      }

      .st1 {
        fill: #191919;
      }
    </style>
  </defs>
  <polygon class="st0" points="6.34 29.26 2.14 12.17 10.84 18.32 15.94 7.31 21.04 18.32 29.74 12.17 25.54 29.26 6.34 29.26"/>
  <circle class="st1" cx="29.74" cy="11.43" r="1.74"/>
  <circle class="st1" cx="2.14" cy="11.43" r="1.74"/>
  <circle class="st1" cx="15.94" cy="6.17" r="1.74"/>
</svg></span>
                  <a class="rewards-section__link" href="/en-fr/pages/rewards">
                    <p class="h5">HUDA&#39;S VIPS</p>
                  </a>
                </div>
              </div></div>
        </div>
      </div>
    </details></li>



<li><a
      id="HeaderDrawer-best-sellers"
      href="/en-fr/collections/best-sellers"
      class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
      
    >
      <p class="h5">Best Sellers</p>
      <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
    </a></li>



<li><details id="Details-menu-drawer-menu-item-4">
      <summary
        id="HeaderDrawer-makeup"
        class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
      >
        <p class="h5">Makeup</p>
        <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
      </summary>
      <div
        id="link-makeup"
        class="menu-drawer__submenu has-submenu gradient motion-reduce"
        tabindex="-1"
      >
        <div class="menu-drawer__inner-submenu">
          <button class="menu-drawer__close-button link link--text focus-inset" aria-expanded="true">
            <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
            <p class="h5">Makeup</p>
            <span class="menu-drawer__close-drawer-button"><svg aria-hidden="true" width="20" height="20" viewbox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon icon__close-dark">
    <g id="X">
    <path id="Vector" d="M18.9999 1L1.25488 18.745L18.9999 1Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    <path id="Vector_2" d="M18.745 18.745L1 1L18.745 18.745Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    </g>
</svg></span>
          </button>
          
          <ul class="menu-drawer__menu list-menu" role="list" tabindex="-1"><li><details id="Details-menu-drawer-makeup-face">
                    <summary
                      id="HeaderDrawer-makeup-face"
                      class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                    >
                      <p class="h5">Face</p>
                      <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                    </summary>
                    <div
                      id="childlink-face"
                      class="menu-drawer__submenu has-submenu gradient motion-reduce"
                    >
                      <button
                        class="menu-drawer__close-button link link--text focus-inset"
                        aria-expanded="true"
                      >
                        <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                        <p class="h5">Face</p>
                        <span class="menu-drawer__close-drawer-button"><svg aria-hidden="true" width="20" height="20" viewbox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon icon__close-dark">
    <g id="X">
    <path id="Vector" d="M18.9999 1L1.25488 18.745L18.9999 1Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    <path id="Vector_2" d="M18.745 18.745L1 1L18.745 18.745Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    </g>
</svg></span>
                      </button>
                      
                      <ul
                        class="menu-drawer__menu list-menu"
                        role="list"
                        tabindex="-1"
                      ><li>
                            <a
                              id="HeaderDrawer-makeup-face-foundation"
                              href="/en-fr/collections/face-foundation"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Foundation</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li><li>
                            <a
                              id="HeaderDrawer-makeup-face-powder-setting-spray"
                              href="/en-fr/collections/face-powder-setting-spray"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Powder &amp; Setting Spray</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li><li>
                            <a
                              id="HeaderDrawer-makeup-face-primer"
                              href="/en-fr/collections/face-primer"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Primer</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li><li>
                            <a
                              id="HeaderDrawer-makeup-face-concealer-corrector"
                              href="/en-fr/collections/face-concealer"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Concealer &amp; Corrector</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li><li>
                            <a
                              id="HeaderDrawer-makeup-face-contour-highlight"
                              href="/en-fr/collections/face-contour-highlight"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Contour &amp; Highlight</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li></ul>
                      <div class="shop-all_link">
                        <a href="/en-fr/collections/huda-beauty-face" class="button button--primary">
                          Shop All&nbsp;Face
                        </a>
                      </div>
                      <div class="menu-drawer__submenu-footer"><div class="login-section"><div class="login-section-content">
                                <span class="svg-wrapper"><svg aria-hidden="true" fill="none" viewbox="0 0 24 24" id="profile" xmlns="http://www.w3.org/2000/svg"><path d="M20.59 22c0-3.87-3.85-7-8.59-7s-8.59 3.13-8.59 7M17 7A5 5 0 1 1 7 7a5 5 0 0 1 10 0z" stroke="#1C1A1A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg></span>
                                <a class="login-section__link" href="/en-fr/account/login">
                                  <p class="h5">Log in</p>
                                </a>
                                <span> / </span>
                                <a class="login-section__link" href="/en-fr/account/register">
                                  <p class="h5">Create Account</p>
                                </a>
                              </div><div class="rewards-section-content">
                              <span class="svg-wrapper"><?xml version="1.0" encoding="UTF-8"?>
<svg aria-hidden="true" id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 32 32">
  <!-- Generator: Adobe Illustrator 29.8.1, SVG Export Plug-In . SVG Version: 2.1.1 Build 2)  -->
  <defs>
    <style>
      .st0 {
        fill: none;
        stroke: #191919;
        stroke-width: 1.5px;
      }

      .st1 {
        fill: #191919;
      }
    </style>
  </defs>
  <polygon class="st0" points="6.34 29.26 2.14 12.17 10.84 18.32 15.94 7.31 21.04 18.32 29.74 12.17 25.54 29.26 6.34 29.26"/>
  <circle class="st1" cx="29.74" cy="11.43" r="1.74"/>
  <circle class="st1" cx="2.14" cy="11.43" r="1.74"/>
  <circle class="st1" cx="15.94" cy="6.17" r="1.74"/>
</svg></span>
                              <a class="rewards-section__link" href="/en-fr/pages/rewards">
                                <p class="h5">HUDA&#39;S VIPS</p>
                              </a>
                            </div>
                          </div></div>
                    </div>
                  </details></li><li><details id="Details-menu-drawer-makeup-eyes">
                    <summary
                      id="HeaderDrawer-makeup-eyes"
                      class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                    >
                      <p class="h5">Eyes</p>
                      <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                    </summary>
                    <div
                      id="childlink-eyes"
                      class="menu-drawer__submenu has-submenu gradient motion-reduce"
                    >
                      <button
                        class="menu-drawer__close-button link link--text focus-inset"
                        aria-expanded="true"
                      >
                        <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                        <p class="h5">Eyes</p>
                        <span class="menu-drawer__close-drawer-button"><svg aria-hidden="true" width="20" height="20" viewbox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon icon__close-dark">
    <g id="X">
    <path id="Vector" d="M18.9999 1L1.25488 18.745L18.9999 1Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    <path id="Vector_2" d="M18.745 18.745L1 1L18.745 18.745Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    </g>
</svg></span>
                      </button>
                      
                      <ul
                        class="menu-drawer__menu list-menu"
                        role="list"
                        tabindex="-1"
                      ><li>
                            <a
                              id="HeaderDrawer-makeup-eyes-eyeshadow"
                              href="/en-fr/collections/eyes-eyeshadow"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Eyeshadow</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li><li>
                            <a
                              id="HeaderDrawer-makeup-eyes-eyebrows"
                              href="/en-fr/collections/eyes-eyebrows"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Eyebrows</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li><li>
                            <a
                              id="HeaderDrawer-makeup-eyes-eyeliner"
                              href="/en-fr/collections/eyes-eyeliner"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Eyeliner</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li><li>
                            <a
                              id="HeaderDrawer-makeup-eyes-mascara"
                              href="/en-fr/collections/eyes-mascara"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Mascara</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li><li>
                            <a
                              id="HeaderDrawer-makeup-eyes-fake-eyelashes"
                              href="/en-fr/collections/eyes-fake-eyelashes"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Fake Eyelashes</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li></ul>
                      <div class="shop-all_link">
                        <a href="/en-fr/collections/huda-beauty-eyes" class="button button--primary">
                          Shop All&nbsp;Eyes
                        </a>
                      </div>
                      <div class="menu-drawer__submenu-footer"><div class="login-section"><div class="login-section-content">
                                <span class="svg-wrapper"><svg aria-hidden="true" fill="none" viewbox="0 0 24 24" id="profile" xmlns="http://www.w3.org/2000/svg"><path d="M20.59 22c0-3.87-3.85-7-8.59-7s-8.59 3.13-8.59 7M17 7A5 5 0 1 1 7 7a5 5 0 0 1 10 0z" stroke="#1C1A1A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg></span>
                                <a class="login-section__link" href="/en-fr/account/login">
                                  <p class="h5">Log in</p>
                                </a>
                                <span> / </span>
                                <a class="login-section__link" href="/en-fr/account/register">
                                  <p class="h5">Create Account</p>
                                </a>
                              </div><div class="rewards-section-content">
                              <span class="svg-wrapper"><?xml version="1.0" encoding="UTF-8"?>
<svg aria-hidden="true" id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 32 32">
  <!-- Generator: Adobe Illustrator 29.8.1, SVG Export Plug-In . SVG Version: 2.1.1 Build 2)  -->
  <defs>
    <style>
      .st0 {
        fill: none;
        stroke: #191919;
        stroke-width: 1.5px;
      }

      .st1 {
        fill: #191919;
      }
    </style>
  </defs>
  <polygon class="st0" points="6.34 29.26 2.14 12.17 10.84 18.32 15.94 7.31 21.04 18.32 29.74 12.17 25.54 29.26 6.34 29.26"/>
  <circle class="st1" cx="29.74" cy="11.43" r="1.74"/>
  <circle class="st1" cx="2.14" cy="11.43" r="1.74"/>
  <circle class="st1" cx="15.94" cy="6.17" r="1.74"/>
</svg></span>
                              <a class="rewards-section__link" href="/en-fr/pages/rewards">
                                <p class="h5">HUDA&#39;S VIPS</p>
                              </a>
                            </div>
                          </div></div>
                    </div>
                  </details></li><li><details id="Details-menu-drawer-makeup-lips">
                    <summary
                      id="HeaderDrawer-makeup-lips"
                      class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                    >
                      <p class="h5">Lips</p>
                      <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                    </summary>
                    <div
                      id="childlink-lips"
                      class="menu-drawer__submenu has-submenu gradient motion-reduce"
                    >
                      <button
                        class="menu-drawer__close-button link link--text focus-inset"
                        aria-expanded="true"
                      >
                        <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                        <p class="h5">Lips</p>
                        <span class="menu-drawer__close-drawer-button"><svg aria-hidden="true" width="20" height="20" viewbox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon icon__close-dark">
    <g id="X">
    <path id="Vector" d="M18.9999 1L1.25488 18.745L18.9999 1Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    <path id="Vector_2" d="M18.745 18.745L1 1L18.745 18.745Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    </g>
</svg></span>
                      </button>
                      
                      <ul
                        class="menu-drawer__menu list-menu"
                        role="list"
                        tabindex="-1"
                      ><li>
                            <a
                              id="HeaderDrawer-makeup-lips-jelly-stained-lips"
                              href="/en-fr/collections/lip-oil"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Jelly Stained Lips</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li><li>
                            <a
                              id="HeaderDrawer-makeup-lips-lipstick"
                              href="/en-fr/collections/lips-lipstick"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Lipstick</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li><li>
                            <a
                              id="HeaderDrawer-makeup-lips-lip-care-gloss"
                              href="/en-fr/collections/lip-care-gloss"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Lip Care &amp; Gloss</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li></ul>
                      <div class="shop-all_link">
                        <a href="/en-fr/collections/huda-beauty-lips" class="button button--primary">
                          Shop All&nbsp;Lips
                        </a>
                      </div>
                      <div class="menu-drawer__submenu-footer"><div class="login-section"><div class="login-section-content">
                                <span class="svg-wrapper"><svg aria-hidden="true" fill="none" viewbox="0 0 24 24" id="profile" xmlns="http://www.w3.org/2000/svg"><path d="M20.59 22c0-3.87-3.85-7-8.59-7s-8.59 3.13-8.59 7M17 7A5 5 0 1 1 7 7a5 5 0 0 1 10 0z" stroke="#1C1A1A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg></span>
                                <a class="login-section__link" href="/en-fr/account/login">
                                  <p class="h5">Log in</p>
                                </a>
                                <span> / </span>
                                <a class="login-section__link" href="/en-fr/account/register">
                                  <p class="h5">Create Account</p>
                                </a>
                              </div><div class="rewards-section-content">
                              <span class="svg-wrapper"><?xml version="1.0" encoding="UTF-8"?>
<svg aria-hidden="true" id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 32 32">
  <!-- Generator: Adobe Illustrator 29.8.1, SVG Export Plug-In . SVG Version: 2.1.1 Build 2)  -->
  <defs>
    <style>
      .st0 {
        fill: none;
        stroke: #191919;
        stroke-width: 1.5px;
      }

      .st1 {
        fill: #191919;
      }
    </style>
  </defs>
  <polygon class="st0" points="6.34 29.26 2.14 12.17 10.84 18.32 15.94 7.31 21.04 18.32 29.74 12.17 25.54 29.26 6.34 29.26"/>
  <circle class="st1" cx="29.74" cy="11.43" r="1.74"/>
  <circle class="st1" cx="2.14" cy="11.43" r="1.74"/>
  <circle class="st1" cx="15.94" cy="6.17" r="1.74"/>
</svg></span>
                              <a class="rewards-section__link" href="/en-fr/pages/rewards">
                                <p class="h5">HUDA&#39;S VIPS</p>
                              </a>
                            </div>
                          </div></div>
                    </div>
                  </details></li><li><details id="Details-menu-drawer-makeup-cheek">
                    <summary
                      id="HeaderDrawer-makeup-cheek"
                      class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                    >
                      <p class="h5">Cheek</p>
                      <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                    </summary>
                    <div
                      id="childlink-cheek"
                      class="menu-drawer__submenu has-submenu gradient motion-reduce"
                    >
                      <button
                        class="menu-drawer__close-button link link--text focus-inset"
                        aria-expanded="true"
                      >
                        <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                        <p class="h5">Cheek</p>
                        <span class="menu-drawer__close-drawer-button"><svg aria-hidden="true" width="20" height="20" viewbox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon icon__close-dark">
    <g id="X">
    <path id="Vector" d="M18.9999 1L1.25488 18.745L18.9999 1Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    <path id="Vector_2" d="M18.745 18.745L1 1L18.745 18.745Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    </g>
</svg></span>
                      </button>
                      
                      <ul
                        class="menu-drawer__menu list-menu"
                        role="list"
                        tabindex="-1"
                      ><li>
                            <a
                              id="HeaderDrawer-makeup-cheek-blush"
                              href="/en-fr/collections/cheek-blush"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Blush</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li><li>
                            <a
                              id="HeaderDrawer-makeup-cheek-bronzer"
                              href="/en-fr/collections/cheek-bronzer"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Bronzer</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li></ul>
                      <div class="shop-all_link">
                        <a href="/en-fr/collections/huda-beauty-cheek" class="button button--primary">
                          Shop All&nbsp;Cheek
                        </a>
                      </div>
                      <div class="menu-drawer__submenu-footer"><div class="login-section"><div class="login-section-content">
                                <span class="svg-wrapper"><svg aria-hidden="true" fill="none" viewbox="0 0 24 24" id="profile" xmlns="http://www.w3.org/2000/svg"><path d="M20.59 22c0-3.87-3.85-7-8.59-7s-8.59 3.13-8.59 7M17 7A5 5 0 1 1 7 7a5 5 0 0 1 10 0z" stroke="#1C1A1A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg></span>
                                <a class="login-section__link" href="/en-fr/account/login">
                                  <p class="h5">Log in</p>
                                </a>
                                <span> / </span>
                                <a class="login-section__link" href="/en-fr/account/register">
                                  <p class="h5">Create Account</p>
                                </a>
                              </div><div class="rewards-section-content">
                              <span class="svg-wrapper"><?xml version="1.0" encoding="UTF-8"?>
<svg aria-hidden="true" id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 32 32">
  <!-- Generator: Adobe Illustrator 29.8.1, SVG Export Plug-In . SVG Version: 2.1.1 Build 2)  -->
  <defs>
    <style>
      .st0 {
        fill: none;
        stroke: #191919;
        stroke-width: 1.5px;
      }

      .st1 {
        fill: #191919;
      }
    </style>
  </defs>
  <polygon class="st0" points="6.34 29.26 2.14 12.17 10.84 18.32 15.94 7.31 21.04 18.32 29.74 12.17 25.54 29.26 6.34 29.26"/>
  <circle class="st1" cx="29.74" cy="11.43" r="1.74"/>
  <circle class="st1" cx="2.14" cy="11.43" r="1.74"/>
  <circle class="st1" cx="15.94" cy="6.17" r="1.74"/>
</svg></span>
                              <a class="rewards-section__link" href="/en-fr/pages/rewards">
                                <p class="h5">HUDA&#39;S VIPS</p>
                              </a>
                            </div>
                          </div></div>
                    </div>
                  </details></li><li><details id="Details-menu-drawer-makeup-brushes-tools">
                    <summary
                      id="HeaderDrawer-makeup-brushes-tools"
                      class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                    >
                      <p class="h5">Brushes &amp; Tools</p>
                      <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                    </summary>
                    <div
                      id="childlink-brushes-tools"
                      class="menu-drawer__submenu has-submenu gradient motion-reduce"
                    >
                      <button
                        class="menu-drawer__close-button link link--text focus-inset"
                        aria-expanded="true"
                      >
                        <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                        <p class="h5">Brushes &amp; Tools</p>
                        <span class="menu-drawer__close-drawer-button"><svg aria-hidden="true" width="20" height="20" viewbox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon icon__close-dark">
    <g id="X">
    <path id="Vector" d="M18.9999 1L1.25488 18.745L18.9999 1Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    <path id="Vector_2" d="M18.745 18.745L1 1L18.745 18.745Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    </g>
</svg></span>
                      </button>
                      
                      <ul
                        class="menu-drawer__menu list-menu"
                        role="list"
                        tabindex="-1"
                      ><li>
                            <a
                              id="HeaderDrawer-makeup-brushes-tools-brushes"
                              href="/en-fr/collections/brushes-tools-brushes"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Brushes</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li><li>
                            <a
                              id="HeaderDrawer-makeup-brushes-tools-tools-accessories"
                              href="/en-fr/collections/brushes-tools-tools-accessories"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Tools &amp; Accessories</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li></ul>
                      <div class="shop-all_link">
                        <a href="/en-fr/collections/huda-beauty-brushes-tools" class="button button--primary">
                          Shop All&nbsp;Brushes & Tools
                        </a>
                      </div>
                      <div class="menu-drawer__submenu-footer"><div class="login-section"><div class="login-section-content">
                                <span class="svg-wrapper"><svg aria-hidden="true" fill="none" viewbox="0 0 24 24" id="profile" xmlns="http://www.w3.org/2000/svg"><path d="M20.59 22c0-3.87-3.85-7-8.59-7s-8.59 3.13-8.59 7M17 7A5 5 0 1 1 7 7a5 5 0 0 1 10 0z" stroke="#1C1A1A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg></span>
                                <a class="login-section__link" href="/en-fr/account/login">
                                  <p class="h5">Log in</p>
                                </a>
                                <span> / </span>
                                <a class="login-section__link" href="/en-fr/account/register">
                                  <p class="h5">Create Account</p>
                                </a>
                              </div><div class="rewards-section-content">
                              <span class="svg-wrapper"><?xml version="1.0" encoding="UTF-8"?>
<svg aria-hidden="true" id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 32 32">
  <!-- Generator: Adobe Illustrator 29.8.1, SVG Export Plug-In . SVG Version: 2.1.1 Build 2)  -->
  <defs>
    <style>
      .st0 {
        fill: none;
        stroke: #191919;
        stroke-width: 1.5px;
      }

      .st1 {
        fill: #191919;
      }
    </style>
  </defs>
  <polygon class="st0" points="6.34 29.26 2.14 12.17 10.84 18.32 15.94 7.31 21.04 18.32 29.74 12.17 25.54 29.26 6.34 29.26"/>
  <circle class="st1" cx="29.74" cy="11.43" r="1.74"/>
  <circle class="st1" cx="2.14" cy="11.43" r="1.74"/>
  <circle class="st1" cx="15.94" cy="6.17" r="1.74"/>
</svg></span>
                              <a class="rewards-section__link" href="/en-fr/pages/rewards">
                                <p class="h5">HUDA&#39;S VIPS</p>
                              </a>
                            </div>
                          </div></div>
                    </div>
                  </details></li><li><a
                    id="HeaderDrawer-makeup-minis"
                    href="/en-fr/collections/huda-beauty-makeup-mini-makeup"
                    class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                    
                  >
                    <p class="h5">Minis</p>
                    <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                  </a></li></ul>
          <div class="shop-all_link">
            <a href="/en-fr/collections/huda-beauty" class="button button--primary">
              Shop All&nbsp;Makeup
            </a>
          </div>
          <div class="menu-drawer__submenu-footer"><div class="login-section"><div class="login-section-content">
                    <span class="svg-wrapper"><svg aria-hidden="true" fill="none" viewbox="0 0 24 24" id="profile" xmlns="http://www.w3.org/2000/svg"><path d="M20.59 22c0-3.87-3.85-7-8.59-7s-8.59 3.13-8.59 7M17 7A5 5 0 1 1 7 7a5 5 0 0 1 10 0z" stroke="#1C1A1A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg></span>
                    <a class="login-section__link" href="/en-fr/account/login">
                      <p class="h5">Log in</p>
                    </a>
                    <span> / </span>
                    <a class="login-section__link" href="/en-fr/account/register">
                      <p class="h5">Create Account</p>
                    </a>
                  </div><div class="rewards-section-content">
                  <span class="svg-wrapper"><?xml version="1.0" encoding="UTF-8"?>
<svg aria-hidden="true" id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 32 32">
  <!-- Generator: Adobe Illustrator 29.8.1, SVG Export Plug-In . SVG Version: 2.1.1 Build 2)  -->
  <defs>
    <style>
      .st0 {
        fill: none;
        stroke: #191919;
        stroke-width: 1.5px;
      }

      .st1 {
        fill: #191919;
      }
    </style>
  </defs>
  <polygon class="st0" points="6.34 29.26 2.14 12.17 10.84 18.32 15.94 7.31 21.04 18.32 29.74 12.17 25.54 29.26 6.34 29.26"/>
  <circle class="st1" cx="29.74" cy="11.43" r="1.74"/>
  <circle class="st1" cx="2.14" cy="11.43" r="1.74"/>
  <circle class="st1" cx="15.94" cy="6.17" r="1.74"/>
</svg></span>
                  <a class="rewards-section__link" href="/en-fr/pages/rewards">
                    <p class="h5">HUDA&#39;S VIPS</p>
                  </a>
                </div>
              </div></div>
        </div>
      </div>
    </details></li>



<li><a
      id="HeaderDrawer-hair-extensions"
      href="/en-fr/collections/l1-beauty-works"
      class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
      
    >
      <p class="h5">Hair Extensions</p>
      <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
    </a></li>



<li><a
      id="HeaderDrawer-skincare"
      href="/en-fr/collections/wishful"
      class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
      
    >
      <p class="h5">Skincare</p>
      <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
    </a></li>



<li><a
      id="HeaderDrawer-gifts-sets"
      href="/en-fr/collections/gifts-sets"
      class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
      
    >
      <p class="h5">Gifts &amp; Sets</p>
      <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
    </a></li>

</ul>
              <ul class="menu-drawer__menu has-submenu list-menu header-large-hide" role="list">
                  
                  

<li><a
      id="HeaderDrawer-new"
      href="/en-fr/collections/new"
      class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
      
    >
      <p class="h5">NEW</p>
      <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
    </a></li>


                  
                  

<li><a
      id="HeaderDrawer-best-sellers"
      href="/en-fr/collections/best-sellers"
      class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
      
    >
      <p class="h5">BEST SELLERS</p>
      <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
    </a></li>


                  
                  

<li><details id="Details-menu-drawer-menu-item-3">
      <summary
        id="HeaderDrawer-makeup"
        class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
      >
        <p class="h5">Makeup</p>
        <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
      </summary>
      <div
        id="link-makeup"
        class="menu-drawer__submenu has-submenu gradient motion-reduce"
        tabindex="-1"
      >
        <div class="menu-drawer__inner-submenu">
          <button class="menu-drawer__close-button link link--text focus-inset" aria-expanded="true">
            <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
            <p class="h5">Makeup</p>
            <span class="menu-drawer__close-drawer-button"><svg aria-hidden="true" width="20" height="20" viewbox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon icon__close-dark">
    <g id="X">
    <path id="Vector" d="M18.9999 1L1.25488 18.745L18.9999 1Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    <path id="Vector_2" d="M18.745 18.745L1 1L18.745 18.745Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    </g>
</svg></span>
          </button>
          
          <ul class="menu-drawer__menu list-menu" role="list" tabindex="-1"><li><details id="Details-menu-drawer-makeup-face">
                    <summary
                      id="HeaderDrawer-makeup-face"
                      class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                    >
                      <p class="h5">FACE</p>
                      <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                    </summary>
                    <div
                      id="childlink-face"
                      class="menu-drawer__submenu has-submenu gradient motion-reduce"
                    >
                      <button
                        class="menu-drawer__close-button link link--text focus-inset"
                        aria-expanded="true"
                      >
                        <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                        <p class="h5">FACE</p>
                        <span class="menu-drawer__close-drawer-button"><svg aria-hidden="true" width="20" height="20" viewbox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon icon__close-dark">
    <g id="X">
    <path id="Vector" d="M18.9999 1L1.25488 18.745L18.9999 1Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    <path id="Vector_2" d="M18.745 18.745L1 1L18.745 18.745Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    </g>
</svg></span>
                      </button>
                      
                      <ul
                        class="menu-drawer__menu list-menu"
                        role="list"
                        tabindex="-1"
                      ><li>
                            <a
                              id="HeaderDrawer-makeup-face-foundation"
                              href="/en-fr/collections/face-foundation"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Foundation</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li><li>
                            <a
                              id="HeaderDrawer-makeup-face-powder-setting-spray"
                              href="/en-fr/collections/face-powder-setting-spray"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Powder &amp; Setting Spray</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li><li>
                            <a
                              id="HeaderDrawer-makeup-face-primer"
                              href="/en-fr/collections/face-primer"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Primer</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li><li>
                            <a
                              id="HeaderDrawer-makeup-face-concealer-corrector"
                              href="/en-fr/collections/face-concealer"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Concealer &amp; Corrector</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li><li>
                            <a
                              id="HeaderDrawer-makeup-face-contour-highlight"
                              href="/en-fr/collections/face-contour-highlight"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Contour &amp; Highlight</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li></ul>
                      <div class="shop-all_link">
                        <a href="/en-fr/collections/huda-beauty-face" class="button button--primary">
                          Shop All&nbsp;FACE
                        </a>
                      </div>
                      <div class="menu-drawer__submenu-footer"><div class="login-section"><div class="login-section-content">
                                <span class="svg-wrapper"><svg aria-hidden="true" fill="none" viewbox="0 0 24 24" id="profile" xmlns="http://www.w3.org/2000/svg"><path d="M20.59 22c0-3.87-3.85-7-8.59-7s-8.59 3.13-8.59 7M17 7A5 5 0 1 1 7 7a5 5 0 0 1 10 0z" stroke="#1C1A1A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg></span>
                                <a class="login-section__link" href="/en-fr/account/login">
                                  <p class="h5">Log in</p>
                                </a>
                                <span> / </span>
                                <a class="login-section__link" href="/en-fr/account/register">
                                  <p class="h5">Create Account</p>
                                </a>
                              </div><div class="rewards-section-content">
                              <span class="svg-wrapper"><?xml version="1.0" encoding="UTF-8"?>
<svg aria-hidden="true" id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 32 32">
  <!-- Generator: Adobe Illustrator 29.8.1, SVG Export Plug-In . SVG Version: 2.1.1 Build 2)  -->
  <defs>
    <style>
      .st0 {
        fill: none;
        stroke: #191919;
        stroke-width: 1.5px;
      }

      .st1 {
        fill: #191919;
      }
    </style>
  </defs>
  <polygon class="st0" points="6.34 29.26 2.14 12.17 10.84 18.32 15.94 7.31 21.04 18.32 29.74 12.17 25.54 29.26 6.34 29.26"/>
  <circle class="st1" cx="29.74" cy="11.43" r="1.74"/>
  <circle class="st1" cx="2.14" cy="11.43" r="1.74"/>
  <circle class="st1" cx="15.94" cy="6.17" r="1.74"/>
</svg></span>
                              <a class="rewards-section__link" href="/en-fr/pages/rewards">
                                <p class="h5">HUDA&#39;S VIPS</p>
                              </a>
                            </div>
                          </div></div>
                    </div>
                  </details></li><li><details id="Details-menu-drawer-makeup-eyes">
                    <summary
                      id="HeaderDrawer-makeup-eyes"
                      class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                    >
                      <p class="h5">EYES</p>
                      <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                    </summary>
                    <div
                      id="childlink-eyes"
                      class="menu-drawer__submenu has-submenu gradient motion-reduce"
                    >
                      <button
                        class="menu-drawer__close-button link link--text focus-inset"
                        aria-expanded="true"
                      >
                        <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                        <p class="h5">EYES</p>
                        <span class="menu-drawer__close-drawer-button"><svg aria-hidden="true" width="20" height="20" viewbox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon icon__close-dark">
    <g id="X">
    <path id="Vector" d="M18.9999 1L1.25488 18.745L18.9999 1Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    <path id="Vector_2" d="M18.745 18.745L1 1L18.745 18.745Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    </g>
</svg></span>
                      </button>
                      
                      <ul
                        class="menu-drawer__menu list-menu"
                        role="list"
                        tabindex="-1"
                      ><li>
                            <a
                              id="HeaderDrawer-makeup-eyes-eyeshadow"
                              href="/en-fr/collections/eyes-eyeshadow"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Eyeshadow</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li><li>
                            <a
                              id="HeaderDrawer-makeup-eyes-eyebrows"
                              href="/en-fr/collections/eyes-eyebrows"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Eyebrows</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li><li>
                            <a
                              id="HeaderDrawer-makeup-eyes-eyeliner"
                              href="/en-fr/collections/eyes-eyeliner"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Eyeliner</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li><li>
                            <a
                              id="HeaderDrawer-makeup-eyes-mascara"
                              href="/en-fr/collections/eyes-mascara"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Mascara</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li><li>
                            <a
                              id="HeaderDrawer-makeup-eyes-fake-eyelashes"
                              href="/en-fr/collections/eyes-fake-eyelashes"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Fake Eyelashes</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li></ul>
                      <div class="shop-all_link">
                        <a href="/en-fr/collections/huda-beauty-eyes" class="button button--primary">
                          Shop All&nbsp;EYES
                        </a>
                      </div>
                      <div class="menu-drawer__submenu-footer"><div class="login-section"><div class="login-section-content">
                                <span class="svg-wrapper"><svg aria-hidden="true" fill="none" viewbox="0 0 24 24" id="profile" xmlns="http://www.w3.org/2000/svg"><path d="M20.59 22c0-3.87-3.85-7-8.59-7s-8.59 3.13-8.59 7M17 7A5 5 0 1 1 7 7a5 5 0 0 1 10 0z" stroke="#1C1A1A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg></span>
                                <a class="login-section__link" href="/en-fr/account/login">
                                  <p class="h5">Log in</p>
                                </a>
                                <span> / </span>
                                <a class="login-section__link" href="/en-fr/account/register">
                                  <p class="h5">Create Account</p>
                                </a>
                              </div><div class="rewards-section-content">
                              <span class="svg-wrapper"><?xml version="1.0" encoding="UTF-8"?>
<svg aria-hidden="true" id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 32 32">
  <!-- Generator: Adobe Illustrator 29.8.1, SVG Export Plug-In . SVG Version: 2.1.1 Build 2)  -->
  <defs>
    <style>
      .st0 {
        fill: none;
        stroke: #191919;
        stroke-width: 1.5px;
      }

      .st1 {
        fill: #191919;
      }
    </style>
  </defs>
  <polygon class="st0" points="6.34 29.26 2.14 12.17 10.84 18.32 15.94 7.31 21.04 18.32 29.74 12.17 25.54 29.26 6.34 29.26"/>
  <circle class="st1" cx="29.74" cy="11.43" r="1.74"/>
  <circle class="st1" cx="2.14" cy="11.43" r="1.74"/>
  <circle class="st1" cx="15.94" cy="6.17" r="1.74"/>
</svg></span>
                              <a class="rewards-section__link" href="/en-fr/pages/rewards">
                                <p class="h5">HUDA&#39;S VIPS</p>
                              </a>
                            </div>
                          </div></div>
                    </div>
                  </details></li><li><details id="Details-menu-drawer-makeup-lips">
                    <summary
                      id="HeaderDrawer-makeup-lips"
                      class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                    >
                      <p class="h5">LIPS</p>
                      <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                    </summary>
                    <div
                      id="childlink-lips"
                      class="menu-drawer__submenu has-submenu gradient motion-reduce"
                    >
                      <button
                        class="menu-drawer__close-button link link--text focus-inset"
                        aria-expanded="true"
                      >
                        <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                        <p class="h5">LIPS</p>
                        <span class="menu-drawer__close-drawer-button"><svg aria-hidden="true" width="20" height="20" viewbox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon icon__close-dark">
    <g id="X">
    <path id="Vector" d="M18.9999 1L1.25488 18.745L18.9999 1Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    <path id="Vector_2" d="M18.745 18.745L1 1L18.745 18.745Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    </g>
</svg></span>
                      </button>
                      
                      <ul
                        class="menu-drawer__menu list-menu"
                        role="list"
                        tabindex="-1"
                      ><li>
                            <a
                              id="HeaderDrawer-makeup-lips-jelly-stained-lips"
                              href="/en-fr/collections/lip-oil"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Jelly Stained Lips</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li><li>
                            <a
                              id="HeaderDrawer-makeup-lips-lipstick"
                              href="/en-fr/collections/lips-lipstick"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Lipstick</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li><li>
                            <a
                              id="HeaderDrawer-makeup-lips-lip-care-gloss"
                              href="/en-fr/collections/lip-care-gloss"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Lip Care &amp; Gloss</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li></ul>
                      <div class="shop-all_link">
                        <a href="/en-fr/collections/huda-beauty-lips" class="button button--primary">
                          Shop All&nbsp;LIPS
                        </a>
                      </div>
                      <div class="menu-drawer__submenu-footer"><div class="login-section"><div class="login-section-content">
                                <span class="svg-wrapper"><svg aria-hidden="true" fill="none" viewbox="0 0 24 24" id="profile" xmlns="http://www.w3.org/2000/svg"><path d="M20.59 22c0-3.87-3.85-7-8.59-7s-8.59 3.13-8.59 7M17 7A5 5 0 1 1 7 7a5 5 0 0 1 10 0z" stroke="#1C1A1A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg></span>
                                <a class="login-section__link" href="/en-fr/account/login">
                                  <p class="h5">Log in</p>
                                </a>
                                <span> / </span>
                                <a class="login-section__link" href="/en-fr/account/register">
                                  <p class="h5">Create Account</p>
                                </a>
                              </div><div class="rewards-section-content">
                              <span class="svg-wrapper"><?xml version="1.0" encoding="UTF-8"?>
<svg aria-hidden="true" id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 32 32">
  <!-- Generator: Adobe Illustrator 29.8.1, SVG Export Plug-In . SVG Version: 2.1.1 Build 2)  -->
  <defs>
    <style>
      .st0 {
        fill: none;
        stroke: #191919;
        stroke-width: 1.5px;
      }

      .st1 {
        fill: #191919;
      }
    </style>
  </defs>
  <polygon class="st0" points="6.34 29.26 2.14 12.17 10.84 18.32 15.94 7.31 21.04 18.32 29.74 12.17 25.54 29.26 6.34 29.26"/>
  <circle class="st1" cx="29.74" cy="11.43" r="1.74"/>
  <circle class="st1" cx="2.14" cy="11.43" r="1.74"/>
  <circle class="st1" cx="15.94" cy="6.17" r="1.74"/>
</svg></span>
                              <a class="rewards-section__link" href="/en-fr/pages/rewards">
                                <p class="h5">HUDA&#39;S VIPS</p>
                              </a>
                            </div>
                          </div></div>
                    </div>
                  </details></li><li><details id="Details-menu-drawer-makeup-cheek">
                    <summary
                      id="HeaderDrawer-makeup-cheek"
                      class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                    >
                      <p class="h5">CHEEK</p>
                      <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                    </summary>
                    <div
                      id="childlink-cheek"
                      class="menu-drawer__submenu has-submenu gradient motion-reduce"
                    >
                      <button
                        class="menu-drawer__close-button link link--text focus-inset"
                        aria-expanded="true"
                      >
                        <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                        <p class="h5">CHEEK</p>
                        <span class="menu-drawer__close-drawer-button"><svg aria-hidden="true" width="20" height="20" viewbox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon icon__close-dark">
    <g id="X">
    <path id="Vector" d="M18.9999 1L1.25488 18.745L18.9999 1Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    <path id="Vector_2" d="M18.745 18.745L1 1L18.745 18.745Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    </g>
</svg></span>
                      </button>
                      
                      <ul
                        class="menu-drawer__menu list-menu"
                        role="list"
                        tabindex="-1"
                      ><li>
                            <a
                              id="HeaderDrawer-makeup-cheek-blush"
                              href="/en-fr/collections/cheek-blush"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Blush</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li><li>
                            <a
                              id="HeaderDrawer-makeup-cheek-bronzer"
                              href="/en-fr/collections/cheek-bronzer"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Bronzer</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li></ul>
                      <div class="shop-all_link">
                        <a href="/en-fr/collections/huda-beauty-cheek" class="button button--primary">
                          Shop All&nbsp;CHEEK
                        </a>
                      </div>
                      <div class="menu-drawer__submenu-footer"><div class="login-section"><div class="login-section-content">
                                <span class="svg-wrapper"><svg aria-hidden="true" fill="none" viewbox="0 0 24 24" id="profile" xmlns="http://www.w3.org/2000/svg"><path d="M20.59 22c0-3.87-3.85-7-8.59-7s-8.59 3.13-8.59 7M17 7A5 5 0 1 1 7 7a5 5 0 0 1 10 0z" stroke="#1C1A1A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg></span>
                                <a class="login-section__link" href="/en-fr/account/login">
                                  <p class="h5">Log in</p>
                                </a>
                                <span> / </span>
                                <a class="login-section__link" href="/en-fr/account/register">
                                  <p class="h5">Create Account</p>
                                </a>
                              </div><div class="rewards-section-content">
                              <span class="svg-wrapper"><?xml version="1.0" encoding="UTF-8"?>
<svg aria-hidden="true" id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 32 32">
  <!-- Generator: Adobe Illustrator 29.8.1, SVG Export Plug-In . SVG Version: 2.1.1 Build 2)  -->
  <defs>
    <style>
      .st0 {
        fill: none;
        stroke: #191919;
        stroke-width: 1.5px;
      }

      .st1 {
        fill: #191919;
      }
    </style>
  </defs>
  <polygon class="st0" points="6.34 29.26 2.14 12.17 10.84 18.32 15.94 7.31 21.04 18.32 29.74 12.17 25.54 29.26 6.34 29.26"/>
  <circle class="st1" cx="29.74" cy="11.43" r="1.74"/>
  <circle class="st1" cx="2.14" cy="11.43" r="1.74"/>
  <circle class="st1" cx="15.94" cy="6.17" r="1.74"/>
</svg></span>
                              <a class="rewards-section__link" href="/en-fr/pages/rewards">
                                <p class="h5">HUDA&#39;S VIPS</p>
                              </a>
                            </div>
                          </div></div>
                    </div>
                  </details></li><li><details id="Details-menu-drawer-makeup-brushes-tools">
                    <summary
                      id="HeaderDrawer-makeup-brushes-tools"
                      class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                    >
                      <p class="h5">Brushes &amp; Tools</p>
                      <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                    </summary>
                    <div
                      id="childlink-brushes-tools"
                      class="menu-drawer__submenu has-submenu gradient motion-reduce"
                    >
                      <button
                        class="menu-drawer__close-button link link--text focus-inset"
                        aria-expanded="true"
                      >
                        <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                        <p class="h5">Brushes &amp; Tools</p>
                        <span class="menu-drawer__close-drawer-button"><svg aria-hidden="true" width="20" height="20" viewbox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon icon__close-dark">
    <g id="X">
    <path id="Vector" d="M18.9999 1L1.25488 18.745L18.9999 1Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    <path id="Vector_2" d="M18.745 18.745L1 1L18.745 18.745Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    </g>
</svg></span>
                      </button>
                      
                      <ul
                        class="menu-drawer__menu list-menu"
                        role="list"
                        tabindex="-1"
                      ><li>
                            <a
                              id="HeaderDrawer-makeup-brushes-tools-brushes"
                              href="/en-fr/collections/brushes-tools-brushes"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Brushes</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li><li>
                            <a
                              id="HeaderDrawer-makeup-brushes-tools-tools-accessories"
                              href="/en-fr/collections/brushes-tools-tools-accessories"
                              class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                              
                            >
                              <p class="h5">Tools &amp; Accessories</p>
                              <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                            </a>
                          </li></ul>
                      <div class="shop-all_link">
                        <a href="/en-fr/collections/huda-beauty-brushes-tools" class="button button--primary">
                          Shop All&nbsp;Brushes & Tools
                        </a>
                      </div>
                      <div class="menu-drawer__submenu-footer"><div class="login-section"><div class="login-section-content">
                                <span class="svg-wrapper"><svg aria-hidden="true" fill="none" viewbox="0 0 24 24" id="profile" xmlns="http://www.w3.org/2000/svg"><path d="M20.59 22c0-3.87-3.85-7-8.59-7s-8.59 3.13-8.59 7M17 7A5 5 0 1 1 7 7a5 5 0 0 1 10 0z" stroke="#1C1A1A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg></span>
                                <a class="login-section__link" href="/en-fr/account/login">
                                  <p class="h5">Log in</p>
                                </a>
                                <span> / </span>
                                <a class="login-section__link" href="/en-fr/account/register">
                                  <p class="h5">Create Account</p>
                                </a>
                              </div><div class="rewards-section-content">
                              <span class="svg-wrapper"><?xml version="1.0" encoding="UTF-8"?>
<svg aria-hidden="true" id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 32 32">
  <!-- Generator: Adobe Illustrator 29.8.1, SVG Export Plug-In . SVG Version: 2.1.1 Build 2)  -->
  <defs>
    <style>
      .st0 {
        fill: none;
        stroke: #191919;
        stroke-width: 1.5px;
      }

      .st1 {
        fill: #191919;
      }
    </style>
  </defs>
  <polygon class="st0" points="6.34 29.26 2.14 12.17 10.84 18.32 15.94 7.31 21.04 18.32 29.74 12.17 25.54 29.26 6.34 29.26"/>
  <circle class="st1" cx="29.74" cy="11.43" r="1.74"/>
  <circle class="st1" cx="2.14" cy="11.43" r="1.74"/>
  <circle class="st1" cx="15.94" cy="6.17" r="1.74"/>
</svg></span>
                              <a class="rewards-section__link" href="/en-fr/pages/rewards">
                                <p class="h5">HUDA&#39;S VIPS</p>
                              </a>
                            </div>
                          </div></div>
                    </div>
                  </details></li><li><a
                    id="HeaderDrawer-makeup-minis"
                    href="/en-fr/collections/huda-beauty-makeup-mini-makeup"
                    class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                    
                  >
                    <p class="h5">Minis</p>
                    <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                  </a></li></ul>
          <div class="shop-all_link">
            <a href="/en-fr/collections/huda-beauty" class="button button--primary">
              Shop All&nbsp;Makeup
            </a>
          </div>
          <div class="menu-drawer__submenu-footer"><div class="login-section"><div class="login-section-content">
                    <span class="svg-wrapper"><svg aria-hidden="true" fill="none" viewbox="0 0 24 24" id="profile" xmlns="http://www.w3.org/2000/svg"><path d="M20.59 22c0-3.87-3.85-7-8.59-7s-8.59 3.13-8.59 7M17 7A5 5 0 1 1 7 7a5 5 0 0 1 10 0z" stroke="#1C1A1A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg></span>
                    <a class="login-section__link" href="/en-fr/account/login">
                      <p class="h5">Log in</p>
                    </a>
                    <span> / </span>
                    <a class="login-section__link" href="/en-fr/account/register">
                      <p class="h5">Create Account</p>
                    </a>
                  </div><div class="rewards-section-content">
                  <span class="svg-wrapper"><?xml version="1.0" encoding="UTF-8"?>
<svg aria-hidden="true" id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 32 32">
  <!-- Generator: Adobe Illustrator 29.8.1, SVG Export Plug-In . SVG Version: 2.1.1 Build 2)  -->
  <defs>
    <style>
      .st0 {
        fill: none;
        stroke: #191919;
        stroke-width: 1.5px;
      }

      .st1 {
        fill: #191919;
      }
    </style>
  </defs>
  <polygon class="st0" points="6.34 29.26 2.14 12.17 10.84 18.32 15.94 7.31 21.04 18.32 29.74 12.17 25.54 29.26 6.34 29.26"/>
  <circle class="st1" cx="29.74" cy="11.43" r="1.74"/>
  <circle class="st1" cx="2.14" cy="11.43" r="1.74"/>
  <circle class="st1" cx="15.94" cy="6.17" r="1.74"/>
</svg></span>
                  <a class="rewards-section__link" href="/en-fr/pages/rewards">
                    <p class="h5">HUDA&#39;S VIPS</p>
                  </a>
                </div>
              </div></div>
        </div>
      </div>
    </details></li>


                  
                  

<li><details id="Details-menu-drawer-menu-item-4">
      <summary
        id="HeaderDrawer-skincare"
        class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
      >
        <p class="h5">Skincare</p>
        <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
      </summary>
      <div
        id="link-skincare"
        class="menu-drawer__submenu has-submenu gradient motion-reduce"
        tabindex="-1"
      >
        <div class="menu-drawer__inner-submenu">
          <button class="menu-drawer__close-button link link--text focus-inset" aria-expanded="true">
            <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
            <p class="h5">Skincare</p>
            <span class="menu-drawer__close-drawer-button"><svg aria-hidden="true" width="20" height="20" viewbox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon icon__close-dark">
    <g id="X">
    <path id="Vector" d="M18.9999 1L1.25488 18.745L18.9999 1Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    <path id="Vector_2" d="M18.745 18.745L1 1L18.745 18.745Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    </g>
</svg></span>
          </button>
          
            <img
              data-src="//hudabeauty.com/cdn/shop/files/huda_rebrand-logo-black.svg?v=1760253673"
              alt="Huda Beauty logo"
              class="category_image"
              width="180"
              height="auto"
              loading="lazy"
            >
          
          <ul class="menu-drawer__menu list-menu" role="list" tabindex="-1"><li><a
                    id="HeaderDrawer-skincare-moisturizers"
                    href="/en-fr/collections/wishful-moisturizers"
                    class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                    
                  >
                    <p class="h5">Moisturizers</p>
                    <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                  </a></li><li><a
                    id="HeaderDrawer-skincare-serums-oils"
                    href="/en-fr/collections/wishful-serums-oils"
                    class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                    
                  >
                    <p class="h5">Serums &amp; Oils</p>
                    <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                  </a></li><li><a
                    id="HeaderDrawer-skincare-cleansers-exfoliators"
                    href="/en-fr/collections/wishful-cleansers-exfoliators"
                    class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                    
                  >
                    <p class="h5">Cleansers &amp; Exfoliators</p>
                    <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                  </a></li><li><a
                    id="HeaderDrawer-skincare-eye-care"
                    href="/en-fr/collections/wishful-eye-care"
                    class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                    
                  >
                    <p class="h5">Eye Care</p>
                    <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                  </a></li><li><a
                    id="HeaderDrawer-skincare-face-masks"
                    href="/en-fr/collections/wishful-face-masks"
                    class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                    
                  >
                    <p class="h5">Face Masks</p>
                    <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                  </a></li><li><a
                    id="HeaderDrawer-skincare-skincare-tools"
                    href="/en-fr/collections/tools-accessories-skincare-tools"
                    class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                    
                  >
                    <p class="h5">Skincare Tools</p>
                    <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                  </a></li><li><a
                    id="HeaderDrawer-skincare-travel-sized-skincare"
                    href="/en-fr/collections/wishful-travel-sized-skincare"
                    class="menu-drawer__menu-item link link--text list-menu__item focus-inset"
                    
                  >
                    <p class="h5">Travel-sized Skincare</p>
                    <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
                  </a></li></ul>
          <div class="shop-all_link">
            <a href="/en-fr/collections/wishful" class="button button--primary">
              Shop All&nbsp;Skincare
            </a>
          </div>
          <div class="menu-drawer__submenu-footer"><div class="login-section"><div class="login-section-content">
                    <span class="svg-wrapper"><svg aria-hidden="true" fill="none" viewbox="0 0 24 24" id="profile" xmlns="http://www.w3.org/2000/svg"><path d="M20.59 22c0-3.87-3.85-7-8.59-7s-8.59 3.13-8.59 7M17 7A5 5 0 1 1 7 7a5 5 0 0 1 10 0z" stroke="#1C1A1A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg></span>
                    <a class="login-section__link" href="/en-fr/account/login">
                      <p class="h5">Log in</p>
                    </a>
                    <span> / </span>
                    <a class="login-section__link" href="/en-fr/account/register">
                      <p class="h5">Create Account</p>
                    </a>
                  </div><div class="rewards-section-content">
                  <span class="svg-wrapper"><?xml version="1.0" encoding="UTF-8"?>
<svg aria-hidden="true" id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 32 32">
  <!-- Generator: Adobe Illustrator 29.8.1, SVG Export Plug-In . SVG Version: 2.1.1 Build 2)  -->
  <defs>
    <style>
      .st0 {
        fill: none;
        stroke: #191919;
        stroke-width: 1.5px;
      }

      .st1 {
        fill: #191919;
      }
    </style>
  </defs>
  <polygon class="st0" points="6.34 29.26 2.14 12.17 10.84 18.32 15.94 7.31 21.04 18.32 29.74 12.17 25.54 29.26 6.34 29.26"/>
  <circle class="st1" cx="29.74" cy="11.43" r="1.74"/>
  <circle class="st1" cx="2.14" cy="11.43" r="1.74"/>
  <circle class="st1" cx="15.94" cy="6.17" r="1.74"/>
</svg></span>
                  <a class="rewards-section__link" href="/en-fr/pages/rewards">
                    <p class="h5">HUDA&#39;S VIPS</p>
                  </a>
                </div>
              </div></div>
        </div>
      </div>
    </details></li>


                  
                  

<li><a
      id="HeaderDrawer-hair-extensions"
      href="/en-fr/collections/l1-beauty-works"
      class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
      
    >
      <p class="h5">Hair Extensions</p>
      <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
    </a></li>


                  
                  

<li><a
      id="HeaderDrawer-gifts-sets"
      href="/en-fr/collections/gifts-sets"
      class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
      
    >
      <p class="h5">Gifts &amp; Sets</p>
      <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
    </a></li>


                  
                  

<li><a
      id="HeaderDrawer-strawberry-latte-collection"
      href="/en-fr/collections/shop-strawberry-latte"
      class="menu-drawer__menu-item list-menu__item link link--text focus-inset"
      
    >
      <p class="h5">Strawberry Latte Collection</p>
      <span class="svg-wrapper"><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>
</span>
    </a></li>

</ul>
            </nav><div class="login-section"><div class="login-section-content">
                    <span class="svg-wrapper"><svg aria-hidden="true" fill="none" viewbox="0 0 24 24" id="profile" xmlns="http://www.w3.org/2000/svg"><path d="M20.59 22c0-3.87-3.85-7-8.59-7s-8.59 3.13-8.59 7M17 7A5 5 0 1 1 7 7a5 5 0 0 1 10 0z" stroke="#1C1A1A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg></span>
                    <a class="login-section__link" href="/en-fr/account/login">
                      <p class="h5">Log in</p>
                    </a>
                    <span> / </span>
                    <a class="login-section__link" href="/en-fr/account/register">
                      <p class="h5">Create Account</p>
                    </a>
                  </div><div class="rewards-section-content">
                  <span class="svg-wrapper"><?xml version="1.0" encoding="UTF-8"?>
<svg aria-hidden="true" id="Layer_1" xmlns="http://www.w3.org/2000/svg" version="1.1" viewbox="0 0 32 32">
  <!-- Generator: Adobe Illustrator 29.8.1, SVG Export Plug-In . SVG Version: 2.1.1 Build 2)  -->
  <defs>
    <style>
      .st0 {
        fill: none;
        stroke: #191919;
        stroke-width: 1.5px;
      }

      .st1 {
        fill: #191919;
      }
    </style>
  </defs>
  <polygon class="st0" points="6.34 29.26 2.14 12.17 10.84 18.32 15.94 7.31 21.04 18.32 29.74 12.17 25.54 29.26 6.34 29.26"/>
  <circle class="st1" cx="29.74" cy="11.43" r="1.74"/>
  <circle class="st1" cx="2.14" cy="11.43" r="1.74"/>
  <circle class="st1" cx="15.94" cy="6.17" r="1.74"/>
</svg></span>
                  <a class="rewards-section__link" href="/en-fr/pages/rewards">
                    <p class="h5">HUDA&#39;S VIPS</p>
                  </a>
                </div>
              </div></div>
          <div class="menu-drawer__footer">

<ul class="list-unstyled list-social footer__list-social" role="list"><li class="list-social__item">
      <a href="https://www.instagram.com/hudabeauty/" target="_blank">
        <span>
          <svg aria-hidden="true" width="30" height="30" viewbox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 20C0 8.95431 8.95431 0 20 0C31.0457 0 40 8.95431 40 20C40 31.0457 31.0457 40 20 40C8.95431 40 0 31.0457 0 20Z" fill="white"/>
<path d="M15.0302 8.08393C13.7534 8.14417 12.8815 8.34793 12.1193 8.64745C11.3304 8.95489 10.6617 9.36745 9.99646 10.0351C9.33118 10.7028 8.9215 11.3719 8.61622 12.162C8.32078 12.9259 8.12062 13.7986 8.06422 15.0761C8.00782 16.3536 7.99534 16.7642 8.00158 20.023C8.00782 23.2817 8.02222 23.6902 8.08414 24.9703C8.1451 26.2469 8.34814 27.1186 8.64766 27.881C8.95558 28.6699 9.36766 29.3383 10.0356 30.0038C10.7035 30.6694 11.3721 31.0781 12.1641 31.3838C12.9273 31.6788 13.8002 31.8799 15.0775 31.9358C16.3548 31.9918 16.7659 32.0047 20.0237 31.9985C23.2814 31.9922 23.6916 31.9778 24.9715 31.9171C26.2514 31.8564 27.1185 31.6519 27.8813 31.3538C28.6701 31.0452 29.339 30.6338 30.0041 29.9657C30.6691 29.2975 31.0785 28.6279 31.3836 27.8374C31.6793 27.0742 31.8801 26.2013 31.9356 24.925C31.9915 23.6441 32.0047 23.2351 31.9985 19.9769C31.9922 16.7186 31.9776 16.3102 31.9169 15.0305C31.8561 13.7508 31.6529 12.8818 31.3536 12.1188C31.0452 11.3299 30.6336 10.662 29.9659 9.99601C29.2982 9.33001 28.6281 8.92081 27.8378 8.61649C27.0741 8.32105 26.2017 8.11969 24.9245 8.06449C23.6472 8.00929 23.2361 7.99513 19.9771 8.00137C16.7181 8.00761 16.3101 8.02153 15.0302 8.08393ZM15.1704 29.777C14.0004 29.7262 13.3651 29.5318 12.9417 29.369C12.3811 29.153 11.9817 28.8919 11.5598 28.4741C11.1379 28.0562 10.8787 27.6554 10.6598 27.096C10.4954 26.6726 10.2974 26.0381 10.2427 24.8681C10.1832 23.6035 10.1707 23.2238 10.1637 20.0201C10.1568 16.8163 10.169 16.4371 10.2245 15.1721C10.2744 14.003 10.47 13.367 10.6325 12.9439C10.8485 12.3826 11.1086 11.9839 11.5274 11.5622C11.9462 11.1406 12.3458 10.8809 12.9057 10.662C13.3286 10.4969 13.9632 10.3006 15.1327 10.2449C16.3982 10.1849 16.7774 10.1729 19.9807 10.1659C23.184 10.159 23.5641 10.171 24.8301 10.2266C25.9992 10.2775 26.6354 10.4712 27.0581 10.6346C27.6189 10.8506 28.0181 11.1101 28.4397 11.5296C28.8614 11.9491 29.1213 12.3473 29.3402 12.9084C29.5056 13.3301 29.7019 13.9644 29.7571 15.1346C29.8173 16.4002 29.831 16.7796 29.8368 19.9826C29.8425 23.1857 29.8313 23.5661 29.7758 24.8306C29.7247 26.0006 29.5308 26.6362 29.3678 27.06C29.1518 27.6204 28.8914 28.02 28.4724 28.4414C28.0533 28.8629 27.6542 29.1226 27.0941 29.3414C26.6717 29.5063 26.0364 29.7031 24.8678 29.7588C23.6023 29.8183 23.2231 29.8308 20.0186 29.8378C16.8141 29.8447 16.4361 29.8318 15.1706 29.777M24.953 13.5864C24.9535 13.8712 25.0384 14.1495 25.1971 14.3861C25.3557 14.6226 25.5809 14.8068 25.8443 14.9154C26.1076 15.0239 26.3972 15.0519 26.6765 14.9958C26.9557 14.9398 27.2121 14.8021 27.4131 14.6004C27.6141 14.3986 27.7508 14.1417 27.8059 13.8623C27.8609 13.5828 27.8318 13.2933 27.7223 13.0304C27.6128 12.7675 27.4278 12.5429 27.1907 12.3851C26.9536 12.2273 26.675 12.1434 26.3901 12.144C26.0083 12.1448 25.6424 12.2971 25.3729 12.5676C25.1034 12.8381 24.9524 13.2046 24.953 13.5864ZM13.8386 20.0119C13.8453 23.4151 16.6092 26.1677 20.0117 26.1612C23.4141 26.1547 26.1686 23.3911 26.1621 19.9879C26.1557 16.5847 23.3911 13.8314 19.9881 13.8382C16.5852 13.8449 13.8321 16.6092 13.8386 20.0119ZM16.0001 20.0076C15.9985 19.2165 16.2316 18.4426 16.6698 17.784C17.108 17.1253 17.7317 16.6113 18.4621 16.3071C19.1924 16.0029 19.9965 15.9221 20.7727 16.0749C21.549 16.2277 22.2625 16.6073 22.823 17.1656C23.3835 17.7239 23.7659 18.4359 23.9218 19.2115C24.0777 19.9872 24.0001 20.7916 23.6987 21.5231C23.3974 22.2547 22.886 22.8804 22.229 23.3212C21.5721 23.7621 20.7992 23.9982 20.0081 23.9998C19.4827 24.0009 18.9624 23.8985 18.4766 23.6984C17.9909 23.4984 17.5493 23.2046 17.1771 22.8339C16.8049 22.4632 16.5094 22.0228 16.3074 21.5378C16.1055 21.0529 16.001 20.5329 16.0001 20.0076Z" fill="#EB3986"/>
</svg>

        </span>
        <span class="visually-hidden">Instagram</span>
      </a>
    </li><li class="list-social__item">
      <a href="https://www.tiktok.com/@hudabeauty/" target="_blank">
        <span>
          <svg aria-hidden="true" width="30" height="30" viewbox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 20C0 8.95431 8.95431 0 20 0C31.0457 0 40 8.95431 40 20C40 31.0457 31.0457 40 20 40C8.95431 40 0 31.0457 0 20Z" fill="white"/>
<path d="M30.543 15.0641V17.9096C29.2012 17.9101 27.8975 17.6472 26.668 17.1285C25.8773 16.7947 25.1407 16.3646 24.467 15.8449L24.4872 24.6034C24.4788 26.5756 23.6985 28.4286 22.2863 29.8244C21.137 30.9606 19.6807 31.683 18.1023 31.9169C17.7314 31.9718 17.354 32 16.9722 32C15.2826 32 13.6784 31.4526 12.3662 30.4427C12.1193 30.2526 11.8831 30.0465 11.6583 29.8244C10.1278 28.3118 9.33856 26.2616 9.47147 24.1049C9.57285 22.4631 10.2301 20.8974 11.3259 19.6702C12.7756 18.0463 14.8037 17.145 16.9722 17.145C17.354 17.145 17.7314 17.1736 18.1023 17.2285V18.2806V21.2073C17.7506 21.0913 17.3751 21.0275 16.984 21.0275C15.0028 21.0275 13.4 22.6439 13.4296 24.6265C13.4484 25.8951 14.1414 27.004 15.1634 27.6152C15.6437 27.9025 16.1962 28.0805 16.7859 28.1128C17.2479 28.1382 17.6915 28.0739 18.1023 27.9382C19.5178 27.4707 20.5389 26.1411 20.5389 24.573L20.5436 18.7079V8H24.4623C24.466 8.38829 24.5054 8.76714 24.5787 9.13425C24.8744 10.6202 25.712 11.9093 26.8777 12.7882C27.8941 13.5548 29.1598 14.0093 30.5316 14.0093L30.5429 14.0084L30.543 15.0641Z" fill="#EB3986"/>
</svg>

        </span>
        <span class="visually-hidden">TikTok</span>
      </a>
    </li><li class="list-social__item">
      <a href="https://www.youtube.com/user/hudaheidik" target="_blank">
        <span>
          <svg aria-hidden="true" width="30" height="30" viewbox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 20C0 8.95431 8.95431 0 20 0C31.0457 0 40 8.95431 40 20C40 31.0457 31.0457 40 20 40C8.95431 40 0 31.0457 0 20Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.5226 22.7272L24.0044 19.326L17.5226 15.884V22.7272ZM20 11C21.4999 11 22.9485 11.0204 24.3457 11.0612C25.743 11.102 26.7675 11.1451 27.4192 11.1905L28.3969 11.2449C28.4058 11.2449 28.4817 11.2517 28.6245 11.2653C28.7674 11.2789 28.87 11.2925 28.9325 11.3061C28.995 11.3197 29.0999 11.3401 29.2473 11.3673C29.3946 11.3945 29.5218 11.4308 29.6289 11.4762C29.7361 11.5215 29.8611 11.5805 30.0039 11.653C30.1468 11.7256 30.2851 11.814 30.4191 11.9183C30.553 12.0226 30.6824 12.1428 30.8074 12.2788C30.861 12.3333 30.9302 12.4172 31.015 12.5305C31.0998 12.6439 31.2293 12.9092 31.4034 13.3264C31.5775 13.7436 31.6958 14.2016 31.7583 14.7005C31.8297 15.2809 31.8855 15.9 31.9257 16.5575C31.9659 17.2151 31.9904 17.7298 31.9993 18.1016V20.4961C32.0083 21.8112 31.9279 23.1263 31.7583 24.4414C31.6958 24.9403 31.5842 25.3915 31.4235 25.7951C31.2628 26.1987 31.1199 26.4776 30.9949 26.6318L30.8074 26.8631C30.6824 26.9991 30.553 27.1193 30.4191 27.2236C30.2851 27.3279 30.1468 27.414 30.0039 27.4821C29.8611 27.5501 29.7361 27.6068 29.6289 27.6521C29.5218 27.6975 29.3946 27.7338 29.2473 27.761C29.0999 27.7882 28.9928 27.8086 28.9258 27.8222C28.8589 27.8358 28.7562 27.8494 28.6178 27.863C28.4794 27.8766 28.4058 27.8834 28.3969 27.8834C26.1559 28.0557 23.357 28.1419 20 28.1419C18.1519 28.1238 16.5471 28.0943 15.1855 28.0535C13.824 28.0127 12.929 27.9786 12.5004 27.9514L11.8442 27.897L11.3621 27.8426C11.0407 27.7972 10.7974 27.7519 10.6322 27.7066C10.467 27.6612 10.2394 27.566 9.94922 27.4209C9.65906 27.2757 9.40684 27.0898 9.19257 26.8631C9.139 26.8086 9.06981 26.7247 8.98499 26.6114C8.90017 26.498 8.77072 26.2327 8.59662 25.8155C8.42252 25.3983 8.30422 24.9403 8.24173 24.4414C8.1703 23.861 8.1145 23.242 8.07433 22.5844C8.03415 21.9268 8.0096 21.4121 8.00067 21.0403V18.6458C7.99174 17.3307 8.07209 16.0156 8.24173 14.7005C8.30422 14.2016 8.41582 13.7504 8.57653 13.3468C8.73724 12.9432 8.88008 12.6643 9.00508 12.5101L9.19257 12.2788C9.31756 12.1428 9.44702 12.0226 9.58094 11.9183C9.71486 11.814 9.85324 11.7256 9.99609 11.653C10.1389 11.5805 10.2639 11.5215 10.3711 11.4762C10.4782 11.4308 10.6054 11.3945 10.7527 11.3673C10.9001 11.3401 11.005 11.3197 11.0675 11.3061C11.13 11.2925 11.2326 11.2789 11.3755 11.2653C11.5183 11.2517 11.5942 11.2449 11.6031 11.2449C13.8441 11.0816 16.643 11 20 11Z" fill="#EB3986"/>
</svg>

        </span>
        <span class="visually-hidden">YouTube</span>
      </a>
    </li><li class="list-social__item">
      <a href="https://www.facebook.com/hudabeauty/" target="_blank">
        <span>
          <svg aria-hidden="true" width="30" height="30" viewbox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 20C0 8.95431 8.95431 0 20 0C31.0457 0 40 8.95431 40 20C40 31.0457 31.0457 40 20 40C8.95431 40 0 31.0457 0 20Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.9495 32V21.0525H25.805L26.3822 16.786H21.9495V14.0621C21.9495 12.8268 22.3093 11.9851 24.1679 11.9851L26.5383 11.984V8.1681C26.1282 8.1162 24.7212 8 23.0843 8C19.6667 8 17.327 9.98824 17.327 13.6397V16.786H13.4618V21.0525H17.327V32H21.9495Z" fill="#EB3986"/>
</svg>

        </span>
        <span class="visually-hidden">Facebook</span>
      </a>
    </li><li class="list-social__item">
      <a href="https://www.snapchat.com/add/hudabeauty" target="_blank">
        <span>
          <svg aria-hidden="true" width="30" height="30" viewbox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 20C0 8.95431 8.95431 0 20 0C31.0457 0 40 8.95431 40 20C40 31.0457 31.0457 40 20 40C8.95431 40 0 31.0457 0 20Z" fill="white"/>
<path d="M31.7584 26.252C28.3179 25.6855 26.7771 22.1707 26.7135 22.0207L26.7063 22.0075C26.6085 21.8477 26.5469 21.6684 26.5257 21.4822C26.5046 21.2961 26.5244 21.1076 26.5839 20.9299C26.8143 20.3851 27.5799 20.1427 28.0851 19.9819C28.2123 19.9423 28.3311 19.9039 28.4247 19.8667C29.3403 19.5067 29.5263 19.1311 29.5215 18.8803C29.4975 18.7243 29.4276 18.5791 29.3208 18.4631C29.2139 18.347 29.0749 18.2654 28.9215 18.2286L28.9131 18.2262C28.7774 18.1714 28.6323 18.1432 28.4859 18.1434C28.3567 18.1416 28.2287 18.1674 28.1103 18.219C27.753 18.3997 27.3636 18.5082 26.9643 18.5383C26.7338 18.5437 26.5088 18.4681 26.3283 18.3246L26.3667 17.6886L26.3715 17.6106C26.6027 15.9937 26.5047 14.3467 26.0835 12.7686C25.5866 11.6354 24.7668 10.6737 23.7266 10.0035C22.6864 9.3334 21.4719 8.98454 20.2346 9.00053L19.7522 9.00653C18.5171 8.99136 17.3049 9.34028 16.2669 10.0098C15.2288 10.6792 14.411 11.6396 13.9153 12.771C13.4935 14.3474 13.3948 15.9927 13.6249 17.6082C13.6409 17.8474 13.6553 18.0866 13.6681 18.3258C13.4691 18.4816 13.2193 18.5577 12.9673 18.5395C12.5433 18.5212 12.1282 18.4115 11.7505 18.2178C11.658 18.1769 11.5576 18.1569 11.4565 18.159C11.248 18.151 11.0423 18.2084 10.868 18.3231C10.6937 18.4378 10.5596 18.604 10.4845 18.7987C10.3861 19.3147 11.1229 19.6903 11.5717 19.8667C11.6677 19.9051 11.7853 19.9423 11.9113 19.9819C12.4177 20.1427 13.1833 20.3851 13.4137 20.9299C13.473 21.1076 13.4928 21.2961 13.4716 21.4822C13.4505 21.6684 13.3889 21.8476 13.2913 22.0075L13.2841 22.0207C12.9527 22.743 12.5208 23.4149 12.0013 24.0163C11.0575 25.1897 9.72221 25.9835 8.24045 26.252C8.17053 26.2637 8.10739 26.3007 8.06311 26.3561C8.01883 26.4114 7.99652 26.4812 8.00044 26.552C8.00315 26.6057 8.01534 26.6585 8.03644 26.708C8.24885 27.2012 9.30726 27.608 11.1001 27.8852C11.2681 27.9116 11.3377 28.1852 11.4361 28.6316C11.4745 28.8116 11.5153 28.9976 11.5717 29.1896C11.5904 29.2747 11.6401 29.3498 11.711 29.4003C11.782 29.4508 11.8692 29.4733 11.9557 29.4632C12.1271 29.4539 12.2973 29.4298 12.4645 29.3912C12.9061 29.2948 13.3565 29.2437 13.8085 29.2388C14.1338 29.2394 14.4585 29.2667 14.7793 29.3204C15.4562 29.4918 16.0857 29.8134 16.6214 30.2612C17.5255 31.0333 18.6617 31.481 19.8494 31.5332C19.889 31.5332 19.9298 31.532 19.9694 31.5284C20.0174 31.5308 20.0834 31.5332 20.1506 31.5332C21.3391 31.4811 22.4761 31.0334 23.381 30.2612C23.9159 29.8135 24.5446 29.492 25.2207 29.3204C25.5411 29.2668 25.8654 29.2396 26.1903 29.2388C26.642 29.241 27.0922 29.2889 27.5343 29.3816C27.7021 29.418 27.8727 29.4393 28.0443 29.4452H28.0731C28.1541 29.4516 28.2347 29.4284 28.2998 29.3798C28.3649 29.3313 28.4102 29.2607 28.4271 29.1812C28.4794 28.9981 28.5251 28.8132 28.5639 28.6268C28.6611 28.1816 28.7319 27.9092 28.8999 27.8828C30.6927 27.6068 31.7523 27.1988 31.9612 26.7092C31.983 26.6598 31.996 26.607 31.9996 26.5532C32.0035 26.4824 31.9812 26.4126 31.9369 26.3573C31.8926 26.3019 31.8295 26.2649 31.7596 26.2532L31.7584 26.252Z" fill="#EB3986"/>
</svg>

        </span>
        <span class="visually-hidden">Snapchat</span>
      </a>
    </li></ul>
<div class="locale-section"><div class="mobile-country-selector">
                  <localization-form><form method="post" action="/en-fr/localization" id="AnnouncementCountryForm" accept-charset="UTF-8" class="localization-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="return_to" value="/en-fr" /><div>
                        <h2 class="visually-hidden" id="AnnouncementCountryLabel">
                          Country/region
                        </h2><div class="disclosure">
  <button
          type="button"
          class="disclosure__button localization-form__select localization-selector link link--text caption-large"
          aria-expanded="false"
          aria-controls="AnnouncementCountry-country-results"
          aria-describedby="AnnouncementCountryLabel"
  ><p class="selected-country">FR&nbsp;(EUR €)
      </p><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>

  </button>

  <div class="disclosure__list-wrapper country-selector" hidden>
    <div class="country-filter">
      
        <div class="field">
          <input
                  class="country-filter__input field__input"
                  id="country-filter-input"
                  type="search"
                  name="country_filter"
                  value=""
                  placeholder="Search Country"
                  role="combobox"
                  aria-owns="country-results"
                  aria-controls="country-results"
                  aria-haspopup="listbox"
                  aria-autocomplete="list"
                  autocorrect="off"
                  autocomplete="off"
                  autocapitalize="off"
                  spellcheck="false"
          >
          <label class="field__label" for="country-filter-input">Search Country</label>
          <button
                  type="reset"
                  class="country-filter__reset-button field__button hidden"
                  aria-label="Clear search term"
          ><svg aria-hidden="true" fill="none" stroke="currentColor" class="icon icon-close" viewbox="0 0 18 18"><circle cx="9" cy="9" r="8.5" stroke-opacity=".2"/><path stroke-linecap="round" stroke-linejoin="round" d="M11.83 11.83 6.172 6.17M6.229 11.885l5.544-5.77"/></svg>
</button>
          <div class="country-filter__search-icon field__button motion-reduce"><svg aria-hidden="true" fill="none" viewbox="0 0 30 30" id="search-white" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.719.938C5.764.938.938 5.763.938 11.717c0 5.955 4.826 10.782 10.78 10.782 2.376 0 4.57-.768 6.352-2.069a.957.957 0 0 0 .092.107l8.86 8.86a.937.937 0 1 0 1.325-1.327l-8.859-8.859a.382.382 0 0 0-.01-.009A10.745 10.745 0 0 0 22.5 11.72C22.5 5.764 17.673.938 11.719.938zm-8.906 10.78a8.906 8.906 0 1 1 17.812 0 8.906 8.906 0 0 1-17.813 0z" fill="#fff"></path></svg></div>
        </div>
      
      <button
              class="country-selector__close-button button--small link"
              type="button"
              aria-label="Close"
      ><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-close" viewbox="0 0 18 17"><path fill="currentColor" d="M.865 15.978a.5.5 0 0 0 .707.707l7.433-7.431 7.579 7.282a.501.501 0 0 0 .846-.37.5.5 0 0 0-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 1 0-.707-.708L8.991 7.853 1.413.573a.5.5 0 1 0-.693.72l7.563 7.268z"/></svg>
</button>
    </div>

    <div id="sr-country-search-results" class="visually-hidden" aria-live="polite"></div>

    <div
            class="disclosure__list country-selector__list country-selector__list--with-multiple-currencies"
            id="AnnouncementCountry-country-results"
    >
      
<ul role="list" class="list-unstyled countries"><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="AL"
                      id="Albania"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Albania<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="DZ"
                      id="Algeria"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Algeria<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="AO"
                      id="Angola"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Angola<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="AM"
                      id="Armenia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Armenia<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="AU"
                      id="Australia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Australia<span class="localization-form__currency motion-reduce">(AUD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="AT"
                      id="Austria"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Austria<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="AZ"
                      id="Azerbaijan"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Azerbaijan<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="BH"
                      id="Bahrain"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Bahrain<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="BE"
                      id="Belgium"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Belgium<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="BM"
                      id="Bermuda"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Bermuda<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="BO"
                      id="Bolivia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Bolivia<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="BW"
                      id="Botswana"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Botswana<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="BN"
                      id="Brunei"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Brunei<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="BG"
                      id="Bulgaria"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Bulgaria<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="KH"
                      id="Cambodia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Cambodia<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="CA"
                      id="Canada"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Canada<span class="localization-form__currency motion-reduce">(CAD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="KY"
                      id="Cayman Islands"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Cayman Islands<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="CL"
                      id="Chile"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Chile<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="CO"
                      id="Colombia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Colombia<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="KM"
                      id="Comoros"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Comoros<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="CR"
                      id="Costa Rica"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Costa Rica<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="HR"
                      id="Croatia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Croatia<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="CW"
                      id="Curaçao"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Curaçao<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="CY"
                      id="Cyprus"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Cyprus<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="DK"
                      id="Denmark"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Denmark<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="DO"
                      id="Dominican Republic"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Dominican Republic<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="EC"
                      id="Ecuador"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Ecuador<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="SV"
                      id="El Salvador"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">El Salvador<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="EE"
                      id="Estonia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Estonia<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="ET"
                      id="Ethiopia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Ethiopia<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="FJ"
                      id="Fiji"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Fiji<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="FI"
                      id="Finland"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Finland<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                       aria-current="true"
                      data-value="FR"
                      id="France"
              >
                <span ><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">France<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="GM"
                      id="Gambia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Gambia<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="DE"
                      id="Germany"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Germany<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="GH"
                      id="Ghana"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Ghana<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="GL"
                      id="Greenland"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Greenland<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="GP"
                      id="Guadeloupe"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Guadeloupe<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="GT"
                      id="Guatemala"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Guatemala<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="GY"
                      id="Guyana"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Guyana<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="HN"
                      id="Honduras"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Honduras<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="HK"
                      id="Hong Kong SAR"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Hong Kong SAR<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="HU"
                      id="Hungary"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Hungary<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="IS"
                      id="Iceland"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Iceland<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="IN"
                      id="India"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">India<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="IE"
                      id="Ireland"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Ireland<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="IT"
                      id="Italy"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Italy<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="JM"
                      id="Jamaica"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Jamaica<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="JP"
                      id="Japan"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Japan<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="JO"
                      id="Jordan"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Jordan<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="KE"
                      id="Kenya"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Kenya<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="KW"
                      id="Kuwait"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Kuwait<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="KG"
                      id="Kyrgyzstan"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Kyrgyzstan<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="LV"
                      id="Latvia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Latvia<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="LU"
                      id="Luxembourg"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Luxembourg<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="MG"
                      id="Madagascar"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Madagascar<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="MW"
                      id="Malawi"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Malawi<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="MV"
                      id="Maldives"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Maldives<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="MT"
                      id="Malta"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Malta<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="MQ"
                      id="Martinique"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Martinique<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="MR"
                      id="Mauritania"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Mauritania<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="MD"
                      id="Moldova"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Moldova<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="ME"
                      id="Montenegro"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Montenegro<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="MZ"
                      id="Mozambique"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Mozambique<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="NP"
                      id="Nepal"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Nepal<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="NL"
                      id="Netherlands"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Netherlands<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="NC"
                      id="New Caledonia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">New Caledonia<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="NZ"
                      id="New Zealand"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">New Zealand<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="NG"
                      id="Nigeria"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Nigeria<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="NO"
                      id="Norway"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Norway<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="OM"
                      id="Oman"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Oman<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="PA"
                      id="Panama"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Panama<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="PG"
                      id="Papua New Guinea"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Papua New Guinea<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="PY"
                      id="Paraguay"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Paraguay<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="PH"
                      id="Philippines"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Philippines<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="PL"
                      id="Poland"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Poland<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="PT"
                      id="Portugal"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Portugal<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="QA"
                      id="Qatar"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Qatar<span class="localization-form__currency motion-reduce">(QAR ر.ق)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="RO"
                      id="Romania"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Romania<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="SA"
                      id="Saudi Arabia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Saudi Arabia<span class="localization-form__currency motion-reduce">(SAR ر.س)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="SG"
                      id="Singapore"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Singapore<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="SX"
                      id="Sint Maarten"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Sint Maarten<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="SK"
                      id="Slovakia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Slovakia<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="SI"
                      id="Slovenia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Slovenia<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="ZA"
                      id="South Africa"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">South Africa<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="KR"
                      id="South Korea"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">South Korea<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="ES"
                      id="Spain"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Spain<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="LK"
                      id="Sri Lanka"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Sri Lanka<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="LC"
                      id="St. Lucia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">St. Lucia<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="SR"
                      id="Suriname"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Suriname<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="SE"
                      id="Sweden"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Sweden<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="CH"
                      id="Switzerland"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Switzerland<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="TW"
                      id="Taiwan"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Taiwan<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="TZ"
                      id="Tanzania"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Tanzania<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="AE"
                      id="United Arab Emirates"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">United Arab Emirates<span class="localization-form__currency motion-reduce">(AED د.إ)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="GB"
                      id="United Kingdom"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">United Kingdom<span class="localization-form__currency motion-reduce">(GBP £)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="US"
                      id="United States"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">United States<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="VN"
                      id="Vietnam"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Vietnam<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li></ul></div>
  </div>

  <div class="country-selector__overlay"></div>
</div><input type="hidden" name="country_code" value="FR"></div>
                      <button type="submit" class="visually-hidden" tabindex="-1">Country/region</button></form></localization-form>
                </div>
              
            </div>
          </div>
        </div>
      </div>
    </div>
  </details>
</header-drawer>


  <div class="localization-wrapper small-hide"><localization-form><form method="post" action="/en-fr/localization" id="AnnouncementCountryForm" accept-charset="UTF-8" class="localization-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" name="_method" value="put" /><input type="hidden" name="return_to" value="/en-fr" /><div>
            <h2 class="visually-hidden" id="AnnouncementCountryLabel">Country/region</h2><div class="disclosure">
  <button
          type="button"
          class="disclosure__button localization-form__select localization-selector link link--text caption-large"
          aria-expanded="false"
          aria-controls="AnnouncementCountry-country-results"
          aria-describedby="AnnouncementCountryLabel"
  ><p class="selected-country">FR&nbsp;(EUR €)
      </p><svg aria-hidden="true" class="icon icon-caret" viewbox="0 0 10 6"><path fill="currentColor" fill-rule="evenodd" d="M9.354.646a.5.5 0 0 0-.708 0L5 4.293 1.354.646a.5.5 0 0 0-.708.708l4 4a.5.5 0 0 0 .708 0l4-4a.5.5 0 0 0 0-.708" clip-rule="evenodd"/></svg>

  </button>

  <div class="disclosure__list-wrapper country-selector" hidden>
    <div class="country-filter">
      
        <div class="field">
          <input
                  class="country-filter__input field__input"
                  id="country-filter-input"
                  type="search"
                  name="country_filter"
                  value=""
                  placeholder="Search Country"
                  role="combobox"
                  aria-owns="country-results"
                  aria-controls="country-results"
                  aria-haspopup="listbox"
                  aria-autocomplete="list"
                  autocorrect="off"
                  autocomplete="off"
                  autocapitalize="off"
                  spellcheck="false"
          >
          <label class="field__label" for="country-filter-input">Search Country</label>
          <button
                  type="reset"
                  class="country-filter__reset-button field__button hidden"
                  aria-label="Clear search term"
          ><svg aria-hidden="true" fill="none" stroke="currentColor" class="icon icon-close" viewbox="0 0 18 18"><circle cx="9" cy="9" r="8.5" stroke-opacity=".2"/><path stroke-linecap="round" stroke-linejoin="round" d="M11.83 11.83 6.172 6.17M6.229 11.885l5.544-5.77"/></svg>
</button>
          <div class="country-filter__search-icon field__button motion-reduce"><svg aria-hidden="true" fill="none" viewbox="0 0 30 30" id="search-white" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.719.938C5.764.938.938 5.763.938 11.717c0 5.955 4.826 10.782 10.78 10.782 2.376 0 4.57-.768 6.352-2.069a.957.957 0 0 0 .092.107l8.86 8.86a.937.937 0 1 0 1.325-1.327l-8.859-8.859a.382.382 0 0 0-.01-.009A10.745 10.745 0 0 0 22.5 11.72C22.5 5.764 17.673.938 11.719.938zm-8.906 10.78a8.906 8.906 0 1 1 17.812 0 8.906 8.906 0 0 1-17.813 0z" fill="#fff"></path></svg></div>
        </div>
      
      <button
              class="country-selector__close-button button--small link"
              type="button"
              aria-label="Close"
      ><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-close" viewbox="0 0 18 17"><path fill="currentColor" d="M.865 15.978a.5.5 0 0 0 .707.707l7.433-7.431 7.579 7.282a.501.501 0 0 0 .846-.37.5.5 0 0 0-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 1 0-.707-.708L8.991 7.853 1.413.573a.5.5 0 1 0-.693.72l7.563 7.268z"/></svg>
</button>
    </div>

    <div id="sr-country-search-results" class="visually-hidden" aria-live="polite"></div>

    <div
            class="disclosure__list country-selector__list country-selector__list--with-multiple-currencies"
            id="AnnouncementCountry-country-results"
    >
      
<ul role="list" class="list-unstyled countries"><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="AL"
                      id="Albania"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Albania<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="DZ"
                      id="Algeria"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Algeria<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="AO"
                      id="Angola"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Angola<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="AM"
                      id="Armenia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Armenia<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="AU"
                      id="Australia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Australia<span class="localization-form__currency motion-reduce">(AUD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="AT"
                      id="Austria"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Austria<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="AZ"
                      id="Azerbaijan"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Azerbaijan<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="BH"
                      id="Bahrain"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Bahrain<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="BE"
                      id="Belgium"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Belgium<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="BM"
                      id="Bermuda"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Bermuda<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="BO"
                      id="Bolivia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Bolivia<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="BW"
                      id="Botswana"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Botswana<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="BN"
                      id="Brunei"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Brunei<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="BG"
                      id="Bulgaria"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Bulgaria<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="KH"
                      id="Cambodia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Cambodia<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="CA"
                      id="Canada"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Canada<span class="localization-form__currency motion-reduce">(CAD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="KY"
                      id="Cayman Islands"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Cayman Islands<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="CL"
                      id="Chile"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Chile<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="CO"
                      id="Colombia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Colombia<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="KM"
                      id="Comoros"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Comoros<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="CR"
                      id="Costa Rica"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Costa Rica<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="HR"
                      id="Croatia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Croatia<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="CW"
                      id="Curaçao"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Curaçao<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="CY"
                      id="Cyprus"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Cyprus<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="DK"
                      id="Denmark"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Denmark<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="DO"
                      id="Dominican Republic"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Dominican Republic<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="EC"
                      id="Ecuador"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Ecuador<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="SV"
                      id="El Salvador"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">El Salvador<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="EE"
                      id="Estonia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Estonia<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="ET"
                      id="Ethiopia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Ethiopia<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="FJ"
                      id="Fiji"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Fiji<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="FI"
                      id="Finland"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Finland<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                       aria-current="true"
                      data-value="FR"
                      id="France"
              >
                <span ><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">France<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="GM"
                      id="Gambia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Gambia<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="DE"
                      id="Germany"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Germany<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="GH"
                      id="Ghana"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Ghana<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="GL"
                      id="Greenland"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Greenland<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="GP"
                      id="Guadeloupe"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Guadeloupe<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="GT"
                      id="Guatemala"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Guatemala<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="GY"
                      id="Guyana"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Guyana<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="HN"
                      id="Honduras"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Honduras<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="HK"
                      id="Hong Kong SAR"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Hong Kong SAR<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="HU"
                      id="Hungary"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Hungary<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="IS"
                      id="Iceland"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Iceland<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="IN"
                      id="India"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">India<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="IE"
                      id="Ireland"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Ireland<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="IT"
                      id="Italy"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Italy<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="JM"
                      id="Jamaica"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Jamaica<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="JP"
                      id="Japan"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Japan<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="JO"
                      id="Jordan"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Jordan<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="KE"
                      id="Kenya"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Kenya<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="KW"
                      id="Kuwait"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Kuwait<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="KG"
                      id="Kyrgyzstan"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Kyrgyzstan<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="LV"
                      id="Latvia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Latvia<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="LU"
                      id="Luxembourg"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Luxembourg<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="MG"
                      id="Madagascar"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Madagascar<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="MW"
                      id="Malawi"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Malawi<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="MV"
                      id="Maldives"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Maldives<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="MT"
                      id="Malta"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Malta<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="MQ"
                      id="Martinique"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Martinique<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="MR"
                      id="Mauritania"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Mauritania<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="MD"
                      id="Moldova"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Moldova<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="ME"
                      id="Montenegro"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Montenegro<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="MZ"
                      id="Mozambique"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Mozambique<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="NP"
                      id="Nepal"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Nepal<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="NL"
                      id="Netherlands"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Netherlands<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="NC"
                      id="New Caledonia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">New Caledonia<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="NZ"
                      id="New Zealand"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">New Zealand<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="NG"
                      id="Nigeria"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Nigeria<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="NO"
                      id="Norway"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Norway<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="OM"
                      id="Oman"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Oman<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="PA"
                      id="Panama"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Panama<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="PG"
                      id="Papua New Guinea"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Papua New Guinea<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="PY"
                      id="Paraguay"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Paraguay<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="PH"
                      id="Philippines"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Philippines<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="PL"
                      id="Poland"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Poland<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="PT"
                      id="Portugal"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Portugal<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="QA"
                      id="Qatar"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Qatar<span class="localization-form__currency motion-reduce">(QAR ر.ق)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="RO"
                      id="Romania"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Romania<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="SA"
                      id="Saudi Arabia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Saudi Arabia<span class="localization-form__currency motion-reduce">(SAR ر.س)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="SG"
                      id="Singapore"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Singapore<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="SX"
                      id="Sint Maarten"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Sint Maarten<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="SK"
                      id="Slovakia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Slovakia<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="SI"
                      id="Slovenia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Slovenia<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="ZA"
                      id="South Africa"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">South Africa<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="KR"
                      id="South Korea"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">South Korea<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="ES"
                      id="Spain"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Spain<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="LK"
                      id="Sri Lanka"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Sri Lanka<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="LC"
                      id="St. Lucia"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">St. Lucia<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="SR"
                      id="Suriname"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Suriname<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="SE"
                      id="Sweden"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Sweden<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="CH"
                      id="Switzerland"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Switzerland<span class="localization-form__currency motion-reduce">(EUR €)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="TW"
                      id="Taiwan"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Taiwan<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="TZ"
                      id="Tanzania"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Tanzania<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="AE"
                      id="United Arab Emirates"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">United Arab Emirates<span class="localization-form__currency motion-reduce">(AED د.إ)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="GB"
                      id="United Kingdom"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">United Kingdom<span class="localization-form__currency motion-reduce">(GBP £)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="US"
                      id="United States"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">United States<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li><li class="disclosure__item" tabindex="-1">
              <a
                      class="link link--text disclosure__link caption-large focus-inset"
                      href="#"
                      
                      data-value="VN"
                      id="Vietnam"
              >
                <span class="visibility-hidden"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-checkmark" viewbox="0 0 12 9"><path fill="currentColor" fill-rule="evenodd" d="M11.35.643a.5.5 0 0 1 .006.707l-6.77 6.886a.5.5 0 0 1-.719-.006L.638 4.845a.5.5 0 1 1 .724-.69l2.872 3.011 6.41-6.517a.5.5 0 0 1 .707-.006z" clip-rule="evenodd"/></svg>
</span>
                <span class="country">Vietnam<span class="localization-form__currency motion-reduce">(USD $)</span></span>
              </a>
            </li></ul></div>
  </div>

  <div class="country-selector__overlay"></div>
</div><input type="hidden" name="country_code" value="FR"></div>
          <button type="submit" class="visually-hidden" tabindex="-1">Country/region</button></form></localization-form>
    
</div><div class="header__heading"><a href="/en-fr" class="header__heading-link link link--text focus-inset"><div class="header__heading-logo-wrapper">
          
          <img src="//hudabeauty.com/cdn/shop/files/Group_25_f0b82e6d-009c-4822-b0df-8a5869162940.png?v=1760041164&amp;width=600" alt="Huda Beauty" srcset="//hudabeauty.com/cdn/shop/files/Group_25_f0b82e6d-009c-4822-b0df-8a5869162940.png?v=1760041164&amp;width=220 220w, //hudabeauty.com/cdn/shop/files/Group_25_f0b82e6d-009c-4822-b0df-8a5869162940.png?v=1760041164&amp;width=330 330w, //hudabeauty.com/cdn/shop/files/Group_25_f0b82e6d-009c-4822-b0df-8a5869162940.png?v=1760041164&amp;width=440 440w" width="220" height="38.97142857142857" loading="eager" class="header__heading-logo" sizes="(min-width: 750px) 220px, 50vw">
        </div></a></div><div class="header__icons header__icons--localization header-localization">
    

<link href="//hudabeauty.com/cdn/shop/t/162/assets/component-card.css?v=183669816822881184091775984104" rel="stylesheet" type="text/css" media="all" />
<link href="//hudabeauty.com/cdn/shop/t/162/assets/component-price.css?v=14160622623067344551775984107" rel="stylesheet" type="text/css" media="all" />
<link href="//hudabeauty.com/cdn/shop/t/162/assets/quick-add.css?v=38743820352346349611775984107" rel="stylesheet" type="text/css" media="all" />
<script src="//hudabeauty.com/cdn/shop/t/162/assets/product-form.js?v=63787153882523864621775984108" defer="defer"></script>

<script src="//hudabeauty.com/cdn/shop/t/162/assets/quick-add.js?v=156640678623110567901775984108" defer="defer"></script>

<details-modal class="header__search">
  <details>
    <summary
      class="header__icon header__icon--search header__icon--summary link focus-inset modal__toggle"
      aria-haspopup="dialog"
      aria-label="What are you looking for?"
    >
      <span>
        <span class="svg-wrapper"><svg aria-hidden="true" fill="none" viewbox="0 0 30 30" id="search-white" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.719.938C5.764.938.938 5.763.938 11.717c0 5.955 4.826 10.782 10.78 10.782 2.376 0 4.57-.768 6.352-2.069a.957.957 0 0 0 .092.107l8.86 8.86a.937.937 0 1 0 1.325-1.327l-8.859-8.859a.382.382 0 0 0-.01-.009A10.745 10.745 0 0 0 22.5 11.72C22.5 5.764 17.673.938 11.719.938zm-8.906 10.78a8.906 8.906 0 1 1 17.812 0 8.906 8.906 0 0 1-17.813 0z" fill="#fff"></path></svg></span>
        <span class="svg-wrapper header__icon-close"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-close" viewbox="0 0 18 17"><path fill="currentColor" d="M.865 15.978a.5.5 0 0 0 .707.707l7.433-7.431 7.579 7.282a.501.501 0 0 0 .846-.37.5.5 0 0 0-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 1 0-.707-.708L8.991 7.853 1.413.573a.5.5 0 1 0-.693.72l7.563 7.268z"/></svg>
</span>
      </span>
    </summary>
    <div
      class="search-modal modal__content gradient"
      role="dialog"
      aria-modal="true"
      aria-label="What are you looking for?"
    >
      <div class="modal-overlay"></div>
      <div
        class="search-modal__content search-modal__content-bottom"
        tabindex="-1"
      ><predictive-search
            class="search-modal__form"
            data-loading-text="Loading..."
          ><form
          action="/en-fr/search"
          method="get"
          role="search"
          class="search search-modal__form"
        >
          <div class="field">
            <input
              class="search__input field__input"
              id="Search-In-Modal"
              type="search"
              name="q"
              value=""
              placeholder="<h5>What are you looking for?</h5>">
            <label class="field__label" for="Search-In-Modal">
              <h5>What are you looking for?</h5>
            </label>
            <input type="hidden" name="options[prefix]" value="last">
          </div><div class="predictive-search predictive-search--header" tabindex="-1" data-predictive-search><div class="default-search-result hide">
  <div class="collections">
    <h5>Search Suggestions</h5>
    <div class="default-search-collection">
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
          <a href="/en-fr/collections/face-concealer">Concealer & Corrector</a>
        
      
        
      
        
          <a href="/en-fr/collections/face-contour-highlight">Contour & Highlight</a>
        
      
        
      
        
      
        
      
        
      
        
      
        
          <a href="/en-fr/collections/easy-bake">Easy Bake</a>
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
          <a href="/en-fr/collections/face-foundation">Foundation</a>
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
          <a href="/en-fr/collections/face-powder-setting-spray">Powder & Setting Spray</a>
        
      
        
      
        
          <a href="/en-fr/collections/face-primer">Primer</a>
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
        
      
    </div>
  </div>
  <ul
    id="predictive-search-results-products-list"
    class="grid product-grid contains-card predictive-search__results-list list-unstyled"
    role="group"
    aria-labelledby="predictive-search-products"
  >
      

      <li
        id="predictive-search-option-product-1"
        class="predictive-search__list-item"
        role="option"
        aria-selected="false"
      >
        



  























  

  

  

  






























  
  

  
    
    




<section
  class="featured-card-product"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB01693"
    dl-product-name="Blush Filter Blurring Blushlighters Palette"
    dl-product-brand="Huda Beauty"
    dl-product-category="Cheek"
    dl-product-category2="Huda Beauty"
    dl-product-category3=""
    dl-product-variant="HB01693"
    dl-product-price="43,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/blush-filter-blurring-blushlighters-palette-hb01577m?variant=51158622044438"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE_BLUSH-FILTER_PDP_PACKSHOT.webp?v=1774423100&width=630 1x,            //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE_BLUSH-FILTER_PDP_PACKSHOT.webp?v=1774423100&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/blush-filter-blurring-blushlighters-palette-hb01577m?variant=51158622044438"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE_BLUSH-FILTER_PDP_PACKSHOT.webp?v=1774423100&width=630"
          alt="Blush Filter Blurring Blushlighters Palette - Strawberry Latte"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/Artboard_129_1.webp?v=1774423113&width=630 1x,              //hudabeauty.com/cdn/shop/files/Artboard_129_1.webp?v=1774423113&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/Artboard_129_1.webp?v=1774423113&width=630"
            alt="Blush Filter Liquid Blush Strawberry Latte editorial makeup look"
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">NEW</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-sections--26760397881622__header-10305187217686"
      class="product__info-container"
      data-section="sections--26760397881622__header"
      data-url="/en-fr/products/blush-filter-blurring-blushlighters-palette-hb01577m?variant=51158622044438"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/blush-filter-blurring-blushlighters-palette-hb01577m?variant=51158622044438">
          
            <h2 class="h6">Blush Filter Blurring Blushlighters Palette
</h2>
          
        </a>
      </div>
      
      
        <div class="featured-card_product-description mt-xs mb-xs caption">
          
            A dreamy blush palette featuring 3 ultra-pigmented matte shades and a radiant blushlighter for buildable, soft-focus, filtered colour.
          
        </div>
      

      <div
        class="product_card_price mb-sm"
        id="price-sections--26760397881622__header"
        data-url="/en-fr/products/blush-filter-blurring-blushlighters-palette-hb01577m?variant=51158622044438"
        role="status"
        
      >


<div
    class="price      price-section-data price--large"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €43,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €43,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€-43,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker mb-xs">
        
          


<div class="loading__spinner">
  <svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" class="spinner" viewbox="0 0 66 66"><circle stroke-width="6" cx="33" cy="33" r="30" fill="none" class="path"/></svg>

</div>


<link href="//hudabeauty.com/cdn/shop/t/162/assets/product-card-swatches.css?v=48729697193943970631775984107" rel="stylesheet" type="text/css" media="all" />





<div
  class="product-card-swatches search-modal-swatches"
  data-handle="blush-filter-blurring-blushlighters-palette-hb01577m"
>

        

        
        
        
        
        
<div class="product-swatch-new-wrapper">
            <span class="swatch-new-badge">NEW</span>
          <div
            data-id="51158622044438"
            class="product-swatch br-round"
            style="background-color: #B05A65; display: flex;"
            aria-label="Strawberry Latte"
            title="Strawberry Latte"
          ></div>
        
</div>


        

        
        
        
        
        

          <div
            data-id="50758522110230"
            class="product-swatch br-round"
            style="background-color: #e76d86; display: flex;"
            aria-label="Rose Berry"
            title="Rose Berry"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50758522142998"
            class="product-swatch br-round"
            style="background-color: #e97a78; display: flex;"
            aria-label="Toasty Peach"
            title="Toasty Peach"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50758522077462"
            class="product-swatch br-round"
            style="background-color: #ff7eb8; display: flex;"
            aria-label="Baby Pink"
            title="Baby Pink"
          ></div>
        

<div class="no-js-hidden quick-add"><modal-opener data-modal="#QuickAdd-10305187217686">
          <button
            id="-submit"
            type="button"
            name="add"
            class="color-swatch-item br-round featured-card_choose-more-colors"
            aria-haspopup="dialog"
            aria-labelledby="-submit title--10305187217686"
            data-product-url="/en-fr/products/blush-filter-blurring-blushlighters-palette-hb01577m?view=quick-view"
            data-handle="blush-filter-blurring-blushlighters-palette-hb01577m"
          ><svg aria-hidden="true" width="10" height="11" viewbox="0 0 10 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Plus">
<path id="Vector 4" d="M0 5.5H10" stroke="black"/>
<path id="Vector 3" d="M5 0.5V10.5" stroke="black"/>
</g>
</svg>
</button>
        </modal-opener>
        <quick-add-modal id="QuickAdd-10305187217686" class="quick-add-modal">
          <div
            role="dialog"
            aria-label="Choose options for Blush Filter Blurring Blushlighters Palette"
            aria-modal="true"
            class="quick-add-modal__content global-settings-popup"
            tabindex="-1"
          >
            <button
              id="ModalClose-10305187217686"
              type="button"
              class="popup__close"
              aria-label="Close"
            ><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewbox="0 0 20 19" fill="none">
  <path d="M18.9999 0.5L1.25488 18.245L18.9999 0.5Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
  <path d="M18.745 18.245L1 0.5L18.745 18.245Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
</svg></button>
            <div id="QuickAddInfo-10305187217686" class="quick-add-modal__content-info"></div>
          </div>
        </quick-add-modal></div></div><script type="application/json" data-selected-variant-meta>
  {
    "default_selected_variant": {"id":51158622044438,"title":"Strawberry Latte","option1":"Strawberry Latte","option2":null,"option3":null,"sku":"HB01693","requires_shipping":true,"taxable":true,"featured_image":{"id":54898466521366,"product_id":10305187217686,"position":5,"created_at":"2026-03-29T11:22:30+04:00","updated_at":"2026-03-29T11:23:30+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_BLUSH-FILTER_PDP_PACKSHOT_1.webp?v=1774769010","variant_ids":[51158622044438]},"available":true,"name":"Blush Filter Blurring Blushlighters Palette - Strawberry Latte","public_title":"Strawberry Latte","options":["Strawberry Latte"],"price":4300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409151","featured_media":{"alt":null,"id":44699700396310,"position":5,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_BLUSH-FILTER_PDP_PACKSHOT_1.webp?v=1774769010"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},
    "product": {"id":10305187217686,"title":"Blush Filter Blurring Blushlighters Palette","handle":"blush-filter-blurring-blushlighters-palette-hb01577m","description":"","published_at":"2026-02-24T17:18:05+04:00","created_at":"2025-11-23T10:18:46+04:00","vendor":"Huda Beauty","type":"","tags":["HB"],"price":4300,"price_min":4300,"price_max":4300,"available":true,"price_varies":false,"compare_at_price":null,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":51158622044438,"title":"Strawberry Latte","option1":"Strawberry Latte","option2":null,"option3":null,"sku":"HB01693","requires_shipping":true,"taxable":true,"featured_image":{"id":54898466521366,"product_id":10305187217686,"position":5,"created_at":"2026-03-29T11:22:30+04:00","updated_at":"2026-03-29T11:23:30+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_BLUSH-FILTER_PDP_PACKSHOT_1.webp?v=1774769010","variant_ids":[51158622044438]},"available":true,"name":"Blush Filter Blurring Blushlighters Palette - Strawberry Latte","public_title":"Strawberry Latte","options":["Strawberry Latte"],"price":4300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409151","featured_media":{"alt":null,"id":44699700396310,"position":5,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_BLUSH-FILTER_PDP_PACKSHOT_1.webp?v=1774769010"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50758522110230,"title":"Rose Berry","option1":"Rose Berry","option2":null,"option3":null,"sku":"HB01577","requires_shipping":true,"taxable":true,"featured_image":{"id":53112543248662,"product_id":10305187217686,"position":2,"created_at":"2025-11-24T16:48:24+04:00","updated_at":"2025-11-25T13:03:16+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_ROSEWOOD.webp?v=1764061396","variant_ids":[50758522110230]},"available":true,"name":"Blush Filter Blurring Blushlighters Palette - Rose Berry","public_title":"Rose Berry","options":["Rose Berry"],"price":4300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":43105576550678,"position":2,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_ROSEWOOD.webp?v=1764061396"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50758522142998,"title":"Toasty Peach","option1":"Toasty Peach","option2":null,"option3":null,"sku":"HB01568","requires_shipping":true,"taxable":true,"featured_image":{"id":53113145753878,"product_id":10305187217686,"position":3,"created_at":"2025-11-24T17:44:20+04:00","updated_at":"2025-11-25T13:03:16+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_TOASTYPEACH.webp?v=1764061396","variant_ids":[50758522142998]},"available":true,"name":"Blush Filter Blurring Blushlighters Palette - Toasty Peach","public_title":"Toasty Peach","options":["Toasty Peach"],"price":4300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":43106092253462,"position":3,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_TOASTYPEACH.webp?v=1764061396"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50758522077462,"title":"Baby Pink","option1":"Baby Pink","option2":null,"option3":null,"sku":"HB01567","requires_shipping":true,"taxable":true,"featured_image":{"id":53113196347670,"product_id":10305187217686,"position":4,"created_at":"2025-11-24T17:48:28+04:00","updated_at":"2025-11-25T13:03:16+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_BABYPINK.webp?v=1764061396","variant_ids":[50758522077462]},"available":true,"name":"Blush Filter Blurring Blushlighters Palette - Baby Pink","public_title":"Baby Pink","options":["Baby Pink"],"price":4300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":43106134819094,"position":4,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_BABYPINK.webp?v=1764061396"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}],"images":["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_PACKSHOTS_FINAL_BABYPINK.jpg?v=1763882814","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_ROSEWOOD.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_TOASTYPEACH.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_BABYPINK.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_BLUSH-FILTER_PDP_PACKSHOT_1.webp?v=1774769010"],"featured_image":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_PACKSHOTS_FINAL_BABYPINK.jpg?v=1763882814","options":["Shade"],"media":[{"alt":null,"id":43089162174742,"position":1,"preview_image":{"aspect_ratio":1.0,"height":1024,"width":1024,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_PACKSHOTS_FINAL_BABYPINK.jpg?v=1763882814"},"aspect_ratio":1.0,"height":1024,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_PACKSHOTS_FINAL_BABYPINK.jpg?v=1763882814","width":1024},{"alt":null,"id":43105576550678,"position":2,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_ROSEWOOD.webp?v=1764061396"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_ROSEWOOD.webp?v=1764061396","width":3000},{"alt":null,"id":43106092253462,"position":3,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_TOASTYPEACH.webp?v=1764061396"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_TOASTYPEACH.webp?v=1764061396","width":3000},{"alt":null,"id":43106134819094,"position":4,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_BABYPINK.webp?v=1764061396"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_BABYPINK.webp?v=1764061396","width":3000},{"alt":null,"id":44699700396310,"position":5,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_BLUSH-FILTER_PDP_PACKSHOT_1.webp?v=1774769010"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_BLUSH-FILTER_PDP_PACKSHOT_1.webp?v=1774769010","width":3000}],"requires_selling_plan":false,"selling_plan_groups":[],"content":""},
    "variants": [
      
{
          "id": 51158622044438,
          "title": "Strawberry Latte",
          "available": true,
          "inventory": 3174,
          "max_product_quantity": 5,
          "price": "€43,00",
          "save_price": "€-43,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_BLUSH-FILTER_PDP_PACKSHOT.webp?v=1774423100","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_129_1.webp?v=1774423113","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_129_2.webp?v=1774423119","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_129_3.webp?v=1774423117","\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_PALETTE_PDP_OVERALL_FINAL-16.webp?v=1774423101","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_129_5.webp?v=1774423108","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_129_4.webp?v=1774423119","\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_PALETTE_PDP_OVERALL_FINAL-17.webp?v=1774423098","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_129_7.webp?v=1774423119","\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_PALETTE_PDP_OVERALL_FINAL-18.webp?v=1774423097"],
              "shortDescription": "A dreamy blush palette featuring 3 ultra-pigmented matte shades and a radiant blushlighter for buildable, soft-focus, filtered colour.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50758522110230,
          "title": "Rose Berry",
          "available": true,
          "inventory": 98,
          "max_product_quantity": 5,
          "price": "€43,00",
          "save_price": "€-43,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_ROSEWOOD.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_BEAUTY-ECOMM_ROSEWOOD.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_SHADE-RANGE-ECOMM_ROSEWOOD.webp?v=1764063787","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_INFOGRAPHICS_BABYPINK_ECOMM_HUDA-POD.webp?v=1764063787","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_ARMSWATCHES_ECOMM.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_INFOGRAPHICS_ROSEBERRY_ECOMM_TEXTURES.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_INFOGRAPHICS_ROSEBERRY_ECOMM_SHADE-NAV.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_INFOGRAPHICS_ROSEBERRY_ECOMM.webp?v=1763988505","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_INFOGRAPHICS_BABYPINK_FINAL_COLLECTION.jpg?v=1764063787"],
              "shortDescription": "A dreamy blush palette featuring 3 ultra-pigmented matte shades and a radiant blushlighter for buildable, soft-focus, filtered colour.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50758522142998,
          "title": "Toasty Peach",
          "available": true,
          "inventory": 207,
          "max_product_quantity": 5,
          "price": "€43,00",
          "save_price": "€-43,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_TOASTYPEACH.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_BEAUTY-ECOMM_TOASTYPEACH.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_SHADE-RANGE-ECOMM_TOASTYPEACH.webp?v=1764063787","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_INFOGRAPHICS_BABYPINK_ECOMM_HUDA-POD.webp?v=1764063787","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_ARMSWATCHES_ECOMM.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_INFOGRAPHICS_TOASTYPEACH_ECOMM__-01.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_INFOGRAPHICS_TOASTYPEACH_ECOMM__-02.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_INFOGRAPHICS_TOASTYPEACH_ECOMM_POD-PRODUCT.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_INFOGRAPHICS_BABYPINK_FINAL_COLLECTION.jpg?v=1764063787"],
              "shortDescription": "A dreamy blush palette featuring 3 ultra-pigmented matte shades and a radiant blushlighter for buildable, soft-focus, filtered colour.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50758522077462,
          "title": "Baby Pink",
          "available": true,
          "inventory": 209,
          "max_product_quantity": 5,
          "price": "€43,00",
          "save_price": "€-43,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_BABYPINK.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_BEAUTY-ECOMM_BABYPINK.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BFP-BABY-PINK-KIT-TILE3.webp?v=1764061255","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BFP_BABYPINK_HUDA-POD-TILE6.webp?v=1764062198","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_ARMSWATCHES_ECOMM.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BFP-BABY-PINK-KIT-TILE2.webp?v=1764061254","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_INFOGRAPHICS_BABYPINK_ECOMM__SHADE_NAV.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BFP-BABY-PINK-KIT-TILE4.webp?v=1764061248","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_INFOGRAPHICS_BABYPINK_FINAL_COLLECTION.jpg?v=1764063787"],
              "shortDescription": "A dreamy blush palette featuring 3 ultra-pigmented matte shades and a radiant blushlighter for buildable, soft-focus, filtered colour.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        }
      
    ]
  }
</script>

          
          
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10305187217686"><div data-oke-reviews-version="0.87.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 4.9 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 98.3516%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 4.9 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">4.9</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"4.9","reviewCount":113} </script></div></div>
    
        (113)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB01693" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        











<div  class="back-in-stock-container" style="display: none;"><div class="product-back-in-stock-buttons">
    
    

    
    
  </div></div>

        

         
          
















<div
  
  class="waitlist-container"
  
    style="display: none;"
  
><div class="product-waitlist-buttons">
      
      
        <a href="/en-fr/products/blush-filter-blurring-blushlighters-palette-hb01577m?variant=51158622044438" class="button button--primary notify-me-btn">Notify Me</a>
      
    </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="sections--26760397881622__header"
      data-form-id="product-form-sections--26760397881622__header"
      dl-product-id="HB01693"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-sections--26760397881622__header" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="51158622044438"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="3174"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <button
              id="ProductSubmitButton-sections--26760397881622__header"
              data-dl-source="Defaul Search"
              data-url="/en-fr/products/blush-filter-blurring-blushlighters-palette-hb01577m?variant=51158622044438"
              type="submit"
              name="add"
              class="product-form__submit button button--full-width button--primary"
              
              
            >
              <span>
                Add to Bag
              </span>
            </button></div><input type="hidden" name="product-id" value="10305187217686" /><input type="hidden" name="section-id" value="sections--26760397881622__header" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li>
      

      <li
        id="predictive-search-option-product-2"
        class="predictive-search__list-item"
        role="option"
        aria-selected="false"
      >
        



  







  

      
      
















  

  

  

  

  

  

  

  

  

  

  

  

  

  






























  
  

  
    
    




<section
  class="featured-card-product"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB01731"
    dl-product-name="Blush Filter Liquid Blush"
    dl-product-brand="Huda Beauty US"
    dl-product-category="Blush"
    dl-product-category2="Cheek"
    dl-product-category3=""
    dl-product-variant="HB01731"
    dl-product-price="28,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/blush-filter-liquid-blush-hb01345m?variant=51161393529110"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494&width=630 1x,            //hudabeauty.com/cdn/shop/files/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/blush-filter-liquid-blush-hb01345m?variant=51161393529110"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494&width=630"
          alt="Blush Filter Liquid Blush -  Strawberry Latte"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/Artboard_140_3_1.webp?v=1774424665&width=630 1x,              //hudabeauty.com/cdn/shop/files/Artboard_140_3_1.webp?v=1774424665&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/Artboard_140_3_1.webp?v=1774424665&width=630"
            alt="Blush Filter Liquid Blush -  Strawberry Latte Before and After "
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">NEW</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-sections--26760397881622__header-10234761937174"
      class="product__info-container"
      data-section="sections--26760397881622__header"
      data-url="/en-fr/products/blush-filter-liquid-blush-hb01345m?variant=51161393529110"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/blush-filter-liquid-blush-hb01345m?variant=51161393529110">
          
            <h2 class="h6">Blush Filter Liquid Blush
</h2>
          
        </a>
      </div>
      
      
        <div class="featured-card_product-description mt-xs mb-xs caption">
          
            Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.
          
        </div>
      

      <div
        class="product_card_price mb-sm"
        id="price-sections--26760397881622__header"
        data-url="/en-fr/products/blush-filter-liquid-blush-hb01345m?variant=51161393529110"
        role="status"
        
      >


<div
    class="price      price-section-data price--large"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €28,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €28,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€-28,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker mb-xs">
        
          


<div class="loading__spinner">
  <svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" class="spinner" viewbox="0 0 66 66"><circle stroke-width="6" cx="33" cy="33" r="30" fill="none" class="path"/></svg>

</div>


<link href="//hudabeauty.com/cdn/shop/t/162/assets/product-card-swatches.css?v=48729697193943970631775984107" rel="stylesheet" type="text/css" media="all" />





<div
  class="product-card-swatches search-modal-swatches"
  data-handle="blush-filter-liquid-blush-hb01345m"
>

        

        
        
        
        
        
<div class="product-swatch-new-wrapper">
            <span class="swatch-new-badge">NEW</span>
          <div
            data-id="51161393529110"
            class="product-swatch br-round"
            style="background-color: #AE4C4A; display: flex;"
            aria-label="Strawberry Latte"
            title="Strawberry Latte"
          ></div>
        
</div>


        

        
        
        
        
        
<div class="product-swatch-new-wrapper">
            <span class="swatch-new-badge">NEW</span>
          <div
            data-id="51161394774294"
            class="product-swatch br-round"
            style="background-color: #ba548a ; display: flex;"
            aria-label="Ube Berry"
            title="Ube Berry"
          ></div>
        
</div>


        

        
        
        
        
        
<div class="product-swatch-new-wrapper">
            <span class="swatch-new-badge">NEW</span>
          <div
            data-id="51161397625110"
            class="product-swatch br-round"
            style="background-color: #9A2439; display: flex;"
            aria-label="Berry Fever"
            title="Berry Fever"
          ></div>
        
</div>


        

        
        
        
        
        

          <div
            data-id="50573490979094"
            class="product-swatch br-round"
            style="background-color: #BF7184; display: flex;"
            aria-label="Strawberry Cream"
            title="Strawberry Cream"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573490848022"
            class="product-swatch br-round"
            style="background-color: #F6A3BB; display: flex;"
            aria-label="Cotton Candy"
            title="Cotton Candy"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573491011862"
            class="product-swatch br-round"
            style="background-color: #F79FAF; display: flex;"
            aria-label="Bubble Gum"
            title="Bubble Gum"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="51053742162198"
            class="product-swatch br-round"
            style="background-color: #EBB9D6; display: flex;"
            aria-label="Ube Cream"
            title="Ube Cream"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573491077398"
            class="product-swatch br-round"
            style="background-color: #F23F6D; display: flex;"
            aria-label="Intense Guava"
            title="Intense Guava"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573490946326"
            class="product-swatch br-round"
            style="background-color: #8D2153; display: flex;"
            aria-label="Black Cherry"
            title="Black Cherry"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573491142934"
            class="product-swatch br-round"
            style="background-color: #523234; display: flex;"
            aria-label="Coco Loco"
            title="Coco Loco"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573491110166"
            class="product-swatch br-round"
            style="background-color: #743B3A; display: flex;"
            aria-label="Latte"
            title="Latte"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573491044630"
            class="product-swatch br-round"
            style="background-color: #DA6350; display: flex;"
            aria-label="Sunset Lychee"
            title="Sunset Lychee"
          ></div>
        





<div class="no-js-hidden quick-add"><modal-opener data-modal="#QuickAdd-10234761937174">
          <button
            id="-submit"
            type="button"
            name="add"
            class="color-swatch-item br-round featured-card_choose-more-colors"
            aria-haspopup="dialog"
            aria-labelledby="-submit title--10234761937174"
            data-product-url="/en-fr/products/blush-filter-liquid-blush-hb01345m?view=quick-view"
            data-handle="blush-filter-liquid-blush-hb01345m"
          ><svg aria-hidden="true" width="10" height="11" viewbox="0 0 10 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Plus">
<path id="Vector 4" d="M0 5.5H10" stroke="black"/>
<path id="Vector 3" d="M5 0.5V10.5" stroke="black"/>
</g>
</svg>
</button>
        </modal-opener>
        <quick-add-modal id="QuickAdd-10234761937174" class="quick-add-modal">
          <div
            role="dialog"
            aria-label="Choose options for Blush Filter Liquid Blush"
            aria-modal="true"
            class="quick-add-modal__content global-settings-popup"
            tabindex="-1"
          >
            <button
              id="ModalClose-10234761937174"
              type="button"
              class="popup__close"
              aria-label="Close"
            ><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewbox="0 0 20 19" fill="none">
  <path d="M18.9999 0.5L1.25488 18.245L18.9999 0.5Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
  <path d="M18.745 18.245L1 0.5L18.745 18.245Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
</svg></button>
            <div id="QuickAddInfo-10234761937174" class="quick-add-modal__content-info"></div>
          </div>
        </quick-add-modal></div></div><script type="application/json" data-selected-variant-meta>
  {
    "default_selected_variant": {"id":51161393529110,"title":"Strawberry Latte","option1":"Strawberry Latte","option2":null,"option3":null,"sku":"HB01731","requires_shipping":true,"taxable":true,"featured_image":{"id":54844838052118,"product_id":10234761937174,"position":21,"created_at":"2026-03-25T11:41:32+04:00","updated_at":"2026-03-25T11:41:34+04:00","alt":"Blush Filter Liquid Blush -  Strawberry Latte","width":4167,"height":5209,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494","variant_ids":[51161393529110]},"available":true,"name":"Blush Filter Liquid Blush - Strawberry Latte","public_title":"Strawberry Latte","options":["Strawberry Latte"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408802","featured_media":{"alt":"Blush Filter Liquid Blush -  Strawberry Latte","id":44655810838806,"position":21,"preview_image":{"aspect_ratio":0.8,"height":5209,"width":4167,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},
    "product": {"id":10234761937174,"title":"Blush Filter Liquid Blush","handle":"blush-filter-liquid-blush-hb01345m","description":"","published_at":"2025-10-05T02:30:04+04:00","created_at":"2025-10-05T02:29:53+04:00","vendor":"Huda Beauty US","type":"","tags":["_okendo:syndication_key:blush-filter-liquid-blush-hb01345m","HB","short_description"],"price":2800,"price_min":2800,"price_max":2800,"available":true,"price_varies":false,"compare_at_price":null,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":51161393529110,"title":"Strawberry Latte","option1":"Strawberry Latte","option2":null,"option3":null,"sku":"HB01731","requires_shipping":true,"taxable":true,"featured_image":{"id":54844838052118,"product_id":10234761937174,"position":21,"created_at":"2026-03-25T11:41:32+04:00","updated_at":"2026-03-25T11:41:34+04:00","alt":"Blush Filter Liquid Blush -  Strawberry Latte","width":4167,"height":5209,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494","variant_ids":[51161393529110]},"available":true,"name":"Blush Filter Liquid Blush - Strawberry Latte","public_title":"Strawberry Latte","options":["Strawberry Latte"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408802","featured_media":{"alt":"Blush Filter Liquid Blush -  Strawberry Latte","id":44655810838806,"position":21,"preview_image":{"aspect_ratio":0.8,"height":5209,"width":4167,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":51161394774294,"title":"Ube Berry","option1":"Ube Berry","option2":null,"option3":null,"sku":"HB01737","requires_shipping":true,"taxable":true,"featured_image":{"id":54844837986582,"product_id":10234761937174,"position":22,"created_at":"2026-03-25T11:41:32+04:00","updated_at":"2026-03-25T11:41:34+04:00","alt":"Blush Filter Liquid Blush - Ube Berry","width":4167,"height":5209,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_8-UBE-BERRY.webp?v=1774424494","variant_ids":[51161394774294]},"available":true,"name":"Blush Filter Liquid Blush - Ube Berry","public_title":"Ube Berry","options":["Ube Berry"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408963","featured_media":{"alt":"Blush Filter Liquid Blush - Ube Berry","id":44655810773270,"position":22,"preview_image":{"aspect_ratio":0.8,"height":5209,"width":4167,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_8-UBE-BERRY.webp?v=1774424494"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":51161397625110,"title":"Berry Fever","option1":"Berry Fever","option2":null,"option3":null,"sku":"HB01771","requires_shipping":true,"taxable":true,"featured_image":{"id":54844838019350,"product_id":10234761937174,"position":23,"created_at":"2026-03-25T11:41:32+04:00","updated_at":"2026-03-25T11:41:34+04:00","alt":"Blush Filter Liquid Blush - Berry Fever","width":4167,"height":5209,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_10-BERRY-FEVER.webp?v=1774424494","variant_ids":[51161397625110]},"available":true,"name":"Blush Filter Liquid Blush - Berry Fever","public_title":"Berry Fever","options":["Berry Fever"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409168","featured_media":{"alt":"Blush Filter Liquid Blush - Berry Fever","id":44655810806038,"position":23,"preview_image":{"aspect_ratio":0.8,"height":5209,"width":4167,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_10-BERRY-FEVER.webp?v=1774424494"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573490979094,"title":"Strawberry Cream","option1":"Strawberry Cream","option2":null,"option3":null,"sku":"HB01349","requires_shipping":true,"taxable":true,"featured_image":{"id":54912976650518,"product_id":10234761937174,"position":24,"created_at":"2026-03-31T13:38:18+04:00","updated_at":"2026-03-31T13:38:20+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_5-STRAWBERRY-CREAM.webp?v=1774949900","variant_ids":[50573490979094]},"available":true,"name":"Blush Filter Liquid Blush - Strawberry Cream","public_title":"Strawberry Cream","options":["Strawberry Cream"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713326313750,"position":24,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_5-STRAWBERRY-CREAM.webp?v=1774949900"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573490848022,"title":"Cotton Candy","option1":"Cotton Candy","option2":null,"option3":null,"sku":"HB01345","requires_shipping":true,"taxable":true,"featured_image":{"id":54912993067286,"product_id":10234761937174,"position":25,"created_at":"2026-03-31T13:43:11+04:00","updated_at":"2026-03-31T13:43:13+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_3-COTTON-CANDY.webp?v=1774950193","variant_ids":[50573490848022]},"available":true,"name":"Blush Filter Liquid Blush - Cotton Candy","public_title":"Cotton Candy","options":["Cotton Candy"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713339846934,"position":25,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_3-COTTON-CANDY.webp?v=1774950193"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573491011862,"title":"Bubble Gum","option1":"Bubble Gum","option2":null,"option3":null,"sku":"HB01531","requires_shipping":true,"taxable":true,"featured_image":{"id":54913002144022,"product_id":10234761937174,"position":26,"created_at":"2026-03-31T13:46:20+04:00","updated_at":"2026-03-31T13:46:21+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_1-BUBBLEGUM.webp?v=1774950381","variant_ids":[50573491011862]},"available":true,"name":"Blush Filter Liquid Blush - Bubble Gum","public_title":"Bubble Gum","options":["Bubble Gum"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713348923670,"position":26,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_1-BUBBLEGUM.webp?v=1774950381"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":51053742162198,"title":"Ube Cream","option1":"Ube Cream","option2":null,"option3":null,"sku":"HB01491","requires_shipping":true,"taxable":true,"featured_image":{"id":54913004470550,"product_id":10234761937174,"position":27,"created_at":"2026-03-31T13:47:19+04:00","updated_at":"2026-03-31T13:47:21+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_2-UBE-CREAM.webp?v=1774950441","variant_ids":[51053742162198]},"available":true,"name":"Blush Filter Liquid Blush - Ube Cream","public_title":"Ube Cream","options":["Ube Cream"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713351250198,"position":27,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_2-UBE-CREAM.webp?v=1774950441"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573491077398,"title":"Intense Guava","option1":"Intense Guava","option2":null,"option3":null,"sku":"HB01532","requires_shipping":true,"taxable":true,"featured_image":{"id":54913007485206,"product_id":10234761937174,"position":28,"created_at":"2026-03-31T13:48:30+04:00","updated_at":"2026-03-31T13:48:32+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_9-INTENSE-GUAVA.webp?v=1774950512","variant_ids":[50573491077398]},"available":true,"name":"Blush Filter Liquid Blush - Intense Guava","public_title":"Intense Guava","options":["Intense Guava"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713354264854,"position":28,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_9-INTENSE-GUAVA.webp?v=1774950512"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573490946326,"title":"Black Cherry","option1":"Black Cherry","option2":null,"option3":null,"sku":"HB01348","requires_shipping":true,"taxable":true,"featured_image":{"id":54913009975574,"product_id":10234761937174,"position":29,"created_at":"2026-03-31T13:49:32+04:00","updated_at":"2026-03-31T13:49:33+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_11-BLACK-CHERRY.webp?v=1774950573","variant_ids":[50573490946326]},"available":true,"name":"Blush Filter Liquid Blush - Black Cherry","public_title":"Black Cherry","options":["Black Cherry"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713356722454,"position":29,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_11-BLACK-CHERRY.webp?v=1774950573"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573491142934,"title":"Coco Loco","option1":"Coco Loco","option2":null,"option3":null,"sku":"HB01376","requires_shipping":true,"taxable":true,"featured_image":{"id":54913013088534,"product_id":10234761937174,"position":30,"created_at":"2026-03-31T13:50:59+04:00","updated_at":"2026-03-31T13:51:00+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_12-COCO-LOCO.webp?v=1774950660","variant_ids":[50573491142934]},"available":true,"name":"Blush Filter Liquid Blush - Coco Loco","public_title":"Coco Loco","options":["Coco Loco"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713359868182,"position":30,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_12-COCO-LOCO.webp?v=1774950660"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573491110166,"title":"Latte","option1":"Latte","option2":null,"option3":null,"sku":"HB01375","requires_shipping":true,"taxable":true,"featured_image":{"id":54913018691862,"product_id":10234761937174,"position":31,"created_at":"2026-03-31T13:53:35+04:00","updated_at":"2026-03-31T13:53:37+04:00","alt":null,"width":3000,"height":3501,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_7-LATTE.webp?v=1774950817","variant_ids":[50573491110166]},"available":true,"name":"Blush Filter Liquid Blush - Latte","public_title":"Latte","options":["Latte"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713365438742,"position":31,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_7-LATTE.webp?v=1774950817"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573491044630,"title":"Sunset Lychee","option1":"Sunset Lychee","option2":null,"option3":null,"sku":"HB01533","requires_shipping":true,"taxable":true,"featured_image":{"id":54913020002582,"product_id":10234761937174,"position":32,"created_at":"2026-03-31T13:55:05+04:00","updated_at":"2026-03-31T13:55:07+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_4-SUNSET-LYCHEE.webp?v=1774950907","variant_ids":[50573491044630]},"available":true,"name":"Blush Filter Liquid Blush - Sunset Lychee","public_title":"Sunset Lychee","options":["Sunset Lychee"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713366749462,"position":32,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_4-SUNSET-LYCHEE.webp?v=1774950907"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573490880790,"title":"Peach Sorbet","option1":"Peach Sorbet","option2":null,"option3":null,"sku":"HB01346","requires_shipping":true,"taxable":true,"featured_image":{"id":52288302645526,"product_id":10234761937174,"position":33,"created_at":"2025-10-08T01:16:12+04:00","updated_at":"2025-10-08T01:16:15+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE1.webp?v=1759871775","variant_ids":[50573490880790]},"available":true,"name":"Blush Filter Liquid Blush - Peach Sorbet","public_title":"Peach Sorbet","options":["Peach Sorbet"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":42389379809558,"position":33,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE1.webp?v=1759871775"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573490913558,"title":"Watermelon Pop","option1":"Watermelon Pop","option2":null,"option3":null,"sku":"HB01347","requires_shipping":true,"taxable":true,"featured_image":{"id":52232112898326,"product_id":10234761937174,"position":20,"created_at":"2025-10-04T21:37:38+04:00","updated_at":"2025-10-05T02:29:02+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE1_ed1f90cf-f983-42d2-826b-c0e13a11f594.webp?v=1759616942","variant_ids":[50573490913558]},"available":true,"name":"Blush Filter Liquid Blush - Watermelon Pop","public_title":"Watermelon Pop","options":["Watermelon Pop"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":42342415761686,"position":20,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE1_ed1f90cf-f983-42d2-826b-c0e13a11f594.webp?v=1759616942"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}],"images":["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE1_ded21597-e66d-4e97-afa5-e814766cdd67.webp?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE2.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE4.jpg?v=1759616941","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE5.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE6.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE7.jpg?v=1759616941","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE9.jpg?v=1759616941","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE10.jpg?v=1759616941","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE11.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE12.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE8.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE2.jpg?v=1759616941","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE4.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-STRAWBERRYCREAM-TILE2.jpg?v=1759616943","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-STRAWBERRYCREAM-TILE4.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE2.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE4.jpg?v=1759616941","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-BLACKCHERRY-TILE2.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-BLACKCHERRY-TILE4.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE1_ed1f90cf-f983-42d2-826b-c0e13a11f594.webp?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_8-UBE-BERRY.webp?v=1774424494","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_10-BERRY-FEVER.webp?v=1774424494","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_5-STRAWBERRY-CREAM.webp?v=1774949900","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_3-COTTON-CANDY.webp?v=1774950193","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_1-BUBBLEGUM.webp?v=1774950381","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_2-UBE-CREAM.webp?v=1774950441","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_9-INTENSE-GUAVA.webp?v=1774950512","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_11-BLACK-CHERRY.webp?v=1774950573","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_12-COCO-LOCO.webp?v=1774950660","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_7-LATTE.webp?v=1774950817","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_4-SUNSET-LYCHEE.webp?v=1774950907","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE1.webp?v=1759871775"],"featured_image":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE1_ded21597-e66d-4e97-afa5-e814766cdd67.webp?v=1759616942","options":["Shade"],"media":[{"alt":null,"id":42342351503638,"position":1,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE1_ded21597-e66d-4e97-afa5-e814766cdd67.webp?v=1759616942"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE1_ded21597-e66d-4e97-afa5-e814766cdd67.webp?v=1759616942","width":3000},{"alt":null,"id":42342351634710,"position":2,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE2.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE2.jpg?v=1759616942","width":3000},{"alt":null,"id":42342352126230,"position":3,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE4.jpg?v=1759616941"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE4.jpg?v=1759616941","width":3000},{"alt":null,"id":42342353273110,"position":4,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE5.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE5.jpg?v=1759616942","width":3001},{"alt":null,"id":42342353568022,"position":5,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE6.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE6.jpg?v=1759616942","width":3001},{"alt":null,"id":42342353731862,"position":6,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE7.jpg?v=1759616941"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE7.jpg?v=1759616941","width":3001},{"alt":null,"id":42342354813206,"position":7,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE9.jpg?v=1759616941"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE9.jpg?v=1759616941","width":3001},{"alt":null,"id":42342350422294,"position":8,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE10.jpg?v=1759616941"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE10.jpg?v=1759616941","width":3001},{"alt":null,"id":42342350586134,"position":9,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE11.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE11.jpg?v=1759616942","width":3001},{"alt":null,"id":42342351012118,"position":10,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE12.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE12.jpg?v=1759616942","width":3001},{"alt":null,"id":42342354551062,"position":11,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE8.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE8.jpg?v=1759616942","width":3001},{"alt":null,"id":42342359073046,"position":12,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE2.jpg?v=1759616941"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE2.jpg?v=1759616941","width":3000},{"alt":null,"id":42342359171350,"position":13,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE4.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE4.jpg?v=1759616942","width":3000},{"alt":null,"id":42342360776982,"position":14,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-STRAWBERRYCREAM-TILE2.jpg?v=1759616943"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-STRAWBERRYCREAM-TILE2.jpg?v=1759616943","width":3000},{"alt":null,"id":42342360973590,"position":15,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-STRAWBERRYCREAM-TILE4.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-STRAWBERRYCREAM-TILE4.jpg?v=1759616942","width":3000},{"alt":null,"id":42342416875798,"position":16,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE2.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE2.jpg?v=1759616942","width":3000},{"alt":null,"id":42342420087062,"position":17,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE4.jpg?v=1759616941"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE4.jpg?v=1759616941","width":3000},{"alt":null,"id":42342333350166,"position":18,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-BLACKCHERRY-TILE2.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-BLACKCHERRY-TILE2.jpg?v=1759616942","width":3000},{"alt":null,"id":42342333448470,"position":19,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-BLACKCHERRY-TILE4.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-BLACKCHERRY-TILE4.jpg?v=1759616942","width":3000},{"alt":null,"id":42342415761686,"position":20,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE1_ed1f90cf-f983-42d2-826b-c0e13a11f594.webp?v=1759616942"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE1_ed1f90cf-f983-42d2-826b-c0e13a11f594.webp?v=1759616942","width":3000},{"alt":"Blush Filter Liquid Blush -  Strawberry Latte","id":44655810838806,"position":21,"preview_image":{"aspect_ratio":0.8,"height":5209,"width":4167,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494"},"aspect_ratio":0.8,"height":5209,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494","width":4167},{"alt":"Blush Filter Liquid Blush - Ube Berry","id":44655810773270,"position":22,"preview_image":{"aspect_ratio":0.8,"height":5209,"width":4167,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_8-UBE-BERRY.webp?v=1774424494"},"aspect_ratio":0.8,"height":5209,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_8-UBE-BERRY.webp?v=1774424494","width":4167},{"alt":"Blush Filter Liquid Blush - Berry Fever","id":44655810806038,"position":23,"preview_image":{"aspect_ratio":0.8,"height":5209,"width":4167,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_10-BERRY-FEVER.webp?v=1774424494"},"aspect_ratio":0.8,"height":5209,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_10-BERRY-FEVER.webp?v=1774424494","width":4167},{"alt":null,"id":44713326313750,"position":24,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_5-STRAWBERRY-CREAM.webp?v=1774949900"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_5-STRAWBERRY-CREAM.webp?v=1774949900","width":3000},{"alt":null,"id":44713339846934,"position":25,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_3-COTTON-CANDY.webp?v=1774950193"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_3-COTTON-CANDY.webp?v=1774950193","width":3000},{"alt":null,"id":44713348923670,"position":26,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_1-BUBBLEGUM.webp?v=1774950381"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_1-BUBBLEGUM.webp?v=1774950381","width":3000},{"alt":null,"id":44713351250198,"position":27,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_2-UBE-CREAM.webp?v=1774950441"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_2-UBE-CREAM.webp?v=1774950441","width":3000},{"alt":null,"id":44713354264854,"position":28,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_9-INTENSE-GUAVA.webp?v=1774950512"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_9-INTENSE-GUAVA.webp?v=1774950512","width":3000},{"alt":null,"id":44713356722454,"position":29,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_11-BLACK-CHERRY.webp?v=1774950573"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_11-BLACK-CHERRY.webp?v=1774950573","width":3000},{"alt":null,"id":44713359868182,"position":30,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_12-COCO-LOCO.webp?v=1774950660"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_12-COCO-LOCO.webp?v=1774950660","width":3000},{"alt":null,"id":44713365438742,"position":31,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_7-LATTE.webp?v=1774950817"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_7-LATTE.webp?v=1774950817","width":3000},{"alt":null,"id":44713366749462,"position":32,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_4-SUNSET-LYCHEE.webp?v=1774950907"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_4-SUNSET-LYCHEE.webp?v=1774950907","width":3000},{"alt":null,"id":42389379809558,"position":33,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE1.webp?v=1759871775"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE1.webp?v=1759871775","width":3000}],"requires_selling_plan":false,"selling_plan_groups":[],"content":""},
    "variants": [
      
{
          "id": 51161393529110,
          "title": "Strawberry Latte",
          "available": true,
          "inventory": 1120,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_3_1.webp?v=1774424665","\/\/hudabeauty.com\/cdn\/shop\/files\/Strawberry_Latte_Shade.webp?v=1774424789","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_4.webp?v=1774424949"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 51161394774294,
          "title": "Ube Berry",
          "available": true,
          "inventory": 1166,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_8-UBE-BERRY.webp?v=1774424494","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_5.webp?v=1774424694","\/\/hudabeauty.com\/cdn\/shop\/files\/Ube_Berry_Shade.webp?v=1774424789","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_4.webp?v=1774424949"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 51161397625110,
          "title": "Berry Fever",
          "available": true,
          "inventory": 491,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_10-BERRY-FEVER.webp?v=1774424494","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_7.webp?v=1774424726","\/\/hudabeauty.com\/cdn\/shop\/files\/Berry_Fever_Shade.webp?v=1774424789","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_4.webp?v=1774424949"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573490979094,
          "title": "Strawberry Cream",
          "available": true,
          "inventory": 96,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_5-STRAWBERRY-CREAM.webp?v=1774949900","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_2.webp?v=1774949903","\/\/hudabeauty.com\/cdn\/shop\/files\/Strawberry_Cream_Shade.webp?v=1774949903","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        },
      
{
          "id": 50573490848022,
          "title": "Cotton Candy",
          "available": true,
          "inventory": 110,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_3-COTTON-CANDY.webp?v=1774950193","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140.webp?v=1774950196","\/\/hudabeauty.com\/cdn\/shop\/files\/Cotton_Candy_Shade.webp?v=1774950197","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        },
      
{
          "id": 50573491011862,
          "title": "Bubble Gum",
          "available": true,
          "inventory": 135,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_1-BUBBLEGUM.webp?v=1774950381","\/\/hudabeauty.com\/cdn\/shop\/files\/BUBBLEGUM.webp?v=1774950384","\/\/hudabeauty.com\/cdn\/shop\/files\/Bubblegum_shade.webp?v=1774950385","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        },
      
{
          "id": 51053742162198,
          "title": "Ube Cream",
          "available": true,
          "inventory": 303,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_2-UBE-CREAM.webp?v=1774950441","\/\/hudabeauty.com\/cdn\/shop\/files\/UBE-CREAM.webp?v=1774950444","\/\/hudabeauty.com\/cdn\/shop\/files\/Ube_Cream_Shade.webp?v=1774950444","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "2-in-1 hybrid blush with buildable pigment & micro-pearls that melts into skin for a soft-focus, luminous glow.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573491077398,
          "title": "Intense Guava",
          "available": true,
          "inventory": 178,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_9-INTENSE-GUAVA.webp?v=1774950512","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_6.webp?v=1774950514","\/\/hudabeauty.com\/cdn\/shop\/files\/Intense_Guava_Shade.webp?v=1774950514","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        },
      
{
          "id": 50573490946326,
          "title": "Black Cherry",
          "available": true,
          "inventory": 95,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_11-BLACK-CHERRY.webp?v=1774950573","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_8.webp?v=1774950576","\/\/hudabeauty.com\/cdn\/shop\/files\/Black_Cherry_Shade.webp?v=1774950577","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        },
      
{
          "id": 50573491142934,
          "title": "Coco Loco",
          "available": true,
          "inventory": 80,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_12-COCO-LOCO.webp?v=1774950660","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_9.webp?v=1774950662","\/\/hudabeauty.com\/cdn\/shop\/files\/Chocoloco_Shade.webp?v=1774950664","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573491110166,
          "title": "Latte",
          "available": true,
          "inventory": 107,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_7-LATTE.webp?v=1774950817","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_4.webp?v=1774950819","\/\/hudabeauty.com\/cdn\/shop\/files\/Latte_Shade.webp?v=1774950819","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573491044630,
          "title": "Sunset Lychee",
          "available": true,
          "inventory": 89,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_4-SUNSET-LYCHEE.webp?v=1774950907","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_1.webp?v=1774950911","\/\/hudabeauty.com\/cdn\/shop\/files\/Sunset_Lychee_Shade.webp?v=1774950911","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        },
      
{
          "id": 50573490880790,
          "title": "Peach Sorbet",
          "available": true,
          "inventory": 122,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE1.webp?v=1759871775","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE2_bfa3cd96-d581-46b0-8aa1-cd05eec702c0.webp?v=1759871775",{"alt":"Blush Filter Liquid Blush of Huda explaining and demonstrating the product","id":42389376925974,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/af7a31e7b99d41888a97717e6b03d024.thumbnail.0000000000.jpg?v=1759871834"},"aspect_ratio":0.558,"duration":102000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/af7a31e7b99d41888a97717e6b03d024\/af7a31e7b99d41888a97717e6b03d024.SD-480p-1.5Mbps-59057266.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/af7a31e7b99d41888a97717e6b03d024\/af7a31e7b99d41888a97717e6b03d024.HD-1080p-7.2Mbps-59057266.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/af7a31e7b99d41888a97717e6b03d024\/af7a31e7b99d41888a97717e6b03d024.HD-720p-4.5Mbps-59057266.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/af7a31e7b99d41888a97717e6b03d024\/af7a31e7b99d41888a97717e6b03d024.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE4_56c0d8f6-81be-47b9-be87-cea377a92e2f.webp?v=1759871777","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE5_3fbe63a2-992b-477c-93e1-3ef321ce13b2.webp?v=1759871779","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE6_ef4fe96b-298a-4e9b-a5a7-e948de13bc35.webp?v=1759871780","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE7_28c22f07-e696-4f36-b376-b808b1480c47.webp?v=1759871781","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE8_e7daf87e-4e61-432c-88eb-d96f26cdec7a.webp?v=1759871783","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-TEXTURE-01.webp?v=1775233640","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE10_36d6ee5d-1391-46d5-826c-cbead8d39d35.webp?v=1759871784","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE11_7d80565e-adea-41cb-ba6a-12f28b8e0f86.webp?v=1759871786","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE12_32d699e4-834f-4424-88df-b0b10cf2ddf3.webp?v=1759871786"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        },
      
{
          "id": 50573490913558,
          "title": "Watermelon Pop",
          "available": true,
          "inventory": 116,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE1.webp?v=1759871786","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE2_c7eb6929-5957-4f7f-b0bb-c593cb6a7fe8.webp?v=1759871788",{"alt":"Blush Filter Liquid Blush of Huda explaining and demonstrating the product","id":42389376925974,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/af7a31e7b99d41888a97717e6b03d024.thumbnail.0000000000.jpg?v=1759871834"},"aspect_ratio":0.558,"duration":102000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/af7a31e7b99d41888a97717e6b03d024\/af7a31e7b99d41888a97717e6b03d024.SD-480p-1.5Mbps-59057266.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/af7a31e7b99d41888a97717e6b03d024\/af7a31e7b99d41888a97717e6b03d024.HD-1080p-7.2Mbps-59057266.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/af7a31e7b99d41888a97717e6b03d024\/af7a31e7b99d41888a97717e6b03d024.HD-720p-4.5Mbps-59057266.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/af7a31e7b99d41888a97717e6b03d024\/af7a31e7b99d41888a97717e6b03d024.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE4_8e7fa149-3156-4b29-8366-b068a5ae8f72.webp?v=1759871789","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE5_b2d8beea-0767-494d-b993-8bc305535400.webp?v=1759871788","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE6_8cdcc262-0ce7-452a-a435-9a74659e1f68.webp?v=1759871789","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE7_b788cd42-8680-489a-a7f9-aa98d1942f5c.webp?v=1759871792","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE8_811cbc83-32d6-4066-adb2-f674f0971231.webp?v=1759871794","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-TEXTURE-01.webp?v=1775233640","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE10_67853daa-617a-47c5-a0ba-ac8edaae22db.webp?v=1759871796","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE11_1d0840e8-2924-4dc6-b029-deb7b518f7c2.webp?v=1759871797","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE12_b8e8bed4-00d2-4e82-a5cd-308b8d889f47.webp?v=1759871798"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        }
      
    ]
  }
</script>

          
          
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10234761937174"><div data-oke-reviews-version="0.87.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 4.9 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 98.3516%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 4.9 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">4.9</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"4.9","reviewCount":1096} </script></div></div>
    
        (1096)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB01731" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        











<div  class="back-in-stock-container" style="display: none;"><div class="product-back-in-stock-buttons">
    
    

    
    
  </div></div>

        

         
          
















<div
  
  class="waitlist-container"
  
    style="display: none;"
  
><div class="product-waitlist-buttons">
      
      
        <a href="/en-fr/products/blush-filter-liquid-blush-hb01345m?variant=51161393529110" class="button button--primary notify-me-btn">Notify Me</a>
      
    </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="sections--26760397881622__header"
      data-form-id="product-form-sections--26760397881622__header"
      dl-product-id="HB01731"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-sections--26760397881622__header" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="51161393529110"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="1120"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <button
              id="ProductSubmitButton-sections--26760397881622__header"
              data-dl-source="Defaul Search"
              data-url="/en-fr/products/blush-filter-liquid-blush-hb01345m?variant=51161393529110"
              type="submit"
              name="add"
              class="product-form__submit button button--full-width button--primary"
              
              
            >
              <span>
                Add to Bag
              </span>
            </button></div><input type="hidden" name="product-id" value="10234761937174" /><input type="hidden" name="section-id" value="sections--26760397881622__header" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li>
      

      <li
        id="predictive-search-option-product-3"
        class="predictive-search__list-item"
        role="option"
        aria-selected="false"
      >
        



  























  


































<section
  class="featured-card-product"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="set_134"
    dl-product-name="Strawberry Latte Collection Kit"
    dl-product-brand="Huda Beauty US"
    dl-product-category="Sets + Gifts"
    dl-product-category2="Huda Beauty"
    dl-product-category3=""
    dl-product-variant="set_134"
    dl-product-price="151,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/strawberry-latte-collection-set_134?variant=51147089740054"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SLC-PACKSHOT.webp?v=1774769010&width=630 1x,            //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SLC-PACKSHOT.webp?v=1774769010&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/strawberry-latte-collection-set_134?variant=51147089740054"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SLC-PACKSHOT.webp?v=1774769010&width=630"
          alt="Strawberry Latte Collection Kit"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SLC-SECOND-IMAGE.webp?v=1774769010&width=630 1x,              //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SLC-SECOND-IMAGE.webp?v=1774769010&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SLC-SECOND-IMAGE.webp?v=1774769010&width=630"
            alt="Strawberry Latte Collection Kit"
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">NEW</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
            
            
            
              <p class="badge--bottom-left sale-badge py-2xs px-xs h6">Save&nbsp; 10%
              </p>
            
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-sections--26760397881622__header-10454140354838"
      class="product__info-container"
      data-section="sections--26760397881622__header"
      data-url="/en-fr/products/strawberry-latte-collection-set_134?variant=51147089740054"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/strawberry-latte-collection-set_134?variant=51147089740054">
          
            <h2 class="h6">Strawberry Latte Collection Kit
</h2>
          
        </a>
      </div>
      
      
        <div class="featured-card_product-description mt-xs mb-xs caption">
          
        </div>
      

      <div
        class="product_card_price mb-sm"
        id="price-sections--26760397881622__header"
        data-url="/en-fr/products/strawberry-latte-collection-set_134?variant=51147089740054"
        role="status"
        
      >


<div
    class="price      price-section-data price--large price--on-sale"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €151,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €151,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              €168,00
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€17,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker mb-xs">
        
          
          
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10454140354838"><div data-oke-reviews-version="0.87.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 5.0 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 100%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 5.0 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">5.0</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"5.0","reviewCount":2} </script></div></div>
    
        (2)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="set_134" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        




  
<!-- Extract last part after last dash from product handle -->



<div  class="bundle-back-in-stock-container">
  <div class="bundle-back-in-stock-button">
    
    
  </div>
</div>

      

         
          




<!-- Extract last part after last dash from product handle -->




  

  
<div  class="bundle-waitlist-container" style="display: none;"><div class="bundle-waitlist-button">
    
      
        <a href="/en-fr/products/strawberry-latte-collection-set_134" class="button button--primary button--full-width notify-me-btn">Notify Me</a>
    
  </div></div>

        

      


















<div  class="buy-buttons-container">
        
      
        
      
        
      
        
      
        
      
        
      

    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="sections--26760397881622__header"
      data-form-id="product-form-sections--26760397881622__header"
      dl-product-id="set_134"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-sections--26760397881622__header" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="51147089740054"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="1000"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <button
              id="ProductSubmitButton-sections--26760397881622__header"
              data-dl-source="Defaul Search"
              data-url="/en-fr/products/strawberry-latte-collection-set_134?variant=51147089740054"
              type="submit"
              name="add"
              class="product-form__submit button button--full-width button--primary"
              
              
            >
              <span>
                Add to Bag
              </span>
            </button></div><input type="hidden" name="product-id" value="10454140354838" /><input type="hidden" name="section-id" value="sections--26760397881622__header" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li>
      

      <li
        id="predictive-search-option-product-4"
        class="predictive-search__list-item"
        role="option"
        aria-selected="false"
      >
        



  























  

  

  

  

  

  

  

  






























  
  

  
    
    




<section
  class="featured-card-product"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB01822"
    dl-product-name="Easy Bake Pressed Powder Phone Grip"
    dl-product-brand="Huda Beauty"
    dl-product-category="Powder & Setting Spray"
    dl-product-category2="Face"
    dl-product-category3=""
    dl-product-variant="HB01822"
    dl-product-price="30,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/easy-bake-pressed-powder-phone-grip-hb01821m?variant=50886374523158"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/PDP-PACK-SHOTS-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-PEACH-CUPCAKE-TILE1.webp?v=1772015099&width=630 1x,            //hudabeauty.com/cdn/shop/files/PDP-PACK-SHOTS-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-PEACH-CUPCAKE-TILE1.webp?v=1772015099&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/easy-bake-pressed-powder-phone-grip-hb01821m?variant=50886374523158"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/PDP-PACK-SHOTS-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-PEACH-CUPCAKE-TILE1.webp?v=1772015099&width=630"
          alt="Easy Bake Pressed Powder Phone Grip - PEACH CUPCAKE - Packshot"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-MODEL-TILE2.webp?v=1770040725&width=630 1x,              //hudabeauty.com/cdn/shop/files/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-MODEL-TILE2.webp?v=1770040725&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-MODEL-TILE2.webp?v=1770040725&width=630"
            alt="Easy Bake Pressed Powder Phone Grip lifestyle image showing product in use"
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">NEW</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-sections--26760397881622__header-10353666228502"
      class="product__info-container"
      data-section="sections--26760397881622__header"
      data-url="/en-fr/products/easy-bake-pressed-powder-phone-grip-hb01821m?variant=50886374523158"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/easy-bake-pressed-powder-phone-grip-hb01821m?variant=50886374523158">
          
            <h2 class="h6">Easy Bake Pressed Powder Phone Grip
</h2>
          
        </a>
      </div>
      
      
        <div class="featured-card_product-description mt-xs mb-xs caption">
          
            Your favourite Easy Bake Pressed Powder, now as a phone grip for touch-ups anywhere.
          
        </div>
      

      <div
        class="product_card_price mb-sm"
        id="price-sections--26760397881622__header"
        data-url="/en-fr/products/easy-bake-pressed-powder-phone-grip-hb01821m?variant=50886374523158"
        role="status"
        
      >


<div
    class="price      price-section-data price--large"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €30,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €30,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€-30,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker mb-xs">
        
          


<div class="loading__spinner">
  <svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" class="spinner" viewbox="0 0 66 66"><circle stroke-width="6" cx="33" cy="33" r="30" fill="none" class="path"/></svg>

</div>


<link href="//hudabeauty.com/cdn/shop/t/162/assets/product-card-swatches.css?v=48729697193943970631775984107" rel="stylesheet" type="text/css" media="all" />





<div
  class="product-card-swatches search-modal-swatches"
  data-handle="easy-bake-pressed-powder-phone-grip-hb01821m"
>

        

        
        
        
        
        

          <div
            data-id="50886374424854"
            class="product-swatch br-round disabled-swatch"
            style="background-color: #FCFAF5; display: flex;"
            aria-label="Sugar Cookie Translucent"
            title="Sugar Cookie Translucent"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50886374457622"
            class="product-swatch br-round disabled-swatch"
            style="background-color: #FDE0DD; display: flex;"
            aria-label="Cherry Blossom Cake"
            title="Cherry Blossom Cake"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50886374490390"
            class="product-swatch br-round disabled-swatch"
            style="background-color: #FFF0DE; display: flex;"
            aria-label="Pound Cake"
            title="Pound Cake"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50886374523158"
            class="product-swatch br-round"
            style="background-color: #FFE8DB; display: flex;"
            aria-label="Peach Cupcake"
            title="Peach Cupcake"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50886374555926"
            class="product-swatch br-round"
            style="background-color: #FFD9AD; display: flex;"
            aria-label="Banana Bread"
            title="Banana Bread"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50886374588694"
            class="product-swatch br-round"
            style="background-color: #FACC8C; display: flex;"
            aria-label="Kunafa Blondie"
            title="Kunafa Blondie"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50886374621462"
            class="product-swatch br-round disabled-swatch"
            style="background-color: #DEA171; display: flex;"
            aria-label="Cinnamon Bun"
            title="Cinnamon Bun"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50886374654230"
            class="product-swatch br-round"
            style="background-color: #B87859; display: flex;"
            aria-label="Coco Truffle"
            title="Coco Truffle"
          ></div>
        

<div class="no-js-hidden quick-add"><modal-opener data-modal="#QuickAdd-10353666228502">
          <button
            id="-submit"
            type="button"
            name="add"
            class="color-swatch-item br-round featured-card_choose-more-colors"
            aria-haspopup="dialog"
            aria-labelledby="-submit title--10353666228502"
            data-product-url="/en-fr/products/easy-bake-pressed-powder-phone-grip-hb01821m?view=quick-view"
            data-handle="easy-bake-pressed-powder-phone-grip-hb01821m"
          ><svg aria-hidden="true" width="10" height="11" viewbox="0 0 10 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Plus">
<path id="Vector 4" d="M0 5.5H10" stroke="black"/>
<path id="Vector 3" d="M5 0.5V10.5" stroke="black"/>
</g>
</svg>
</button>
        </modal-opener>
        <quick-add-modal id="QuickAdd-10353666228502" class="quick-add-modal">
          <div
            role="dialog"
            aria-label="Choose options for Easy Bake Pressed Powder Phone Grip"
            aria-modal="true"
            class="quick-add-modal__content global-settings-popup"
            tabindex="-1"
          >
            <button
              id="ModalClose-10353666228502"
              type="button"
              class="popup__close"
              aria-label="Close"
            ><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewbox="0 0 20 19" fill="none">
  <path d="M18.9999 0.5L1.25488 18.245L18.9999 0.5Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
  <path d="M18.745 18.245L1 0.5L18.745 18.245Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
</svg></button>
            <div id="QuickAddInfo-10353666228502" class="quick-add-modal__content-info"></div>
          </div>
        </quick-add-modal></div></div><script type="application/json" data-selected-variant-meta>
  {
    "default_selected_variant": {"id":50886374523158,"title":"Peach Cupcake","option1":"Peach Cupcake","option2":null,"option3":null,"sku":"HB01822","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Pressed Powder Phone Grip - Peach Cupcake","public_title":"Peach Cupcake","options":["Peach Cupcake"],"price":3000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409748","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},
    "product": {"id":10353666228502,"title":"Easy Bake Pressed Powder Phone Grip","handle":"easy-bake-pressed-powder-phone-grip-hb01821m","description":"","published_at":"2026-02-09T14:18:54+04:00","created_at":"2025-12-29T10:24:25+04:00","vendor":"Huda Beauty","type":"","tags":["HB","PhoneGrip"],"price":3000,"price_min":3000,"price_max":3000,"available":true,"price_varies":false,"compare_at_price":null,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":50886374424854,"title":"Sugar Cookie Translucent","option1":"Sugar Cookie Translucent","option2":null,"option3":null,"sku":"HB01826","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"Easy Bake Pressed Powder Phone Grip - Sugar Cookie Translucent","public_title":"Sugar Cookie Translucent","options":["Sugar Cookie Translucent"],"price":3000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409786","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50886374457622,"title":"Cherry Blossom Cake","option1":"Cherry Blossom Cake","option2":null,"option3":null,"sku":"HB01823","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"Easy Bake Pressed Powder Phone Grip - Cherry Blossom Cake","public_title":"Cherry Blossom Cake","options":["Cherry Blossom Cake"],"price":3000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409755","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50886374490390,"title":"Pound Cake","option1":"Pound Cake","option2":null,"option3":null,"sku":"HB01821","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"Easy Bake Pressed Powder Phone Grip - Pound Cake","public_title":"Pound Cake","options":["Pound Cake"],"price":3000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409731","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50886374523158,"title":"Peach Cupcake","option1":"Peach Cupcake","option2":null,"option3":null,"sku":"HB01822","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Pressed Powder Phone Grip - Peach Cupcake","public_title":"Peach Cupcake","options":["Peach Cupcake"],"price":3000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409748","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50886374555926,"title":"Banana Bread","option1":"Banana Bread","option2":null,"option3":null,"sku":"HB01825","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Pressed Powder Phone Grip - Banana Bread","public_title":"Banana Bread","options":["Banana Bread"],"price":3000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409779","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50886374588694,"title":"Kunafa Blondie","option1":"Kunafa Blondie","option2":null,"option3":null,"sku":"HB01827","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Pressed Powder Phone Grip - Kunafa Blondie","public_title":"Kunafa Blondie","options":["Kunafa Blondie"],"price":3000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409793","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50886374621462,"title":"Cinnamon Bun","option1":"Cinnamon Bun","option2":null,"option3":null,"sku":"HB01828","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"Easy Bake Pressed Powder Phone Grip - Cinnamon Bun","public_title":"Cinnamon Bun","options":["Cinnamon Bun"],"price":3000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409809","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50886374654230,"title":"Coco Truffle","option1":"Coco Truffle","option2":null,"option3":null,"sku":"HB01829","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Pressed Powder Phone Grip - Coco Truffle","public_title":"Coco Truffle","options":["Coco Truffle"],"price":3000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409816","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}],"images":["\/\/hudabeauty.com\/cdn\/shop\/files\/EASY_PRESSED_POWDER_AIRBRUSH_KIT-02_1.webp?v=1770289386"],"featured_image":"\/\/hudabeauty.com\/cdn\/shop\/files\/EASY_PRESSED_POWDER_AIRBRUSH_KIT-02_1.webp?v=1770289386","options":["Shade"],"media":[{"alt":"The Ultimate Pressed Kit - Default - phone Grip PackShot","id":44169381937430,"position":1,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/EASY_PRESSED_POWDER_AIRBRUSH_KIT-02_1.webp?v=1770289386"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/EASY_PRESSED_POWDER_AIRBRUSH_KIT-02_1.webp?v=1770289386","width":3000}],"requires_selling_plan":false,"selling_plan_groups":[],"content":""},
    "variants": [
      
{
          "id": 50886374424854,
          "title": "Sugar Cookie Translucent",
          "available": false,
          "inventory": 0,
          "max_product_quantity": 5,
          "price": "€30,00",
          "save_price": "€-30,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-PACK-SHOTS-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SUGAR-COOKIE-TILE1.webp?v=1772014996","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-MODEL-TILE2.webp?v=1770040725",{"alt":"Phone Grip reel video showing Easy Bake Pressed compact attached to the grip, opening and closing the compact and box packaging","id":44073414885654,"position":null,"preview_image":{"aspect_ratio":0.573,"height":2100,"width":1204,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/Screenshot_2026-02-09_at_9.59.05_AM.png?v=1770623973"},"aspect_ratio":0.563,"duration":11860,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.SD-480p-1.5Mbps-68638289.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-1080p-7.2Mbps-68638289.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-720p-4.5Mbps-68638289.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EBP-Phone-grip-2-SUGARCOOKIETRANSLUCENT-TILE4.jpg?v=1770040772","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-INFOGRAPHIC-TILE4.webp?v=1770040744","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-POD-TILE6.webp?v=1770040788","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-FINDER-TILE7.webp?v=1770040801","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-ARM-SWATCH-TILE8.webp?v=1770040824","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-NAV-TILE9.webp?v=1770040847","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-STEPBYSTEP-TILE10.webp?v=1770040861"],
              "shortDescription": "Your favourite Easy Bake Pressed Powder, now as a phone grip for touch-ups anywhere.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50886374457622,
          "title": "Cherry Blossom Cake",
          "available": false,
          "inventory": 0,
          "max_product_quantity": 5,
          "price": "€30,00",
          "save_price": "€-30,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-PACK-SHOTS-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-CHERRY-BLOSSOM-TILE1.webp?v=1772015023","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-MODEL-TILE2.webp?v=1770040725",{"alt":"Phone Grip reel video showing Easy Bake Pressed compact attached to the grip, opening and closing the compact and box packaging","id":44073414885654,"position":null,"preview_image":{"aspect_ratio":0.573,"height":2100,"width":1204,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/Screenshot_2026-02-09_at_9.59.05_AM.png?v=1770623973"},"aspect_ratio":0.563,"duration":11860,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.SD-480p-1.5Mbps-68638289.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-1080p-7.2Mbps-68638289.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-720p-4.5Mbps-68638289.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EBP-PHONE-GRIP-CHERRYBLOSSOMCAKE-TILE4.jpg?v=1769636017","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-3.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-4.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-FINDER-TILE7.webp?v=1770040801","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-ARM-SWATCH-TILE8.webp?v=1770040824","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-NAV-TILE9.webp?v=1770040847","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-STEPBYSTEP-TILE10.webp?v=1770040861"],
              "shortDescription": "Your favourite Easy Bake Pressed Powder, now as a phone grip for touch-ups anywhere.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50886374490390,
          "title": "Pound Cake",
          "available": false,
          "inventory": 0,
          "max_product_quantity": 5,
          "price": "€30,00",
          "save_price": "€-30,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-PACK-SHOTS-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-POUND-CAKE-TILE1.webp?v=1772015068","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-MODEL-TILE2.webp?v=1770040725",{"alt":"Phone Grip reel video showing Easy Bake Pressed compact attached to the grip, opening and closing the compact and box packaging","id":44073414885654,"position":null,"preview_image":{"aspect_ratio":0.573,"height":2100,"width":1204,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/Screenshot_2026-02-09_at_9.59.05_AM.png?v=1770623973"},"aspect_ratio":0.563,"duration":11860,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.SD-480p-1.5Mbps-68638289.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-1080p-7.2Mbps-68638289.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-720p-4.5Mbps-68638289.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EBP-PHONE-GRIP-POUNDCAKE-TILE4.jpg?v=1769636018","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-3.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-4.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-FINDER-TILE7.webp?v=1770040801","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-ARM-SWATCH-TILE8.webp?v=1770040824","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-NAV-TILE9.webp?v=1770040847","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-STEPBYSTEP-TILE10.webp?v=1770040861"],
              "shortDescription": "Your favourite Easy Bake Pressed Powder, now as a phone grip for touch-ups anywhere.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50886374523158,
          "title": "Peach Cupcake",
          "available": true,
          "inventory": 89,
          "max_product_quantity": 5,
          "price": "€30,00",
          "save_price": "€-30,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-PACK-SHOTS-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-PEACH-CUPCAKE-TILE1.webp?v=1772015099","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-MODEL-TILE2.webp?v=1770040725",{"alt":"Phone Grip reel video showing Easy Bake Pressed compact attached to the grip, opening and closing the compact and box packaging","id":44073414885654,"position":null,"preview_image":{"aspect_ratio":0.573,"height":2100,"width":1204,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/Screenshot_2026-02-09_at_9.59.05_AM.png?v=1770623973"},"aspect_ratio":0.563,"duration":11860,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.SD-480p-1.5Mbps-68638289.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-1080p-7.2Mbps-68638289.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-720p-4.5Mbps-68638289.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EBP-PHONE-GRIP-PEACHCUPCAKE-TILE4.jpg?v=1769636017","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-3.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-4.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-FINDER-TILE7.webp?v=1770040801","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-ARM-SWATCH-TILE8.webp?v=1770040824","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-NAV-TILE9.webp?v=1770040847","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-STEPBYSTEP-TILE10.webp?v=1770040861"],
              "shortDescription": "Your favourite Easy Bake Pressed Powder, now as a phone grip for touch-ups anywhere.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50886374555926,
          "title": "Banana Bread",
          "available": true,
          "inventory": 284,
          "max_product_quantity": 5,
          "price": "€30,00",
          "save_price": "€-30,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-PACK-SHOTS-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-BANANA-BREAD-TILE1.webp?v=1772015125","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-MODEL-TILE2.webp?v=1770040725",{"alt":"Phone Grip reel video showing Easy Bake Pressed compact attached to the grip, opening and closing the compact and box packaging","id":44073414885654,"position":null,"preview_image":{"aspect_ratio":0.573,"height":2100,"width":1204,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/Screenshot_2026-02-09_at_9.59.05_AM.png?v=1770623973"},"aspect_ratio":0.563,"duration":11860,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.SD-480p-1.5Mbps-68638289.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-1080p-7.2Mbps-68638289.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-720p-4.5Mbps-68638289.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EBP-PHONE-GRIP-BANANABREAD-TILE4.jpg?v=1769636017","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-3.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-4.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-FINDER-TILE7.webp?v=1770040801","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-ARM-SWATCH-TILE8.webp?v=1770040824","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-NAV-TILE9.webp?v=1770040847","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-STEPBYSTEP-TILE10.webp?v=1770040861"],
              "shortDescription": "Your favourite Easy Bake Pressed Powder, now as a phone grip for touch-ups anywhere.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50886374588694,
          "title": "Kunafa Blondie",
          "available": true,
          "inventory": 61,
          "max_product_quantity": 5,
          "price": "€30,00",
          "save_price": "€-30,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-PACK-SHOTS-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-KUNAFA-BLONDIE-TILE1.webp?v=1772015163","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-MODEL-TILE2.webp?v=1770040725",{"alt":"Phone Grip reel video showing Easy Bake Pressed compact attached to the grip, opening and closing the compact and box packaging","id":44073414885654,"position":null,"preview_image":{"aspect_ratio":0.573,"height":2100,"width":1204,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/Screenshot_2026-02-09_at_9.59.05_AM.png?v=1770623973"},"aspect_ratio":0.563,"duration":11860,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.SD-480p-1.5Mbps-68638289.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-1080p-7.2Mbps-68638289.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-720p-4.5Mbps-68638289.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EBP-PHONE-GRIP-KUNAFABLONDIE-TILE4.jpg?v=1769636018","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-3.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-4.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-FINDER-TILE7.webp?v=1770040801","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-ARM-SWATCH-TILE8.webp?v=1770040824","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-NAV-TILE9.webp?v=1770040847","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-STEPBYSTEP-TILE10.webp?v=1770040861"],
              "shortDescription": "Your favourite Easy Bake Pressed Powder, now as a phone grip for touch-ups anywhere.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50886374621462,
          "title": "Cinnamon Bun",
          "available": false,
          "inventory": 0,
          "max_product_quantity": 5,
          "price": "€30,00",
          "save_price": "€-30,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-PACK-SHOTS-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-CINNAMON-BUN-TILE1.webp?v=1772015196","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-MODEL-TILE2.webp?v=1770040725",{"alt":"Phone Grip reel video showing Easy Bake Pressed compact attached to the grip, opening and closing the compact and box packaging","id":44073414885654,"position":null,"preview_image":{"aspect_ratio":0.573,"height":2100,"width":1204,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/Screenshot_2026-02-09_at_9.59.05_AM.png?v=1770623973"},"aspect_ratio":0.563,"duration":11860,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.SD-480p-1.5Mbps-68638289.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-1080p-7.2Mbps-68638289.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-720p-4.5Mbps-68638289.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EBP-PHONE-GRIP-CINNAMONBUN-TILE4.jpg?v=1769636017","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-3.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-4.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-FINDER-TILE7.webp?v=1770040801","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-ARM-SWATCH-TILE8.webp?v=1770040824","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-NAV-TILE9.webp?v=1770040847","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-STEPBYSTEP-TILE10.webp?v=1770040861"],
              "shortDescription": "Your favourite Easy Bake Pressed Powder, now as a phone grip for touch-ups anywhere.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50886374654230,
          "title": "Coco Truffle",
          "available": true,
          "inventory": 4,
          "max_product_quantity": 5,
          "price": "€30,00",
          "save_price": "€-30,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDPPACK-SHOTS-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-COCO-TRUFFLE-TILE1.webp?v=1772015223","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-MODEL-TILE2.webp?v=1770040725",{"alt":"Phone Grip reel video showing Easy Bake Pressed compact attached to the grip, opening and closing the compact and box packaging","id":44073414885654,"position":null,"preview_image":{"aspect_ratio":0.573,"height":2100,"width":1204,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/Screenshot_2026-02-09_at_9.59.05_AM.png?v=1770623973"},"aspect_ratio":0.563,"duration":11860,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.SD-480p-1.5Mbps-68638289.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-1080p-7.2Mbps-68638289.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-720p-4.5Mbps-68638289.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EBP-PHONE-GRIP-COCOTRUFFLE-TILE4.jpg?v=1769636016","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-3.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-4.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-FINDER-TILE7.webp?v=1770040801","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-ARM-SWATCH-TILE8.webp?v=1770040824","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-NAV-TILE9.webp?v=1770040847","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-STEPBYSTEP-TILE10.webp?v=1770040861"],
              "shortDescription": "Your favourite Easy Bake Pressed Powder, now as a phone grip for touch-ups anywhere.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        }
      
    ]
  }
</script>

          
          
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10353666228502"><div data-oke-reviews-version="0.87.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 4.9 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 98.3516%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 4.9 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">4.9</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"4.9","reviewCount":195} </script></div></div>
    
        (195)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB01822" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        











<div  class="back-in-stock-container" style="display: none;"><div class="product-back-in-stock-buttons">
    
    

    
    
  </div></div>

        

         
          
















<div
  
  class="waitlist-container"
  
    style="display: none;"
  
><div class="product-waitlist-buttons">
      
      
        <a href="/en-fr/products/easy-bake-pressed-powder-phone-grip-hb01821m?variant=50886374523158" class="button button--primary notify-me-btn">Notify Me</a>
      
    </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="sections--26760397881622__header"
      data-form-id="product-form-sections--26760397881622__header"
      dl-product-id="HB01822"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-sections--26760397881622__header" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="50886374523158"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="89"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <button
              id="ProductSubmitButton-sections--26760397881622__header"
              data-dl-source="Defaul Search"
              data-url="/en-fr/products/easy-bake-pressed-powder-phone-grip-hb01821m?variant=50886374523158"
              type="submit"
              name="add"
              class="product-form__submit button button--full-width button--primary"
              
              
            >
              <span>
                Add to Bag
              </span>
            </button></div><input type="hidden" name="product-id" value="10353666228502" /><input type="hidden" name="section-id" value="sections--26760397881622__header" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li>
      

      <li
        id="predictive-search-option-product-5"
        class="predictive-search__list-item hide-product-on-small"
        role="option"
        aria-selected="false"
      >
        



  







  




      
      
















  

  

  

  

  

  

  

  






























  
  

  
    
    




<section
  class="featured-card-product"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB01500"
    dl-product-name="Easy Bake Pressed Powder"
    dl-product-brand="Huda Beauty"
    dl-product-category="Powder & Setting Spray"
    dl-product-category2="Face"
    dl-product-category3=""
    dl-product-variant="HB01500"
    dl-product-price="39,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/easy-bake-pressed-powder-hb01500m?variant=50844655616278"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1_2.jpg?v=1766386817&width=630 1x,            //hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1_2.jpg?v=1766386817&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/easy-bake-pressed-powder-hb01500m?variant=50844655616278"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1_2.jpg?v=1766386817&width=630"
          alt="Easy Bake Pressed Powder Peach Cupcake compact pressed powder in a black case"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE4.jpg?v=1766386831&width=630 1x,              //hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE4.jpg?v=1766386831&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE4.jpg?v=1766386831&width=630"
            alt="Easy Bake Pressed Powder Peach Cupcake with and without application showing airbrushed finish after 12 hours"
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">NEW</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-sections--26760397881622__header-10333579149590"
      class="product__info-container"
      data-section="sections--26760397881622__header"
      data-url="/en-fr/products/easy-bake-pressed-powder-hb01500m?variant=50844655616278"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/easy-bake-pressed-powder-hb01500m?variant=50844655616278">
          
            <h2 class="h6">Easy Bake Pressed Powder
</h2>
          
        </a>
      </div>
      
      
        <div class="featured-card_product-description mt-xs mb-xs caption">
          
            Super fine pressed powder with 12hr shine control for a non-caking airbrush matte finish. 
          
        </div>
      

      <div
        class="product_card_price mb-sm"
        id="price-sections--26760397881622__header"
        data-url="/en-fr/products/easy-bake-pressed-powder-hb01500m?variant=50844655616278"
        role="status"
        
      >


<div
    class="price      price-section-data price--large"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €39,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €39,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€-39,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker mb-xs">
        
          


<div class="loading__spinner">
  <svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" class="spinner" viewbox="0 0 66 66"><circle stroke-width="6" cx="33" cy="33" r="30" fill="none" class="path"/></svg>

</div>


<link href="//hudabeauty.com/cdn/shop/t/162/assets/product-card-swatches.css?v=48729697193943970631775984107" rel="stylesheet" type="text/css" media="all" />





<div
  class="product-card-swatches search-modal-swatches"
  data-handle="easy-bake-pressed-powder-hb01500m"
>

        

        
        
        
        
        

          <div
            data-id="50844655780118"
            class="product-swatch br-round"
            style="background-color: #FCFAF5; display: flex;"
            aria-label="Sugar Cookie Translucent"
            title="Sugar Cookie Translucent"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50844655747350"
            class="product-swatch br-round"
            style="background-color: #FDE0DD; display: flex;"
            aria-label="Cherry Blossom Cake"
            title="Cherry Blossom Cake"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50844655583510"
            class="product-swatch br-round"
            style="background-color: #FFF0DE; display: flex;"
            aria-label="Pound Cake"
            title="Pound Cake"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50844655616278"
            class="product-swatch br-round"
            style="background-color: #FFE8DB; display: flex;"
            aria-label="Peach Cupcake"
            title="Peach Cupcake"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50844655649046"
            class="product-swatch br-round"
            style="background-color: #FFD9AD; display: flex;"
            aria-label="Banana Bread"
            title="Banana Bread"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50844655681814"
            class="product-swatch br-round"
            style="background-color: #FACC8C; display: flex;"
            aria-label="Kunafa Blondie"
            title="Kunafa Blondie"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50844655714582"
            class="product-swatch br-round"
            style="background-color: #DEA171; display: flex;"
            aria-label="Cinnamon Bun"
            title="Cinnamon Bun"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50844655812886"
            class="product-swatch br-round"
            style="background-color: #B87859; display: flex;"
            aria-label="Coco Truffle"
            title="Coco Truffle"
          ></div>
        

<div class="no-js-hidden quick-add"><modal-opener data-modal="#QuickAdd-10333579149590">
          <button
            id="-submit"
            type="button"
            name="add"
            class="color-swatch-item br-round featured-card_choose-more-colors"
            aria-haspopup="dialog"
            aria-labelledby="-submit title--10333579149590"
            data-product-url="/en-fr/products/easy-bake-pressed-powder-hb01500m?view=quick-view"
            data-handle="easy-bake-pressed-powder-hb01500m"
          ><svg aria-hidden="true" width="10" height="11" viewbox="0 0 10 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Plus">
<path id="Vector 4" d="M0 5.5H10" stroke="black"/>
<path id="Vector 3" d="M5 0.5V10.5" stroke="black"/>
</g>
</svg>
</button>
        </modal-opener>
        <quick-add-modal id="QuickAdd-10333579149590" class="quick-add-modal">
          <div
            role="dialog"
            aria-label="Choose options for Easy Bake Pressed Powder"
            aria-modal="true"
            class="quick-add-modal__content global-settings-popup"
            tabindex="-1"
          >
            <button
              id="ModalClose-10333579149590"
              type="button"
              class="popup__close"
              aria-label="Close"
            ><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewbox="0 0 20 19" fill="none">
  <path d="M18.9999 0.5L1.25488 18.245L18.9999 0.5Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
  <path d="M18.745 18.245L1 0.5L18.745 18.245Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
</svg></button>
            <div id="QuickAddInfo-10333579149590" class="quick-add-modal__content-info"></div>
          </div>
        </quick-add-modal></div></div><script type="application/json" data-selected-variant-meta>
  {
    "default_selected_variant": {"id":50844655616278,"title":"Peach Cupcake","option1":"Peach Cupcake","option2":null,"option3":null,"sku":"HB01500","requires_shipping":true,"taxable":true,"featured_image":{"id":53632378700054,"product_id":10333579149590,"position":7,"created_at":"2025-12-22T11:00:15+04:00","updated_at":"2025-12-22T11:00:17+04:00","alt":"Easy Bake Pressed Powder Peach Cupcake compact pressed powder in a black case","width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1_2.jpg?v=1766386817","variant_ids":[50844655616278]},"available":true,"name":"Easy Bake Pressed Powder - Peach Cupcake","public_title":"Peach Cupcake","options":["Peach Cupcake"],"price":3900,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408475","featured_media":{"alt":"Easy Bake Pressed Powder Peach Cupcake compact pressed powder in a black case","id":43542466003222,"position":7,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1_2.jpg?v=1766386817"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},
    "product": {"id":10333579149590,"title":"Easy Bake Pressed Powder","handle":"easy-bake-pressed-powder-hb01500m","description":"","published_at":"2025-12-24T20:48:18+04:00","created_at":"2025-12-14T15:26:41+04:00","vendor":"Huda Beauty","type":"","tags":["HB"],"price":3900,"price_min":3900,"price_max":3900,"available":true,"price_varies":false,"compare_at_price":null,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":50844655780118,"title":"Sugar Cookie Translucent","option1":"Sugar Cookie Translucent","option2":null,"option3":null,"sku":"HB01505","requires_shipping":true,"taxable":true,"featured_image":{"id":53632603291926,"product_id":10333579149590,"position":9,"created_at":"2025-12-22T11:24:32+04:00","updated_at":"2025-12-22T11:24:33+04:00","alt":"Easy Bake Pressed Powder Sugar Cookie Translucent compact pressed powder in a black case","width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE1.jpg?v=1766388273","variant_ids":[50844655780118]},"available":true,"name":"Easy Bake Pressed Powder - Sugar Cookie Translucent","public_title":"Sugar Cookie Translucent","options":["Sugar Cookie Translucent"],"price":3900,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408529","featured_media":{"alt":"Easy Bake Pressed Powder Sugar Cookie Translucent compact pressed powder in a black case","id":43542689677590,"position":9,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE1.jpg?v=1766388273"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50844655747350,"title":"Cherry Blossom Cake","option1":"Cherry Blossom Cake","option2":null,"option3":null,"sku":"HB01504","requires_shipping":true,"taxable":true,"featured_image":{"id":53595328119062,"product_id":10333579149590,"position":8,"created_at":"2025-12-20T00:19:52+04:00","updated_at":"2025-12-20T00:19:55+04:00","alt":"Easy Bake Pressed Powder Cherry Blossom Cake compact pressed powder in a black case","width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE1.jpg?v=1766175595","variant_ids":[50844655747350]},"available":true,"name":"Easy Bake Pressed Powder - Cherry Blossom Cake","public_title":"Cherry Blossom Cake","options":["Cherry Blossom Cake"],"price":3900,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408512","featured_media":{"alt":"Easy Bake Pressed Powder Cherry Blossom Cake compact pressed powder in a black case","id":43512109236502,"position":8,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE1.jpg?v=1766175595"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50844655583510,"title":"Pound Cake","option1":"Pound Cake","option2":null,"option3":null,"sku":"HB01499","requires_shipping":true,"taxable":true,"featured_image":{"id":53632297992470,"product_id":10333579149590,"position":4,"created_at":"2025-12-22T10:51:40+04:00","updated_at":"2025-12-22T10:51:42+04:00","alt":"Easy Bake Pressed Powder Pound Cake compact pressed powder in a black case","width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE1_aa06a46a-1194-463b-916a-ee5e7a463cb7.jpg?v=1766386302","variant_ids":[50844655583510]},"available":true,"name":"Easy Bake Pressed Powder - Pound Cake","public_title":"Pound Cake","options":["Pound Cake"],"price":3900,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408468","featured_media":{"alt":"Easy Bake Pressed Powder Pound Cake compact pressed powder in a black case","id":43542386934038,"position":4,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE1_aa06a46a-1194-463b-916a-ee5e7a463cb7.jpg?v=1766386302"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50844655616278,"title":"Peach Cupcake","option1":"Peach Cupcake","option2":null,"option3":null,"sku":"HB01500","requires_shipping":true,"taxable":true,"featured_image":{"id":53632378700054,"product_id":10333579149590,"position":7,"created_at":"2025-12-22T11:00:15+04:00","updated_at":"2025-12-22T11:00:17+04:00","alt":"Easy Bake Pressed Powder Peach Cupcake compact pressed powder in a black case","width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1_2.jpg?v=1766386817","variant_ids":[50844655616278]},"available":true,"name":"Easy Bake Pressed Powder - Peach Cupcake","public_title":"Peach Cupcake","options":["Peach Cupcake"],"price":3900,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408475","featured_media":{"alt":"Easy Bake Pressed Powder Peach Cupcake compact pressed powder in a black case","id":43542466003222,"position":7,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1_2.jpg?v=1766386817"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50844655649046,"title":"Banana Bread","option1":"Banana Bread","option2":null,"option3":null,"sku":"HB01501","requires_shipping":true,"taxable":true,"featured_image":{"id":53595418722582,"product_id":10333579149590,"position":6,"created_at":"2025-12-20T00:25:15+04:00","updated_at":"2025-12-20T00:25:16+04:00","alt":"Easy Bake Pressed Powder Banana Bread compact pressed powder in a black case","width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE1.jpg?v=1766175916","variant_ids":[50844655649046]},"available":true,"name":"Easy Bake Pressed Powder - Banana Bread","public_title":"Banana Bread","options":["Banana Bread"],"price":3900,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408482","featured_media":{"alt":"Easy Bake Pressed Powder Banana Bread compact pressed powder in a black case","id":43512188698902,"position":6,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE1.jpg?v=1766175916"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50844655681814,"title":"Kunafa Blondie","option1":"Kunafa Blondie","option2":null,"option3":null,"sku":"HB01502","requires_shipping":true,"taxable":true,"featured_image":{"id":53595493826838,"product_id":10333579149590,"position":3,"created_at":"2025-12-20T00:31:01+04:00","updated_at":"2025-12-20T00:31:03+04:00","alt":"Easy Bake Pressed Powder Kunafa Blondie compact pressed powder in a black case","width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE1.jpg?v=1766176263","variant_ids":[50844655681814]},"available":true,"name":"Easy Bake Pressed Powder - Kunafa Blondie","public_title":"Kunafa Blondie","options":["Kunafa Blondie"],"price":3900,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408499","featured_media":{"alt":"Easy Bake Pressed Powder Kunafa Blondie compact pressed powder in a black case","id":43512250728726,"position":3,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE1.jpg?v=1766176263"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50844655714582,"title":"Cinnamon Bun","option1":"Cinnamon Bun","option2":null,"option3":null,"sku":"HB01503","requires_shipping":true,"taxable":true,"featured_image":{"id":53632566558998,"product_id":10333579149590,"position":5,"created_at":"2025-12-22T11:20:23+04:00","updated_at":"2025-12-22T11:20:25+04:00","alt":"Easy Bake Pressed Powder Cinnamon Bun compact pressed powder in a black case","width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE1.jpg?v=1766388025","variant_ids":[50844655714582]},"available":true,"name":"Easy Bake Pressed Powder - Cinnamon Bun","public_title":"Cinnamon Bun","options":["Cinnamon Bun"],"price":3900,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408505","featured_media":{"alt":"Easy Bake Pressed Powder Cinnamon Bun compact pressed powder in a black case","id":43542653075734,"position":5,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE1.jpg?v=1766388025"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50844655812886,"title":"Coco Truffle","option1":"Coco Truffle","option2":null,"option3":null,"sku":"HB01535","requires_shipping":true,"taxable":true,"featured_image":{"id":53632648380694,"product_id":10333579149590,"position":2,"created_at":"2025-12-22T11:29:01+04:00","updated_at":"2025-12-22T11:29:03+04:00","alt":"Easy Bake Pressed Powder Coco Truffle compact pressed powder in a black case","width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE1.jpg?v=1766388543","variant_ids":[50844655812886]},"available":true,"name":"Easy Bake Pressed Powder - Coco Truffle","public_title":"Coco Truffle","options":["Coco Truffle"],"price":3900,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408536","featured_media":{"alt":"Easy Bake Pressed Powder Coco Truffle compact pressed powder in a black case","id":43542734471446,"position":2,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE1.jpg?v=1766388543"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}],"images":["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1.jpg?v=1766177190","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE1.jpg?v=1766388543","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE1.jpg?v=1766176263","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE1_aa06a46a-1194-463b-916a-ee5e7a463cb7.jpg?v=1766386302","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE1.jpg?v=1766388025","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE1.jpg?v=1766175916","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1_2.jpg?v=1766386817","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE1.jpg?v=1766175595","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE1.jpg?v=1766388273"],"featured_image":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1.jpg?v=1766177190","options":["Shade"],"media":[{"alt":null,"id":43512422236438,"position":1,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1.jpg?v=1766177190"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1.jpg?v=1766177190","width":3000},{"alt":"Easy Bake Pressed Powder Coco Truffle compact pressed powder in a black case","id":43542734471446,"position":2,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE1.jpg?v=1766388543"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE1.jpg?v=1766388543","width":3000},{"alt":"Easy Bake Pressed Powder Kunafa Blondie compact pressed powder in a black case","id":43512250728726,"position":3,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE1.jpg?v=1766176263"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE1.jpg?v=1766176263","width":3000},{"alt":"Easy Bake Pressed Powder Pound Cake compact pressed powder in a black case","id":43542386934038,"position":4,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE1_aa06a46a-1194-463b-916a-ee5e7a463cb7.jpg?v=1766386302"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE1_aa06a46a-1194-463b-916a-ee5e7a463cb7.jpg?v=1766386302","width":3000},{"alt":"Easy Bake Pressed Powder Cinnamon Bun compact pressed powder in a black case","id":43542653075734,"position":5,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE1.jpg?v=1766388025"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE1.jpg?v=1766388025","width":3000},{"alt":"Easy Bake Pressed Powder Banana Bread compact pressed powder in a black case","id":43512188698902,"position":6,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE1.jpg?v=1766175916"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE1.jpg?v=1766175916","width":3000},{"alt":"Easy Bake Pressed Powder Peach Cupcake compact pressed powder in a black case","id":43542466003222,"position":7,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1_2.jpg?v=1766386817"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1_2.jpg?v=1766386817","width":3000},{"alt":"Easy Bake Pressed Powder Cherry Blossom Cake compact pressed powder in a black case","id":43512109236502,"position":8,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE1.jpg?v=1766175595"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE1.jpg?v=1766175595","width":3000},{"alt":"Easy Bake Pressed Powder Sugar Cookie Translucent compact pressed powder in a black case","id":43542689677590,"position":9,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE1.jpg?v=1766388273"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE1.jpg?v=1766388273","width":3000}],"requires_selling_plan":false,"selling_plan_groups":[],"content":""},
    "variants": [
      
{
          "id": 50844655780118,
          "title": "Sugar Cookie Translucent",
          "available": true,
          "inventory": 463,
          "max_product_quantity": 5,
          "price": "€39,00",
          "save_price": "€-39,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE1.jpg?v=1766388273","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE4.jpg?v=1766388291",{"alt":"Easy Bake Pressed Powder application tutorial video demonstrating pressed powder use","id":43764305723670,"position":null,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/cd9f32dee96e448ca14bae8b54a64740.thumbnail.0000000000.jpg?v=1767869539"},"aspect_ratio":0.563,"duration":108000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.SD-480p-1.5Mbps-66584999.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-1080p-7.2Mbps-66584999.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-720p-4.5Mbps-66584999.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE5.jpg?v=1766388295","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE6.jpg?v=1766388291","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE2.jpg?v=1766388299","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE7.jpg?v=1766388307","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE8.jpg?v=1766388286","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE9.jpg?v=1766388307","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE10.jpg?v=1766388276","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE11.jpg?v=1766388403","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE12.jpg?v=1766388402"],
              "shortDescription": "Super fine pressed powder with 12hr shine control for a non-caking airbrush matte finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50844655747350,
          "title": "Cherry Blossom Cake",
          "available": true,
          "inventory": 2420,
          "max_product_quantity": 5,
          "price": "€39,00",
          "save_price": "€-39,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE1.jpg?v=1766175595","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE4.jpg?v=1766175599",{"alt":"Easy Bake Pressed Powder application tutorial video demonstrating pressed powder use","id":43764305723670,"position":null,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/cd9f32dee96e448ca14bae8b54a64740.thumbnail.0000000000.jpg?v=1767869539"},"aspect_ratio":0.563,"duration":108000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.SD-480p-1.5Mbps-66584999.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-1080p-7.2Mbps-66584999.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-720p-4.5Mbps-66584999.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE5.jpg?v=1766175602","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE6.jpg?v=1766175599","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE2.jpg?v=1766175603","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE7.jpg?v=1766175603","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE8.jpg?v=1766175598","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE9.jpg?v=1766175603","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE10.jpg?v=1766175593","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE11.jpg?v=1766175602","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE12.jpg?v=1766175599"],
              "shortDescription": "Super fine pressed powder with 12hr shine control for a non-caking airbrush matte finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50844655583510,
          "title": "Pound Cake",
          "available": true,
          "inventory": 3874,
          "max_product_quantity": 5,
          "price": "€39,00",
          "save_price": "€-39,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE1_aa06a46a-1194-463b-916a-ee5e7a463cb7.jpg?v=1766386302","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE4.jpg?v=1766386313",{"alt":"Easy Bake Pressed Powder application tutorial video demonstrating pressed powder use","id":43764305723670,"position":null,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/cd9f32dee96e448ca14bae8b54a64740.thumbnail.0000000000.jpg?v=1767869539"},"aspect_ratio":0.563,"duration":108000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.SD-480p-1.5Mbps-66584999.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-1080p-7.2Mbps-66584999.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-720p-4.5Mbps-66584999.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE5.jpg?v=1766386317","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE6.jpg?v=1766386314","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE2.jpg?v=1766386318","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE7.jpg?v=1766386320","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE8.jpg?v=1766386308","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE9.jpg?v=1766386321","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE10_836b9c9c-a578-4ea7-aaab-28a2d44d5134.jpg?v=1766386302","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE11.jpg?v=1766386318","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE12.jpg?v=1766386312"],
              "shortDescription": "Super fine pressed powder with 12hr shine control for a non-caking airbrush matte finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50844655616278,
          "title": "Peach Cupcake",
          "available": true,
          "inventory": 2330,
          "max_product_quantity": 5,
          "price": "€39,00",
          "save_price": "€-39,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1_2.jpg?v=1766386817","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE4.jpg?v=1766386831",{"alt":"Easy Bake Pressed Powder application tutorial video demonstrating pressed powder use","id":43764305723670,"position":null,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/cd9f32dee96e448ca14bae8b54a64740.thumbnail.0000000000.jpg?v=1767869539"},"aspect_ratio":0.563,"duration":108000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.SD-480p-1.5Mbps-66584999.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-1080p-7.2Mbps-66584999.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-720p-4.5Mbps-66584999.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE5.jpg?v=1766386849","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE6.jpg?v=1766386833","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE2.jpg?v=1766386853","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE7.jpg?v=1766386864","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE8.jpg?v=1766386828","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE9.jpg?v=1766386864","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE10.jpg?v=1766386816","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE11.jpg?v=1766386856","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE12.jpg?v=1766386832"],
              "shortDescription": "Super fine pressed powder with 12hr shine control for a non-caking airbrush matte finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50844655649046,
          "title": "Banana Bread",
          "available": true,
          "inventory": 1143,
          "max_product_quantity": 5,
          "price": "€39,00",
          "save_price": "€-39,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE1.jpg?v=1766175916","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE4.jpg?v=1766175919",{"alt":"Easy Bake Pressed Powder application tutorial video demonstrating pressed powder use","id":43764305723670,"position":null,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/cd9f32dee96e448ca14bae8b54a64740.thumbnail.0000000000.jpg?v=1767869539"},"aspect_ratio":0.563,"duration":108000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.SD-480p-1.5Mbps-66584999.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-1080p-7.2Mbps-66584999.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-720p-4.5Mbps-66584999.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE5.jpg?v=1766175921","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE6.jpg?v=1766175919","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE2.jpg?v=1766175922","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE7.jpg?v=1766175921","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE8.jpg?v=1766387060","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE9.jpg?v=1766387066","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE10.jpg?v=1766175916","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE11.jpg?v=1766175920","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE12.jpg?v=1766175918"],
              "shortDescription": "Super fine pressed powder with 12hr shine control for a non-caking airbrush matte finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50844655681814,
          "title": "Kunafa Blondie",
          "available": true,
          "inventory": 502,
          "max_product_quantity": 5,
          "price": "€39,00",
          "save_price": "€-39,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE1.jpg?v=1766176263","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE4.jpg?v=1766387681",{"alt":"Easy Bake Pressed Powder application tutorial video demonstrating pressed powder use","id":43764305723670,"position":null,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/cd9f32dee96e448ca14bae8b54a64740.thumbnail.0000000000.jpg?v=1767869539"},"aspect_ratio":0.563,"duration":108000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.SD-480p-1.5Mbps-66584999.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-1080p-7.2Mbps-66584999.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-720p-4.5Mbps-66584999.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE5.jpg?v=1766176269","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE6.jpg?v=1766387681","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE2.jpg?v=1766387682","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE7.jpg?v=1766176272","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE8.jpg?v=1766176264","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE9.jpg?v=1766176274","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE10.jpg?v=1766387597","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE11.jpg?v=1766387604","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE12.jpg?v=1766387603"],
              "shortDescription": "Super fine pressed powder with 12hr shine control for a non-caking airbrush matte finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50844655714582,
          "title": "Cinnamon Bun",
          "available": true,
          "inventory": 33,
          "max_product_quantity": 5,
          "price": "€39,00",
          "save_price": "€-39,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE1.jpg?v=1766388025","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE4.jpg?v=1766388041",{"alt":"Easy Bake Pressed Powder application tutorial video demonstrating pressed powder use","id":43764305723670,"position":null,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/cd9f32dee96e448ca14bae8b54a64740.thumbnail.0000000000.jpg?v=1767869539"},"aspect_ratio":0.563,"duration":108000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.SD-480p-1.5Mbps-66584999.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-1080p-7.2Mbps-66584999.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-720p-4.5Mbps-66584999.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE5.jpg?v=1766388055","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE6.jpg?v=1766388043","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE2.jpg?v=1766388064","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE7.jpg?v=1766388065","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE8.jpg?v=1766388034","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE9.jpg?v=1766388065","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE10.jpg?v=1766388017","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE11.jpg?v=1766388061","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE12.jpg?v=1766388043"],
              "shortDescription": "Super fine pressed powder with 12hr shine control for a non-caking airbrush matte finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50844655812886,
          "title": "Coco Truffle",
          "available": true,
          "inventory": 41,
          "max_product_quantity": 5,
          "price": "€39,00",
          "save_price": "€-39,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE1.jpg?v=1766388543","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE4_1.jpg?v=1766388552",{"alt":"Easy Bake Pressed Powder application tutorial video demonstrating pressed powder use","id":43764305723670,"position":null,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/cd9f32dee96e448ca14bae8b54a64740.thumbnail.0000000000.jpg?v=1767869539"},"aspect_ratio":0.563,"duration":108000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.SD-480p-1.5Mbps-66584999.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-1080p-7.2Mbps-66584999.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-720p-4.5Mbps-66584999.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE5_1.jpg?v=1766388556","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE6.jpg?v=1766388553","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE2.jpg?v=1766388560","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE7.jpg?v=1766388563","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE8.jpg?v=1766388548","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE9_1.jpg?v=1766388563","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE10.jpg?v=1766388539","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE11.jpg?v=1766388561","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE12.jpg?v=1766388557"],
              "shortDescription": "Super fine pressed powder with 12hr shine control for a non-caking airbrush matte finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        }
      
    ]
  }
</script>

          
          
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10333579149590"><div data-oke-reviews-version="0.87.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 4.7 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 95.0549%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 4.7 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">4.7</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"4.7","reviewCount":389} </script></div></div>
    
        (389)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB01500" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        











<div  class="back-in-stock-container" style="display: none;"><div class="product-back-in-stock-buttons">
    
    

    
    
  </div></div>

        

         
          
















<div
  
  class="waitlist-container"
  
    style="display: none;"
  
><div class="product-waitlist-buttons">
      
      
        <a href="/en-fr/products/easy-bake-pressed-powder-hb01500m?variant=50844655616278" class="button button--primary notify-me-btn">Notify Me</a>
      
    </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="sections--26760397881622__header"
      data-form-id="product-form-sections--26760397881622__header"
      dl-product-id="HB01500"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-sections--26760397881622__header" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="50844655616278"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="2330"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <button
              id="ProductSubmitButton-sections--26760397881622__header"
              data-dl-source="Defaul Search"
              data-url="/en-fr/products/easy-bake-pressed-powder-hb01500m?variant=50844655616278"
              type="submit"
              name="add"
              class="product-form__submit button button--full-width button--primary"
              
              
            >
              <span>
                Add to Bag
              </span>
            </button></div><input type="hidden" name="product-id" value="10333579149590" /><input type="hidden" name="section-id" value="sections--26760397881622__header" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li>
      

      <li
        id="predictive-search-option-product-6"
        class="predictive-search__list-item hide-product-on-small"
        role="option"
        aria-selected="false"
      >
        



  























  

  

  

  

  

  

  

  


































<section
  class="featured-card-product"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB01505,HB01566"
    dl-product-name="Airbrush Made Easy Kit"
    dl-product-brand="Huda Beauty"
    dl-product-category="Powder & Setting Spray"
    dl-product-category2="Face"
    dl-product-category3=""
    dl-product-variant="Set_117-1"
    dl-product-price="51,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/airbrush-made-easy-kit-set_117?variant=50871072358678"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/01-AIRBRUSH-MADE-EASY.webp?v=1768200832&width=630 1x,            //hudabeauty.com/cdn/shop/files/01-AIRBRUSH-MADE-EASY.webp?v=1768200832&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/airbrush-made-easy-kit-set_117?variant=50871072358678"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/01-AIRBRUSH-MADE-EASY.webp?v=1768200832&width=630"
          alt="Airbrush Made Easy Kit"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/02-AIRBRUSH-MADE-EASY.webp?v=1768200832&width=630 1x,              //hudabeauty.com/cdn/shop/files/02-AIRBRUSH-MADE-EASY.webp?v=1768200832&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/02-AIRBRUSH-MADE-EASY.webp?v=1768200832&width=630"
            alt="Airbrush Made Easy Kit"
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">NEW</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
            
            
            
              <p class="badge--bottom-left sale-badge py-2xs px-xs h6">Save&nbsp; 11%
              </p>
            
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-sections--26760397881622__header-10347261657366"
      class="product__info-container"
      data-section="sections--26760397881622__header"
      data-url="/en-fr/products/airbrush-made-easy-kit-set_117?variant=50871072358678"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/airbrush-made-easy-kit-set_117?variant=50871072358678">
          
            <h2 class="h6">Airbrush Made Easy Kit
</h2>
          
        </a>
      </div>
      
      
        <div class="featured-card_product-description mt-xs mb-xs caption">
          
            Easy Bake Pressed Powder and the Marshmallow Sponge, bundled for effortless touch-ups.
          
        </div>
      

      <div
        class="product_card_price mb-sm"
        id="price-sections--26760397881622__header"
        data-url="/en-fr/products/airbrush-made-easy-kit-set_117?variant=50871072358678"
        role="status"
        
      >


<div
    class="price      price-section-data price--large price--on-sale"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €51,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €51,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              €57,00
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€6,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker mb-xs">
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10347261657366"><div data-oke-reviews-version="0.85.10" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 4.6 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 93.4066%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 4.6 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">4.6</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"4.6","reviewCount":19} </script></div></div>
    
        (19)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB01505,HB01566" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        




  
<!-- Extract last part after last dash from product handle -->



<div  class="bundle-back-in-stock-container">
  <div class="bundle-back-in-stock-button">
    
    
  </div>
</div>

      

         
          




<!-- Extract last part after last dash from product handle -->




  

  
<div  class="bundle-waitlist-container" style="display: none;"><div class="bundle-waitlist-button">
    
      
        <a href="/en-fr/products/airbrush-made-easy-kit-set_117" class="button button--primary button--full-width notify-me-btn">Notify Me</a>
    
  </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="sections--26760397881622__header"
      data-form-id="product-form-sections--26760397881622__header"
      dl-product-id="HB01505,HB01566"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-sections--26760397881622__header" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="50871072358678"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="463"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <a href="/en-fr/products/airbrush-made-easy-kit-set_117" class="button button--primary button--full-width select-shades-btn">Select shades</a>
          </div><input type="hidden" name="product-id" value="10347261657366" /><input type="hidden" name="section-id" value="sections--26760397881622__header" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li></ul>
</div>


<div class="predictive-search__loading-state">
  <svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" class="spinner" viewbox="0 0 66 66"><circle stroke-width="6" cx="33" cy="33" r="30" fill="none" class="path"/></svg>

</div>
</div>

            <span class="predictive-search-status visually-hidden" role="status" aria-hidden="true"></span></form></predictive-search><button
          type="button"
          class="search-modal__clear-button link caption hide"
          aria-label="Clear"
          tabindex="100"
        >
          Clear
        </button>
        <button
          type="button"
          class="search-modal__close-button modal__close-button link link--text focus-inset"
          aria-label="Close"
          tabindex="100"
        >
          <span class="svg-wrapper"><svg aria-hidden="true" width="20" height="20" viewbox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" class="icon icon__close-dark">
    <g id="X">
    <path id="Vector" d="M18.9999 1L1.25488 18.745L18.9999 1Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    <path id="Vector_2" d="M18.745 18.745L1 1L18.745 18.745Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"></path>
    </g>
</svg></span>
        </button>
      </div>
    </div>
  </details>
</details-modal>

<a
        href="/en-fr/account/login"
        class="header__icon header__icon--account link focus-inset logged-user-name header-large-show"
        rel="nofollow"
      ><account-icon><span class="svg-wrapper"><svg aria-hidden="true" fill="none" viewbox="0 0 30 30" id="account-white" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#acclip0_5504_2974)"><path d="M26.25 30v-3.84c0-5.962-5.037-10.795-11.25-10.795S3.75 20.198 3.75 26.159V30M14.738.709c1.653-.007 3.01.54 4.007 1.537a5.27 5.27 0 0 1 1.538 3.484c.007 1.654-.54 3.01-1.538 4.008a5.27 5.27 0 0 1-3.483 1.537c-1.653.008-3.01-.54-4.007-1.537a5.27 5.27 0 0 1-1.538-3.483c-.007-1.654.54-3.011 1.538-4.009A5.27 5.27 0 0 1 14.737.71z" stroke="#fff" stroke-width="2"></path></g></svg></span></account-icon><span class="visually-hidden">Log in</span>
      </a><div class="header__icon header__icon--cart link focus-inset" id="cart-icon-bubble">
        <span class="svg-wrapper"><svg aria-hidden="true" width="21" height="30" viewbox="0 0 21 30" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.75 6.95531H20.1562V29.2015H0.75V6.95531Z" stroke="white" stroke-width="1.5"/>
<path d="M16.2751 10.2165V6.33521C16.2751 3.25009 13.668 0.75 10.4532 0.75C7.23841 0.75 4.63135 3.25009 4.63135 6.33521V10.2165" stroke="white" stroke-width="1.5"/>
</svg>
</span>
        <span class="visually-hidden">Cart</span></div>
    
  </div>
</header>



<nav class="header__inline-menu header-small-hide">
  <div class="header__inline-menu-scroll">
    <ul class="list-menu list-menu--inline dl-menu-nav" role="list">
        <li><a
              id="HeaderMenu-strawberry-latte-collection"
              href="/en-fr/collections/shop-strawberry-latte"
              class="header__menu-item list-menu__item link link--text focus-inset"
              
            >
              <p
                class="header__active-menu-item h5"
              >Strawberry Latte Collection</p>
            </a></li>
        <li><header-menu>
              <details id="Details-HeaderMenu-2" class="mega-menu">
                <summary
                  id="HeaderMenu-new"
                  class="focus-inset"
                >
                  <a
                    id="HeaderMenu-new"
                    href="/en-fr/collections/new"
                    class="header__menu-item list-menu__item link link--text focus-inset"
                    
                  >
                    <p
                      class="header__active-menu-item h5"
                    >New</p>
                  </a>
                </summary>
                <div
                  id="MegaMenu-Content-2"
                  class="mega-menu__content color-scheme-5 gradient motion-reduce global-settings-popup"
                  tabindex="-1"
                >
                  
                  
                    
                      
                        <p class="category_title h5">Shop New</p>
                      
                    
                  
                    
                  
                    
                  
                  <div
                    
                  ><ul
                      class="mega-menu__list  mega-menu__list--condensed"
                      role="list"
                    ><li class="mega-menu__list--menu-column">
                              <a
                                id="HeaderMenu-new-new-blush-filter-blurring-blushlighters-palette-hb01577m"
                                href="/en-fr/products/blush-filter-blurring-blushlighters-palette-hb01577m"
                                class="mega-menu__link mega-menu__link--level-2 link mega-menu__link-product"
                              >


                                
                                
                                

                                <div class="mega-menu__product-item">
                                  
                                    <img
                                      src="//hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE_BLUSH-FILTER_PDP_PACKSHOT.webp?v=1774423100"
                                      alt="Blush Filter Blurring Blushlighters Palette"
                                      sizes="(min-width: 1440px) 327px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                                      class="mega-menu__product-image"
                                      width="148"
                                      height="auto"
                                      loading="lazy"
                                    >
                                  
                                  <p class="h5">Blush Filter Blurring Blushlighters Palette</p>
                                </div>
                              </a>
                            </li><li class="mega-menu__list--menu-column">
                              <a
                                id="HeaderMenu-new-new-faux-filler-extra-shine-lip-gloss-hb01251m"
                                href="/en-fr/products/faux-filler-extra-shine-lip-gloss-hb01251m"
                                class="mega-menu__link mega-menu__link--level-2 link mega-menu__link-product"
                              >


                                
                                
                                

                                <div class="mega-menu__product-item">
                                  
                                    <img
                                      src="//hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE_FFGLOSS_PDP_PACKSHOTS_LIGHTCEALER_1.webp?v=1774885552"
                                      alt="FAUX FILLER Extra Shine Lip Gloss"
                                      sizes="(min-width: 1440px) 327px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                                      class="mega-menu__product-image"
                                      width="148"
                                      height="auto"
                                      loading="lazy"
                                    >
                                  
                                  <p class="h5">FAUX FILLER Extra Shine Lip Gloss</p>
                                </div>
                              </a>
                            </li><li class="mega-menu__list--menu-column">
                              <a
                                id="HeaderMenu-new-new-blush-filter-liquid-blush-hb01345m"
                                href="/en-fr/products/blush-filter-liquid-blush-hb01345m"
                                class="mega-menu__link mega-menu__link--level-2 link mega-menu__link-product"
                              >


                                
                                
                                

                                <div class="mega-menu__product-item">
                                  
                                    <img
                                      src="//hudabeauty.com/cdn/shop/files/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494"
                                      alt="Blush Filter Liquid Blush"
                                      sizes="(min-width: 1440px) 327px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                                      class="mega-menu__product-image"
                                      width="148"
                                      height="auto"
                                      loading="lazy"
                                    >
                                  
                                  <p class="h5">Blush Filter Liquid Blush</p>
                                </div>
                              </a>
                            </li><li class="mega-menu__list--menu-column">
                              <a
                                id="HeaderMenu-new-new-strawberry-latte-collection-set_134"
                                href="/en-fr/products/strawberry-latte-collection-set_134"
                                class="mega-menu__link mega-menu__link--level-2 link mega-menu__link-product"
                              >


                                
                                
                                

                                <div class="mega-menu__product-item">
                                  
                                    <img
                                      src="//hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SLC-PACKSHOT.webp?v=1774769010"
                                      alt="Strawberry Latte Collection Kit"
                                      sizes="(min-width: 1440px) 327px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                                      class="mega-menu__product-image"
                                      width="148"
                                      height="auto"
                                      loading="lazy"
                                    >
                                  
                                  <p class="h5">Strawberry Latte Collection Kit</p>
                                </div>
                              </a>
                            </li><li class="mega-menu__list--menu-column">
                              <a
                                id="HeaderMenu-new-new-summers-hottest-look-set_136"
                                href="/en-fr/products/summers-hottest-look-set_136"
                                class="mega-menu__link mega-menu__link--level-2 link mega-menu__link-product"
                              >


                                
                                
                                

                                <div class="mega-menu__product-item">
                                  
                                    <img
                                      src="//hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SUMMERS-HOTTEST-LOOK-PACKSHOT.webp?v=1774850353"
                                      alt="Summer&#39;s Hottest Look Kit"
                                      sizes="(min-width: 1440px) 327px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                                      class="mega-menu__product-image"
                                      width="148"
                                      height="auto"
                                      loading="lazy"
                                    >
                                  
                                  <p class="h5">Summer&#39;s Hottest Look Kit</p>
                                </div>
                              </a>
                            </li><li class="mega-menu__list--menu-column">
                              <a
                                id="HeaderMenu-new-new-strawberry-latte-gloss-trio-set_135"
                                href="/en-fr/products/strawberry-latte-gloss-trio-set_135"
                                class="mega-menu__link mega-menu__link--level-2 link mega-menu__link-product"
                              >


                                
                                
                                

                                <div class="mega-menu__product-item">
                                  
                                    <img
                                      src="//hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_GLOSS-TRIO-PACKSHOT.webp?v=1774770400"
                                      alt="Strawberry Latte Gloss Trio Kit"
                                      sizes="(min-width: 1440px) 327px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                                      class="mega-menu__product-image"
                                      width="148"
                                      height="auto"
                                      loading="lazy"
                                    >
                                  
                                  <p class="h5">Strawberry Latte Gloss Trio Kit</p>
                                </div>
                              </a>
                            </li><li class="mega-menu__list--menu-column">
                              <a
                                id="HeaderMenu-new-new-easy-bake-loose-baking-setting-powder-hb00140m"
                                href="/en-fr/products/easy-bake-loose-baking-setting-powder-hb00140m"
                                class="mega-menu__link mega-menu__link--level-2 link mega-menu__link-product"
                              >


                                
                                
                                

                                <div class="mega-menu__product-item">
                                  
                                    <img
                                      src="//hudabeauty.com/cdn/shop/files/EASY-BAKE_MATCHA-MILK-CAKE_SHOP-PDP_FINAL_PACKSHOT_1.webp?v=1772447567"
                                      alt="Easy Bake Loose Baking &amp; Setting Powder"
                                      sizes="(min-width: 1440px) 327px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                                      class="mega-menu__product-image"
                                      width="148"
                                      height="auto"
                                      loading="lazy"
                                    >
                                  
                                  <p class="h5">Easy Bake Loose Baking &amp; Setting Powder</p>
                                </div>
                              </a>
                            </li><li class="mega-menu__list--menu-column">
                              <a
                                id="HeaderMenu-new-new-habibti-rosy-pink-lip-duo-2026-hb01682"
                                href="/en-fr/products/habibti-rosy-pink-lip-duo-2026-hb01682"
                                class="mega-menu__link mega-menu__link--level-2 link mega-menu__link-product"
                              >


                                
                                
                                

                                <div class="mega-menu__product-item">
                                  
                                    <img
                                      src="//hudabeauty.com/cdn/shop/files/PDP-SECTION1-HABIBTILIPDUO-TILE1_2.jpg?v=1769552467"
                                      alt="Habibti Rosy Pink Lip Duo"
                                      sizes="(min-width: 1440px) 327px, (min-width: 990px) calc((100vw - 130px) / 4), (min-width: 750px) calc((100vw - 120px) / 3), calc((100vw - 35px) / 2)"
                                      class="mega-menu__product-image"
                                      width="148"
                                      height="auto"
                                      loading="lazy"
                                    >
                                  
                                  <p class="h5">Habibti Rosy Pink Lip Duo</p>
                                </div>
                              </a>
                            </li>
                        
                      
                        
                      
                        
                      
                    </ul>
                  </div>
                  <div class="shop-all_link">
                    <a href="/en-fr/collections/new" class="button button--primary">
                      Shop All&nbsp;New
                    </a>
                  </div>
                </div>
              </details>
            </header-menu></li>
        <li><a
              id="HeaderMenu-best-sellers"
              href="/en-fr/collections/best-sellers"
              class="header__menu-item list-menu__item link link--text focus-inset"
              
            >
              <p
                class="header__active-menu-item h5"
              >Best Sellers</p>
            </a></li>
        <li><header-menu>
              <details id="Details-HeaderMenu-4" class="mega-menu">
                <summary
                  id="HeaderMenu-makeup"
                  class="focus-inset"
                >
                  <a
                    id="HeaderMenu-makeup"
                    href="/en-fr/collections/huda-beauty"
                    class="header__menu-item list-menu__item link link--text focus-inset"
                    
                  >
                    <p
                      class="header__active-menu-item h5"
                    >Makeup</p>
                  </a>
                </summary>
                <div
                  id="MegaMenu-Content-4"
                  class="mega-menu__content color-scheme-5 gradient motion-reduce global-settings-popup"
                  tabindex="-1"
                >
                  
                  
                    
                  
                    
                      
                        <img
                          data-src="//hudabeauty.com/cdn/shop/files/huda_rebrand-logo-black.svg?v=1760253673"
                          alt="Huda Beauty logo"
                          class="category_image"
                          width="180"
                          height="auto"
                          loading="lazy"
                        >
                        
                      
                    
                  
                    
                  
                  <div
                    
                      style="padding-top: 30px;"
                    
                  ><ul
                      class="mega-menu__list"
                      role="list"
                    ><li class="mega-menu__list--menu-column">
                            <a
                              id="HeaderMenu-makeup-face"
                              href="/en-fr/collections/huda-beauty-face"
                              class="mega-menu__link mega-menu__link--level-2 link"
                              
                            ><p class="h5">Face</p></a><ul class="list-unstyled" role="list"><li class="list-item_second-level">
                                    <a
                                      id="HeaderMenu-makeup-face-foundation"
                                      href="/en-fr/collections/face-foundation"
                                      class="mega-menu__link link mega-menu__link--level-3"
                                      
                                    >
                                      <p class="h5">Foundation</p>
                                    </a>
                                  </li><li class="list-item_second-level">
                                    <a
                                      id="HeaderMenu-makeup-face-powder-setting-spray"
                                      href="/en-fr/collections/face-powder-setting-spray"
                                      class="mega-menu__link link mega-menu__link--level-3"
                                      
                                    >
                                      <p class="h5">Powder &amp; Setting Spray</p>
                                    </a>
                                  </li><li class="list-item_second-level">
                                    <a
                                      id="HeaderMenu-makeup-face-primer"
                                      href="/en-fr/collections/face-primer"
                                      class="mega-menu__link link mega-menu__link--level-3"
                                      
                                    >
                                      <p class="h5">Primer</p>
                                    </a>
                                  </li><li class="list-item_second-level">
                                    <a
                                      id="HeaderMenu-makeup-face-concealer-corrector"
                                      href="/en-fr/collections/face-concealer"
                                      class="mega-menu__link link mega-menu__link--level-3"
                                      
                                    >
                                      <p class="h5">Concealer &amp; Corrector</p>
                                    </a>
                                  </li><li class="list-item_second-level">
                                    <a
                                      id="HeaderMenu-makeup-face-contour-highlight"
                                      href="/en-fr/collections/face-contour-highlight"
                                      class="mega-menu__link link mega-menu__link--level-3"
                                      
                                    >
                                      <p class="h5">Contour &amp; Highlight</p>
                                    </a>
                                  </li></ul></li><li class="mega-menu__list--menu-column">
                            <a
                              id="HeaderMenu-makeup-eyes"
                              href="/en-fr/collections/huda-beauty-eyes"
                              class="mega-menu__link mega-menu__link--level-2 link"
                              
                            ><p class="h5">Eyes</p></a><ul class="list-unstyled" role="list"><li class="list-item_second-level">
                                    <a
                                      id="HeaderMenu-makeup-eyes-eyeshadow"
                                      href="/en-fr/collections/eyes-eyeshadow"
                                      class="mega-menu__link link mega-menu__link--level-3"
                                      
                                    >
                                      <p class="h5">Eyeshadow</p>
                                    </a>
                                  </li><li class="list-item_second-level">
                                    <a
                                      id="HeaderMenu-makeup-eyes-eyebrows"
                                      href="/en-fr/collections/eyes-eyebrows"
                                      class="mega-menu__link link mega-menu__link--level-3"
                                      
                                    >
                                      <p class="h5">Eyebrows</p>
                                    </a>
                                  </li><li class="list-item_second-level">
                                    <a
                                      id="HeaderMenu-makeup-eyes-eyeliner"
                                      href="/en-fr/collections/eyes-eyeliner"
                                      class="mega-menu__link link mega-menu__link--level-3"
                                      
                                    >
                                      <p class="h5">Eyeliner</p>
                                    </a>
                                  </li><li class="list-item_second-level">
                                    <a
                                      id="HeaderMenu-makeup-eyes-mascara"
                                      href="/en-fr/collections/eyes-mascara"
                                      class="mega-menu__link link mega-menu__link--level-3"
                                      
                                    >
                                      <p class="h5">Mascara</p>
                                    </a>
                                  </li><li class="list-item_second-level">
                                    <a
                                      id="HeaderMenu-makeup-eyes-fake-eyelashes"
                                      href="/en-fr/collections/eyes-fake-eyelashes"
                                      class="mega-menu__link link mega-menu__link--level-3"
                                      
                                    >
                                      <p class="h5">Fake Eyelashes</p>
                                    </a>
                                  </li></ul></li><li class="mega-menu__list--menu-column">
                            <a
                              id="HeaderMenu-makeup-lips"
                              href="/en-fr/collections/huda-beauty-lips"
                              class="mega-menu__link mega-menu__link--level-2 link"
                              
                            ><p class="h5">Lips</p></a><ul class="list-unstyled" role="list"><li class="list-item_second-level">
                                    <a
                                      id="HeaderMenu-makeup-lips-jelly-stained-lips"
                                      href="/en-fr/collections/lip-oil"
                                      class="mega-menu__link link mega-menu__link--level-3"
                                      
                                    >
                                      <p class="h5">Jelly Stained Lips</p>
                                    </a>
                                  </li><li class="list-item_second-level">
                                    <a
                                      id="HeaderMenu-makeup-lips-lipstick"
                                      href="/en-fr/collections/lips-lipstick"
                                      class="mega-menu__link link mega-menu__link--level-3"
                                      
                                    >
                                      <p class="h5">Lipstick</p>
                                    </a>
                                  </li><li class="list-item_second-level">
                                    <a
                                      id="HeaderMenu-makeup-lips-lip-care-gloss"
                                      href="/en-fr/collections/lip-care-gloss"
                                      class="mega-menu__link link mega-menu__link--level-3"
                                      
                                    >
                                      <p class="h5">Lip Care &amp; Gloss</p>
                                    </a>
                                  </li></ul></li><li class="mega-menu__list--menu-column">
                            <a
                              id="HeaderMenu-makeup-cheek"
                              href="/en-fr/collections/huda-beauty-cheek"
                              class="mega-menu__link mega-menu__link--level-2 link"
                              
                            ><p class="h5">Cheek</p></a><ul class="list-unstyled" role="list"><li class="list-item_second-level">
                                    <a
                                      id="HeaderMenu-makeup-cheek-blush"
                                      href="/en-fr/collections/cheek-blush"
                                      class="mega-menu__link link mega-menu__link--level-3"
                                      
                                    >
                                      <p class="h5">Blush</p>
                                    </a>
                                  </li><li class="list-item_second-level">
                                    <a
                                      id="HeaderMenu-makeup-cheek-bronzer"
                                      href="/en-fr/collections/cheek-bronzer"
                                      class="mega-menu__link link mega-menu__link--level-3"
                                      
                                    >
                                      <p class="h5">Bronzer</p>
                                    </a>
                                  </li></ul></li><li class="mega-menu__list--menu-column">
                            <a
                              id="HeaderMenu-makeup-brushes-tools"
                              href="/en-fr/collections/huda-beauty-brushes-tools"
                              class="mega-menu__link mega-menu__link--level-2 link"
                              
                            ><p class="h5">Brushes &amp; Tools</p></a><ul class="list-unstyled" role="list"><li class="list-item_second-level">
                                    <a
                                      id="HeaderMenu-makeup-brushes-tools-brushes"
                                      href="/en-fr/collections/brushes-tools-brushes"
                                      class="mega-menu__link link mega-menu__link--level-3"
                                      
                                    >
                                      <p class="h5">Brushes</p>
                                    </a>
                                  </li><li class="list-item_second-level">
                                    <a
                                      id="HeaderMenu-makeup-brushes-tools-tools-accessories"
                                      href="/en-fr/collections/brushes-tools-tools-accessories"
                                      class="mega-menu__link link mega-menu__link--level-3"
                                      
                                    >
                                      <p class="h5">Tools &amp; Accessories</p>
                                    </a>
                                  </li></ul></li><li class="mega-menu__list--menu-column">
                            <a
                              id="HeaderMenu-makeup-minis"
                              href="/en-fr/collections/huda-beauty-makeup-mini-makeup"
                              class="mega-menu__link mega-menu__link--level-2 link"
                              
                            ><p class="h5">Minis</p></a></li>
                        
                      
                        
                      
                        
                      
                    </ul>
                  </div>
                  <div class="shop-all_link">
                    <a href="/en-fr/collections/huda-beauty" class="button button--primary">
                      Shop All&nbsp;Makeup
                    </a>
                  </div>
                </div>
              </details>
            </header-menu></li>
        <li><a
              id="HeaderMenu-hair-extensions"
              href="/en-fr/collections/l1-beauty-works"
              class="header__menu-item list-menu__item link link--text focus-inset"
              
            >
              <p
                class="header__active-menu-item h5"
              >Hair Extensions</p>
            </a></li>
        <li><a
              id="HeaderMenu-skincare"
              href="/en-fr/collections/wishful"
              class="header__menu-item list-menu__item link link--text focus-inset"
              
            >
              <p
                class="header__active-menu-item h5"
              >Skincare</p>
            </a></li>
        <li><a
              id="HeaderMenu-gifts-sets"
              href="/en-fr/collections/gifts-sets"
              class="header__menu-item list-menu__item link link--text focus-inset"
              
            >
              <p
                class="header__active-menu-item h5"
              >Gifts &amp; Sets</p>
            </a></li></ul>
  </div>
</nav>


  </sticky-header>


  


<script>
  class StickyHeader extends HTMLElement {
    constructor() {
      super();
    }

    connectedCallback() {
      this.header = document.querySelector('.section-header');
      this.headerIsAlwaysSticky =
        this.getAttribute('data-sticky-type') === 'always' ||
        this.getAttribute('data-sticky-type') === 'reduce-logo-size';
      this.headerBounds = {};

      this.setHeaderHeight();

      window.matchMedia('(max-width: 990px)').addEventListener('change', this.setHeaderHeight.bind(this));

      if (this.headerIsAlwaysSticky) {
        this.header.classList.add('shopify-section-header-sticky');
      }

      this.currentScrollTop = 0;
      this.preventReveal = false;
      this.predictiveSearch = this.querySelector('predictive-search');

      this.onScrollHandler = this.onScroll.bind(this);
      this.hideHeaderOnScrollUp = () => (this.preventReveal = true);

      this.addEventListener('preventHeaderReveal', this.hideHeaderOnScrollUp);
      window.addEventListener('scroll', this.onScrollHandler, false);

      this.createObserver();
    }

    setHeaderHeight() {
      document.documentElement.style.setProperty('--header-height', `${this.header.offsetHeight}px`);
    }

    disconnectedCallback() {
      this.removeEventListener('preventHeaderReveal', this.hideHeaderOnScrollUp);
      window.removeEventListener('scroll', this.onScrollHandler);
    }

    createObserver() {
      let observer = new IntersectionObserver((entries, observer) => {
        this.headerBounds = entries[0].intersectionRect;
        observer.disconnect();
      });

      observer.observe(this.header);
    }

    onScroll() {
      const scrollTop = window.pageYOffset || document.documentElement.scrollTop;

      if (this.predictiveSearch && this.predictiveSearch.isOpen) return;

      if (scrollTop > this.currentScrollTop && scrollTop > this.headerBounds.bottom) {
        this.header.classList.add('scrolled-past-header');
        if (this.preventHide) return;
        requestAnimationFrame(this.hide.bind(this));
      } else if (scrollTop < this.currentScrollTop && scrollTop > this.headerBounds.bottom) {
        this.header.classList.add('scrolled-past-header');
        if (!this.preventReveal) {
          requestAnimationFrame(this.reveal.bind(this));
        } else {
          window.clearTimeout(this.isScrolling);

          this.isScrolling = setTimeout(() => {
            this.preventReveal = false;
          }, 66);

          requestAnimationFrame(this.hide.bind(this));
        }
      } else if (scrollTop <= this.headerBounds.top) {
        this.header.classList.remove('scrolled-past-header');
        requestAnimationFrame(this.reset.bind(this));
      }

      this.currentScrollTop = scrollTop;
    }

    hide() {
      if (this.headerIsAlwaysSticky) return;
      this.header.classList.add('shopify-section-header-hidden', 'shopify-section-header-sticky');
      this.closeMenuDisclosure();
      this.closeSearchModal();
    }

    reveal() {
      if (this.headerIsAlwaysSticky) return;
      this.header.classList.add('shopify-section-header-sticky', 'animate');
      this.header.classList.remove('shopify-section-header-hidden');
    }

    reset() {
      if (this.headerIsAlwaysSticky) return;
      this.header.classList.remove('shopify-section-header-hidden', 'shopify-section-header-sticky', 'animate');
    }

    closeMenuDisclosure() {
      this.disclosures = this.disclosures || this.header.querySelectorAll('header-menu');
      this.disclosures.forEach((disclosure) => disclosure.close());
    }

    closeSearchModal() {
      this.searchModal = this.searchModal || this.header.querySelector('details-modal');
      this.searchModal.close(false);
    }
  }

  customElements.define('sticky-header', StickyHeader);

  // Fallback: Ensure sticky class is added even if connectedCallback doesn't fire
  document.addEventListener('DOMContentLoaded', function () {
    const stickyHeader = document.querySelector('sticky-header');
    if (stickyHeader) {
      const sectionHeader = document.querySelector('.section-header');
      if (sectionHeader && !sectionHeader.classList.contains('shopify-section-header-sticky')) {
        sectionHeader.classList.add('shopify-section-header-sticky');
      }
    }
  });
</script>


<style> #shopify-section-sections--26760397881622__header #HeaderMenu-ramadan p {color: #eb3986;} #shopify-section-sections--26760397881622__header #HeaderMenu-ramadan:hover p {color: #fff;} #shopify-section-sections--26760397881622__header .sticky.header__inline-menu #HeaderMenu-ramadan:hover p {color: #eb3986 !important;} #shopify-section-sections--26760397881622__header #HeaderMenu-ramadan p {color: #eb3986;} #shopify-section-sections--26760397881622__header #HeaderMenu-ramadan:hover p {color: #fff;} #shopify-section-sections--26760397881622__header .sticky.header__inline-menu #HeaderMenu-ramadan:hover p {color: #eb3986 !important;} </style></div>
<!-- END sections: header-group -->
    <div id="MainContentContainer">
      <main id="MainContent" class="content-for-layout focus-none" role="main" tabindex="-1">
        <section id="shopify-section-template--26760399323414__slideshow_jFwfDW" class="shopify-section section">
  <link href="//hudabeauty.com/cdn/shop/t/162/assets/component-slideshow-custom.css?v=42920757928406666821775984106" rel="stylesheet" type="text/css" media="all" />

<link href="//hudabeauty.com/cdn/shop/t/162/assets/section-image-banner.css?v=118206223836400765421775984106" rel="stylesheet" type="text/css" media="all" />
<link href="//hudabeauty.com/cdn/shop/t/162/assets/component-slider.css?v=145016471790583707941775984106" rel="stylesheet" type="text/css" media="all" />
<link href="//hudabeauty.com/cdn/shop/t/162/assets/component-slideshow.css?v=791413117635610561775984106" rel="stylesheet" type="text/css" media="all" />

<script src="//hudabeauty.com/cdn/shop/t/162/assets/hero-slideshow-dots.js?v=130528760382915714931775984107" defer></script><style data-shopify>.hero-slideshow-items-template--26760399323414__slideshow_jFwfDW #Slider-template--26760399323414__slideshow_jFwfDW.slideshow--no-crop {
        height: auto !important;aspect-ratio: 1.7593158216249236;}
      @media screen and (max-width: 749px) {
        .hero-slideshow-items-template--26760399323414__slideshow_jFwfDW #Slider-template--26760399323414__slideshow_jFwfDW.slideshow--no-crop {aspect-ratio: 0.6110236220472441;}
      }
      @media screen and (min-width: 750px) {
      .hero-slideshow-items-template--26760399323414__slideshow_jFwfDW #Slider-template--26760399323414__slideshow_jFwfDW .slideshow__text.banner__box.content-container.content-container--full-width-mobile.gradient {
        transform-origin: left center;
        transform: scale(var(--slideshow-text-scale, 1));
      }
    }
      @media screen and (min-width: 1600px) {
        .hero-slideshow-items-template--26760399323414__slideshow_jFwfDW #Slider-template--26760399323414__slideshow_jFwfDW .slideshow__text-wrapper.banner__content {
          max-width: 75%;
        }
      }
      @media screen and (min-width: 3500px) {
        .hero-slideshow-items-template--26760399323414__slideshow_jFwfDW #Slider-template--26760399323414__slideshow_jFwfDW .slideshow__text-wrapper.banner__content {
          max-height: 90%;
          margin-top: auto;
          margin-bottom: auto;
        }
      }@media screen and (max-width: 749px) {
      .hero-slideshow #Slider-template--26760399323414__slideshow_jFwfDW { position: relative; }}

  @media (max-width: 749px) {
    .hero-slideshow #Slider-template--26760399323414__slideshow_jFwfDW {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory;
      touch-action: pan-y pan-x;
      scrollbar-width: none;
    }

    .hero-slideshow #Slider-template--26760399323414__slideshow_jFwfDW::-webkit-scrollbar {
      display: none;
    }

    .hero-slideshow #Slider-template--26760399323414__slideshow_jFwfDW .slideshow__slide {
      flex: 0 0 100%;
      scroll-snap-align: start;
      scroll-snap-stop: always;
    }
  }</style><script>
    (function () {
      function updateSlideshowScale() {
        var w = window.innerWidth;
        var scale = w >= 1440 ? 1 + ((w - 1440) / 800) * 0.3 : Math.max(0.4, 1 + ((w - 1440) / 400) * 0.3);
        scale = Math.min(scale, 4);
        document.documentElement.style.setProperty('--slideshow-text-scale', scale);
      }

      updateSlideshowScale();
      window.addEventListener('resize', updateSlideshowScale);
    })();
  </script><div class="hero-slideshow-items hero-slideshow-items-template--26760399323414__slideshow_jFwfDW non-vip">
    <slideshow-component
      class="hero-slideshow slider-mobile-gutter"
      data-hero-slideshow
 role="region"
      aria-roledescription="Carousel"
      aria-label="Slideshow about our brand"
    ><div
        class="slideshow banner grid grid--1-col slider slider--everywhere slideshow--no-crop"
        id="Slider-template--26760399323414__slideshow_jFwfDW"
        aria-live="polite"
        aria-atomic="true"
        data-autoplay="true"
        data-speed="5"
      ><style>
              #Slide-template--26760399323414__slideshow_jFwfDW-1 .banner__media::after {
                opacity: 0.0;
              }
              @media screen and (min-width: 750px) {
                #Slide-template--26760399323414__slideshow_jFwfDW-1 .banner__media__desktop > img {
                  object-position: left center;
                }
              }#Slide-template--26760399323414__slideshow_jFwfDW-1 {
                cursor: pointer;
                position: relative;
              }</style>
            <div
              class="slideshow__slide dl-promotion grid__item grid--1-col slider__slide slide1 slideshow__slide--clickable"
              data-promo-class="homepage_slideshow"
              data-promo-id="Homepage Banner 1"
              data-promo-name="Strawberry Latte launch Campaign"
              data-creative-slot="H1"
              id="Slide-template--26760399323414__slideshow_jFwfDW-1"
              
              role="group"
              aria-roledescription="Slide"
              aria-label="1 of 1"
              tabindex="-1"><div class="slideshow__media">
                <div class="banner__media banner__media__desktop media"><img src="//hudabeauty.com/cdn/shop/files/D-A1-STRAWBERRY-LATTE_1.webp?v=1775122234&amp;width=2880" srcset="//hudabeauty.com/cdn/shop/files/D-A1-STRAWBERRY-LATTE_1.webp?v=1775122234&amp;width=375 375w, //hudabeauty.com/cdn/shop/files/D-A1-STRAWBERRY-LATTE_1.webp?v=1775122234&amp;width=550 550w, //hudabeauty.com/cdn/shop/files/D-A1-STRAWBERRY-LATTE_1.webp?v=1775122234&amp;width=750 750w, //hudabeauty.com/cdn/shop/files/D-A1-STRAWBERRY-LATTE_1.webp?v=1775122234&amp;width=1100 1100w, //hudabeauty.com/cdn/shop/files/D-A1-STRAWBERRY-LATTE_1.webp?v=1775122234&amp;width=1500 1500w, //hudabeauty.com/cdn/shop/files/D-A1-STRAWBERRY-LATTE_1.webp?v=1775122234&amp;width=1780 1780w, //hudabeauty.com/cdn/shop/files/D-A1-STRAWBERRY-LATTE_1.webp?v=1775122234&amp;width=2000 2000w" width="2880" height="1637" sizes="100vw" fetchpriority="high">
</div>

                <div class="banner__media banner__media__mobile media"><img src="//hudabeauty.com/cdn/shop/files/M-A1-STRAWBERRY-LATTE_1.webp?v=1775122234&amp;width=776" srcset="//hudabeauty.com/cdn/shop/files/M-A1-STRAWBERRY-LATTE_1.webp?v=1775122234&amp;width=375 375w, //hudabeauty.com/cdn/shop/files/M-A1-STRAWBERRY-LATTE_1.webp?v=1775122234&amp;width=550 550w, //hudabeauty.com/cdn/shop/files/M-A1-STRAWBERRY-LATTE_1.webp?v=1775122234&amp;width=750 750w" width="776" height="1270" sizes="100vw" fetchpriority="high">
</div>
              </div>
              <div class="slideshow__text-wrapper banner__content banner__content--middle-left banner__content--mobile-bottom-center page-width">
                <div class="slideshow__text banner__box content-container content-container--full-width-mobile gradient slideshow__text--left slideshow__text-mobile--center">
                  <div class="hero-desktop-heading">
                    <div class="banner__heading inline-richtext h1">
                      <span style="color:#9E2240;">SUMMER’S HOTTEST LOOK </span>
                    </div>
                  </div>
                  <div class="hero-mobile-heading">
                    <div class="banner__heading inline-richtext h1">
                      <span style="color:#ffffff;">SUMMER’S HOTTEST LOOK
</span>
                    </div>
                  </div><div class="banner__text rte banner__text-template--26760399323414__slideshow_jFwfDW">
                      <h5><p>SERVING THE STRAWBERRY LATTE COLLECTION</p></h5>
                    </div><div class="banner__buttons mt-md"><span
                          class="button button--primary"
                        >shop now</span></div></div>
              </div>
            </div></div></slideshow-component>
  </div>
</section><section id="shopify-section-template--26760399323414__featured_collection_B3mC3V" class="shopify-section section"><link href="//hudabeauty.com/cdn/shop/t/162/assets/component-card.css?v=183669816822881184091775984104" rel="stylesheet" type="text/css" media="all" />
<link href="//hudabeauty.com/cdn/shop/t/162/assets/component-price.css?v=14160622623067344551775984107" rel="stylesheet" type="text/css" media="all" />

<link href="//hudabeauty.com/cdn/shop/t/162/assets/component-slider.css?v=145016471790583707941775984106" rel="stylesheet" type="text/css" media="all" />
<link href="//hudabeauty.com/cdn/shop/t/162/assets/template-collection.css?v=60862943061324753101775984107" rel="stylesheet" type="text/css" media="all" />
<link href="//hudabeauty.com/cdn/shop/t/162/assets/quick-add.css?v=38743820352346349611775984107" rel="stylesheet" type="text/css" media="all" />
<link href="//hudabeauty.com/cdn/shop/t/162/assets/component-price.css?v=14160622623067344551775984107" rel="stylesheet" type="text/css" media="all" />

<script src="//hudabeauty.com/cdn/shop/t/162/assets/show-more.js?v=4859102859842763771775984107" defer="defer"></script>
<script src="//hudabeauty.com/cdn/shop/t/162/assets/price-per-item.js?v=62459101616294089921775984106" defer="defer"></script>
<script src="//hudabeauty.com/cdn/shop/t/162/assets/quick-add.js?v=156640678623110567901775984108" defer="defer"></script><div
  class="color-scheme-1 isolate gradient featured-collection page-width py-xl featured-collection--with-footer-link"
>
  <div
    class="collection section-template--26760399323414__featured_collection_B3mC3V-padding featured-collection-container"
    id="collection-template--26760399323414__featured_collection_B3mC3V"
    data-id="template--26760399323414__featured_collection_B3mC3V"
  >
      <div class="tabs">
        
          <div class="collection__title">
            <h2
              class="tab active  h4"
              data-tab="collection-collection_jcig3T"
              data-collection-url="/en-fr/collections/new"
              data-view-all-label="View all products in the New collection"
            >
              NEW
            </h2>
          </div>
        
          <div class="collection__title">
            <h2
              class="tab   h4"
              data-tab="collection-collection_Ab4Rke"
              data-collection-url="/en-fr/collections/best-sellers"
              data-view-all-label="View all products in the Best Sellers collection"
            >
              BEST SELLERS
            </h2>
          </div>
        
          <div class="collection__title">
            <h2
              class="tab   h4"
              data-tab="collection-collection_crgyGE"
              data-collection-url="/en-fr/collections/gifts-sets"
              data-view-all-label="View all products in the Gifts &amp;amp; Sets collection"
            >
              GIFTS & SETS
            </h2>
          </div>
        
      </div>
    

    
      
      
        <div
          class="tab-content active"
          data-tab="collection-collection_jcig3T"
          id="collection-collection_jcig3T"
        >
          <slider-component
  class="dl-slider slider-mobile-gutter slider-wrapper slider-component-desktop"
><ul
    id="Slider-template--26760399323414__featured_collection_B3mC3V"
    data-id="template--26760399323414__featured_collection_B3mC3V"
    class="grid product-grid contains-card contains-card--product contains-card--standard  slider slider--desktop slider--tablet grid--peek"
    role="list"
    aria-label="Slider"
  >
    
<li
        id="Slide-template--26760399323414__featured_collection_B3mC3V-1"
        class="grid__item slider__slide"
        
      >
        



  























  

  

  

  






























  
  

  
    
    




<section
  class="featured-card-product featured-card-product--new-design"
  
    data-card-design="new"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB01693"
    dl-product-name="Blush Filter Blurring Blushlighters Palette"
    dl-product-brand="Huda Beauty"
    dl-product-category="Cheek"
    dl-product-category2="Huda Beauty"
    dl-product-category3=""
    dl-product-variant="HB01693"
    dl-product-price="43,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/blush-filter-blurring-blushlighters-palette-hb01577m?variant=51158622044438"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE_BLUSH-FILTER_PDP_PACKSHOT.webp?v=1774423100&width=630 1x,            //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE_BLUSH-FILTER_PDP_PACKSHOT.webp?v=1774423100&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/blush-filter-blurring-blushlighters-palette-hb01577m?variant=51158622044438"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE_BLUSH-FILTER_PDP_PACKSHOT.webp?v=1774423100&width=630"
          alt="Blush Filter Blurring Blushlighters Palette - Strawberry Latte"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/Artboard_129_1.webp?v=1774423113&width=630 1x,              //hudabeauty.com/cdn/shop/files/Artboard_129_1.webp?v=1774423113&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/Artboard_129_1.webp?v=1774423113&width=630"
            alt="Blush Filter Liquid Blush Strawberry Latte editorial makeup look"
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">NEW</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-template--26760399323414__featured_collection_B3mC3V-10305187217686"
      class="product__info-container"
      data-section="template--26760399323414__featured_collection_B3mC3V"
      data-url="/en-fr/products/blush-filter-blurring-blushlighters-palette-hb01577m?variant=51158622044438"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/blush-filter-blurring-blushlighters-palette-hb01577m?variant=51158622044438">
          
            <h3 class="h6">Blush Filter Blurring Blushlighters Palette
</h3>
          
        </a>
      </div>
      
      

      <div
        class="product_card_price mb-xs"
        id="price-template--26760399323414__featured_collection_B3mC3V"
        data-url="/en-fr/products/blush-filter-blurring-blushlighters-palette-hb01577m?variant=51158622044438"
        role="status"
        
      >


<div
    class="price      price-section-data price--large"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €43,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €43,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€-43,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker">
        
          


<div class="loading__spinner">
  <svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" class="spinner" viewbox="0 0 66 66"><circle stroke-width="6" cx="33" cy="33" r="30" fill="none" class="path"/></svg>

</div>


<link href="//hudabeauty.com/cdn/shop/t/162/assets/product-card-swatches.css?v=48729697193943970631775984107" rel="stylesheet" type="text/css" media="all" />





<div
  class="product-card-swatches featured-carousel"
  data-handle="blush-filter-blurring-blushlighters-palette-hb01577m"
>

        

        
        
        
        
        
<div class="product-swatch-new-wrapper">
            <span class="swatch-new-badge">NEW</span>
          <div
            data-id="51158622044438"
            class="product-swatch br-round"
            style="background-color: #B05A65; display: flex;"
            aria-label="Strawberry Latte"
            title="Strawberry Latte"
          ></div>
        
</div>


        

        
        
        
        
        

          <div
            data-id="50758522110230"
            class="product-swatch br-round"
            style="background-color: #e76d86; display: flex;"
            aria-label="Rose Berry"
            title="Rose Berry"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50758522142998"
            class="product-swatch br-round"
            style="background-color: #e97a78; display: flex;"
            aria-label="Toasty Peach"
            title="Toasty Peach"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50758522077462"
            class="product-swatch br-round"
            style="background-color: #ff7eb8; display: flex;"
            aria-label="Baby Pink"
            title="Baby Pink"
          ></div>
        

<div class="no-js-hidden quick-add"><modal-opener data-modal="#QuickAdd-10305187217686">
          <button
            id="-submit"
            type="button"
            name="add"
            class="color-swatch-item br-round featured-card_choose-more-colors"
            aria-haspopup="dialog"
            aria-labelledby="-submit title--10305187217686"
            data-product-url="/en-fr/products/blush-filter-blurring-blushlighters-palette-hb01577m?view=quick-view"
            data-handle="blush-filter-blurring-blushlighters-palette-hb01577m"
          ><svg aria-hidden="true" width="10" height="11" viewbox="0 0 10 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Plus">
<path id="Vector 4" d="M0 5.5H10" stroke="black"/>
<path id="Vector 3" d="M5 0.5V10.5" stroke="black"/>
</g>
</svg>
</button>
        </modal-opener>
        <quick-add-modal id="QuickAdd-10305187217686" class="quick-add-modal">
          <div
            role="dialog"
            aria-label="Choose options for Blush Filter Blurring Blushlighters Palette"
            aria-modal="true"
            class="quick-add-modal__content global-settings-popup"
            tabindex="-1"
          >
            <button
              id="ModalClose-10305187217686"
              type="button"
              class="popup__close"
              aria-label="Close"
            ><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewbox="0 0 20 19" fill="none">
  <path d="M18.9999 0.5L1.25488 18.245L18.9999 0.5Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
  <path d="M18.745 18.245L1 0.5L18.745 18.245Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
</svg></button>
            <div id="QuickAddInfo-10305187217686" class="quick-add-modal__content-info"></div>
          </div>
        </quick-add-modal></div></div><script type="application/json" data-selected-variant-meta>
  {
    "default_selected_variant": {"id":51158622044438,"title":"Strawberry Latte","option1":"Strawberry Latte","option2":null,"option3":null,"sku":"HB01693","requires_shipping":true,"taxable":true,"featured_image":{"id":54898466521366,"product_id":10305187217686,"position":5,"created_at":"2026-03-29T11:22:30+04:00","updated_at":"2026-03-29T11:23:30+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_BLUSH-FILTER_PDP_PACKSHOT_1.webp?v=1774769010","variant_ids":[51158622044438]},"available":true,"name":"Blush Filter Blurring Blushlighters Palette - Strawberry Latte","public_title":"Strawberry Latte","options":["Strawberry Latte"],"price":4300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409151","featured_media":{"alt":null,"id":44699700396310,"position":5,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_BLUSH-FILTER_PDP_PACKSHOT_1.webp?v=1774769010"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},
    "product": {"id":10305187217686,"title":"Blush Filter Blurring Blushlighters Palette","handle":"blush-filter-blurring-blushlighters-palette-hb01577m","description":"","published_at":"2026-02-24T17:18:05+04:00","created_at":"2025-11-23T10:18:46+04:00","vendor":"Huda Beauty","type":"","tags":["HB"],"price":4300,"price_min":4300,"price_max":4300,"available":true,"price_varies":false,"compare_at_price":null,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":51158622044438,"title":"Strawberry Latte","option1":"Strawberry Latte","option2":null,"option3":null,"sku":"HB01693","requires_shipping":true,"taxable":true,"featured_image":{"id":54898466521366,"product_id":10305187217686,"position":5,"created_at":"2026-03-29T11:22:30+04:00","updated_at":"2026-03-29T11:23:30+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_BLUSH-FILTER_PDP_PACKSHOT_1.webp?v=1774769010","variant_ids":[51158622044438]},"available":true,"name":"Blush Filter Blurring Blushlighters Palette - Strawberry Latte","public_title":"Strawberry Latte","options":["Strawberry Latte"],"price":4300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409151","featured_media":{"alt":null,"id":44699700396310,"position":5,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_BLUSH-FILTER_PDP_PACKSHOT_1.webp?v=1774769010"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50758522110230,"title":"Rose Berry","option1":"Rose Berry","option2":null,"option3":null,"sku":"HB01577","requires_shipping":true,"taxable":true,"featured_image":{"id":53112543248662,"product_id":10305187217686,"position":2,"created_at":"2025-11-24T16:48:24+04:00","updated_at":"2025-11-25T13:03:16+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_ROSEWOOD.webp?v=1764061396","variant_ids":[50758522110230]},"available":true,"name":"Blush Filter Blurring Blushlighters Palette - Rose Berry","public_title":"Rose Berry","options":["Rose Berry"],"price":4300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":43105576550678,"position":2,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_ROSEWOOD.webp?v=1764061396"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50758522142998,"title":"Toasty Peach","option1":"Toasty Peach","option2":null,"option3":null,"sku":"HB01568","requires_shipping":true,"taxable":true,"featured_image":{"id":53113145753878,"product_id":10305187217686,"position":3,"created_at":"2025-11-24T17:44:20+04:00","updated_at":"2025-11-25T13:03:16+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_TOASTYPEACH.webp?v=1764061396","variant_ids":[50758522142998]},"available":true,"name":"Blush Filter Blurring Blushlighters Palette - Toasty Peach","public_title":"Toasty Peach","options":["Toasty Peach"],"price":4300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":43106092253462,"position":3,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_TOASTYPEACH.webp?v=1764061396"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50758522077462,"title":"Baby Pink","option1":"Baby Pink","option2":null,"option3":null,"sku":"HB01567","requires_shipping":true,"taxable":true,"featured_image":{"id":53113196347670,"product_id":10305187217686,"position":4,"created_at":"2025-11-24T17:48:28+04:00","updated_at":"2025-11-25T13:03:16+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_BABYPINK.webp?v=1764061396","variant_ids":[50758522077462]},"available":true,"name":"Blush Filter Blurring Blushlighters Palette - Baby Pink","public_title":"Baby Pink","options":["Baby Pink"],"price":4300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":43106134819094,"position":4,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_BABYPINK.webp?v=1764061396"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}],"images":["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_PACKSHOTS_FINAL_BABYPINK.jpg?v=1763882814","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_ROSEWOOD.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_TOASTYPEACH.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_BABYPINK.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_BLUSH-FILTER_PDP_PACKSHOT_1.webp?v=1774769010"],"featured_image":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_PACKSHOTS_FINAL_BABYPINK.jpg?v=1763882814","options":["Shade"],"media":[{"alt":null,"id":43089162174742,"position":1,"preview_image":{"aspect_ratio":1.0,"height":1024,"width":1024,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_PACKSHOTS_FINAL_BABYPINK.jpg?v=1763882814"},"aspect_ratio":1.0,"height":1024,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_PACKSHOTS_FINAL_BABYPINK.jpg?v=1763882814","width":1024},{"alt":null,"id":43105576550678,"position":2,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_ROSEWOOD.webp?v=1764061396"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_ROSEWOOD.webp?v=1764061396","width":3000},{"alt":null,"id":43106092253462,"position":3,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_TOASTYPEACH.webp?v=1764061396"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_TOASTYPEACH.webp?v=1764061396","width":3000},{"alt":null,"id":43106134819094,"position":4,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_BABYPINK.webp?v=1764061396"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_BABYPINK.webp?v=1764061396","width":3000},{"alt":null,"id":44699700396310,"position":5,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_BLUSH-FILTER_PDP_PACKSHOT_1.webp?v=1774769010"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_BLUSH-FILTER_PDP_PACKSHOT_1.webp?v=1774769010","width":3000}],"requires_selling_plan":false,"selling_plan_groups":[],"content":""},
    "variants": [
      
{
          "id": 51158622044438,
          "title": "Strawberry Latte",
          "available": true,
          "inventory": 3174,
          "max_product_quantity": 5,
          "price": "€43,00",
          "save_price": "€-43,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_BLUSH-FILTER_PDP_PACKSHOT.webp?v=1774423100","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_129_1.webp?v=1774423113","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_129_2.webp?v=1774423119","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_129_3.webp?v=1774423117","\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_PALETTE_PDP_OVERALL_FINAL-16.webp?v=1774423101","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_129_5.webp?v=1774423108","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_129_4.webp?v=1774423119","\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_PALETTE_PDP_OVERALL_FINAL-17.webp?v=1774423098","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_129_7.webp?v=1774423119","\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_PALETTE_PDP_OVERALL_FINAL-18.webp?v=1774423097"],
              "shortDescription": "A dreamy blush palette featuring 3 ultra-pigmented matte shades and a radiant blushlighter for buildable, soft-focus, filtered colour.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50758522110230,
          "title": "Rose Berry",
          "available": true,
          "inventory": 98,
          "max_product_quantity": 5,
          "price": "€43,00",
          "save_price": "€-43,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_ROSEWOOD.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_BEAUTY-ECOMM_ROSEWOOD.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_SHADE-RANGE-ECOMM_ROSEWOOD.webp?v=1764063787","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_INFOGRAPHICS_BABYPINK_ECOMM_HUDA-POD.webp?v=1764063787","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_ARMSWATCHES_ECOMM.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_INFOGRAPHICS_ROSEBERRY_ECOMM_TEXTURES.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_INFOGRAPHICS_ROSEBERRY_ECOMM_SHADE-NAV.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_INFOGRAPHICS_ROSEBERRY_ECOMM.webp?v=1763988505","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_INFOGRAPHICS_BABYPINK_FINAL_COLLECTION.jpg?v=1764063787"],
              "shortDescription": "A dreamy blush palette featuring 3 ultra-pigmented matte shades and a radiant blushlighter for buildable, soft-focus, filtered colour.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50758522142998,
          "title": "Toasty Peach",
          "available": true,
          "inventory": 207,
          "max_product_quantity": 5,
          "price": "€43,00",
          "save_price": "€-43,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_TOASTYPEACH.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_BEAUTY-ECOMM_TOASTYPEACH.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_SHADE-RANGE-ECOMM_TOASTYPEACH.webp?v=1764063787","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_INFOGRAPHICS_BABYPINK_ECOMM_HUDA-POD.webp?v=1764063787","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_ARMSWATCHES_ECOMM.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_INFOGRAPHICS_TOASTYPEACH_ECOMM__-01.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_INFOGRAPHICS_TOASTYPEACH_ECOMM__-02.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_INFOGRAPHICS_TOASTYPEACH_ECOMM_POD-PRODUCT.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_INFOGRAPHICS_BABYPINK_FINAL_COLLECTION.jpg?v=1764063787"],
              "shortDescription": "A dreamy blush palette featuring 3 ultra-pigmented matte shades and a radiant blushlighter for buildable, soft-focus, filtered colour.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50758522077462,
          "title": "Baby Pink",
          "available": true,
          "inventory": 209,
          "max_product_quantity": 5,
          "price": "€43,00",
          "save_price": "€-43,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_PACKSHOTS-ECOMM_BABYPINK.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTES_PDP_BEAUTY-ECOMM_BABYPINK.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BFP-BABY-PINK-KIT-TILE3.webp?v=1764061255","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BFP_BABYPINK_HUDA-POD-TILE6.webp?v=1764062198","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_ARMSWATCHES_ECOMM.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BFP-BABY-PINK-KIT-TILE2.webp?v=1764061254","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_INFOGRAPHICS_BABYPINK_ECOMM__SHADE_NAV.webp?v=1764061396","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BFP-BABY-PINK-KIT-TILE4.webp?v=1764061248","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-PALETTE_PDP_INFOGRAPHICS_BABYPINK_FINAL_COLLECTION.jpg?v=1764063787"],
              "shortDescription": "A dreamy blush palette featuring 3 ultra-pigmented matte shades and a radiant blushlighter for buildable, soft-focus, filtered colour.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        }
      
    ]
  }
</script>

          
          
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10305187217686"><div data-oke-reviews-version="0.87.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 4.9 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 98.3516%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 4.9 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">4.9</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"4.9","reviewCount":113} </script></div></div>
    
        (113)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB01693" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        











<div  class="back-in-stock-container" style="display: none;"><div class="product-back-in-stock-buttons">
    
    

    
    
  </div></div>

        

         
          
















<div
  
  class="waitlist-container"
  
    style="display: none;"
  
><div class="product-waitlist-buttons">
      
      
        <a href="/en-fr/products/blush-filter-blurring-blushlighters-palette-hb01577m?variant=51158622044438" class="button button--primary notify-me-btn">Notify Me</a>
      
    </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="template--26760399323414__featured_collection_B3mC3V"
      data-form-id="product-form-template--26760399323414__featured_collection_B3mC3V"
      dl-product-id="HB01693"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-template--26760399323414__featured_collection_B3mC3V" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="51158622044438"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="3174"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <button
              id="ProductSubmitButton-template--26760399323414__featured_collection_B3mC3V"
              data-dl-source="Collection"
              data-url="/en-fr/products/blush-filter-blurring-blushlighters-palette-hb01577m"
              type="submit"
              name="add"
              class="product-form__submit button button--full-width button--primary"
              
              
            >
              <span>
                Add to Bag
              </span>
            </button></div><input type="hidden" name="product-id" value="10305187217686" /><input type="hidden" name="section-id" value="template--26760399323414__featured_collection_B3mC3V" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li><li
        id="Slide-template--26760399323414__featured_collection_B3mC3V-2"
        class="grid__item slider__slide"
        
      >
        



  







  

      
      
















  

  

  

  

  

  

  

  

  

  

  

  

  

  






























  
  

  
    
    




<section
  class="featured-card-product featured-card-product--new-design"
  
    data-card-design="new"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB01690"
    dl-product-name="FAUX FILLER Extra Shine Lip Gloss"
    dl-product-brand="Huda Beauty US"
    dl-product-category="Lip Care & Gloss"
    dl-product-category2="root"
    dl-product-category3=""
    dl-product-variant="HB01690"
    dl-product-price="23,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/faux-filler-extra-shine-lip-gloss-hb01251m?variant=51158974431510"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE_FFGLOSS_PDP_PACKSHOTS_LIGHTCEALER_1.webp?v=1774885552&width=630 1x,            //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE_FFGLOSS_PDP_PACKSHOTS_LIGHTCEALER_1.webp?v=1774885552&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/faux-filler-extra-shine-lip-gloss-hb01251m?variant=51158974431510"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE_FFGLOSS_PDP_PACKSHOTS_LIGHTCEALER_1.webp?v=1774885552&width=630"
          alt="FAUX FILLER Extra Shine Lip Gloss - LightCealer"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/Artboard_124.webp?v=1774423555&width=630 1x,              //hudabeauty.com/cdn/shop/files/Artboard_124.webp?v=1774423555&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/Artboard_124.webp?v=1774423555&width=630"
            alt="FAUX FILLER Extra Shine Lip Gloss LightCealer glossy lips close-up"
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">NEW</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-template--26760399323414__featured_collection_B3mC3V-10334320230678"
      class="product__info-container"
      data-section="template--26760399323414__featured_collection_B3mC3V"
      data-url="/en-fr/products/faux-filler-extra-shine-lip-gloss-hb01251m?variant=51158974431510"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/faux-filler-extra-shine-lip-gloss-hb01251m?variant=51158974431510">
          
            <h3 class="h6">FAUX FILLER Extra Shine Lip Gloss
</h3>
          
        </a>
      </div>
      
      

      <div
        class="product_card_price mb-xs"
        id="price-template--26760399323414__featured_collection_B3mC3V"
        data-url="/en-fr/products/faux-filler-extra-shine-lip-gloss-hb01251m?variant=51158974431510"
        role="status"
        
      >


<div
    class="price      price-section-data price--large"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €23,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €23,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€-23,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker">
        
          


<div class="loading__spinner">
  <svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" class="spinner" viewbox="0 0 66 66"><circle stroke-width="6" cx="33" cy="33" r="30" fill="none" class="path"/></svg>

</div>


<link href="//hudabeauty.com/cdn/shop/t/162/assets/product-card-swatches.css?v=48729697193943970631775984107" rel="stylesheet" type="text/css" media="all" />





<div
  class="product-card-swatches featured-carousel"
  data-handle="faux-filler-extra-shine-lip-gloss-hb01251m"
>

        

        
        
        
        
        
<div class="product-swatch-new-wrapper">
            <span class="swatch-new-badge">NEW</span>
          <div
            data-id="51158974431510"
            class="product-swatch br-round"
            style="background-color: #F8BFA3; display: flex;"
            aria-label="LightCealer"
            title="LightCealer"
          ></div>
        
</div>


        

        
        
        
        
        
<div class="product-swatch-new-wrapper">
            <span class="swatch-new-badge">NEW</span>
          <div
            data-id="51161335693590"
            class="product-swatch br-round"
            style="background-color: #E99573; display: flex;"
            aria-label="MidCealer"
            title="MidCealer"
          ></div>
        
</div>


        

        
        
        
        
        
<div class="product-swatch-new-wrapper">
            <span class="swatch-new-badge">NEW</span>
          <div
            data-id="51161346572566"
            class="product-swatch br-round"
            style="background-color: #BF684C; display: flex;"
            aria-label="RichCealer"
            title="RichCealer"
          ></div>
        
</div>


        

        
        
        
        
        

          <div
            data-id="50847430050070"
            class="product-swatch br-round"
            style="background-color: #F0F0F0; display: flex;"
            aria-label="Glassy"
            title="Glassy"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50847451644182"
            class="product-swatch br-round"
            style="background-color: #F8E7F1; display: flex;"
            aria-label="She Glitzy"
            title="She Glitzy"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50915489939734"
            class="product-swatch br-round"
            style="background-color: #EBB9D6; display: flex;"
            aria-label="UUU-Baby"
            title="UUU-Baby"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50847430082838"
            class="product-swatch br-round"
            style="background-color: #DE8C95; display: flex;"
            aria-label="Sugar Baby"
            title="Sugar Baby"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50847451611414"
            class="product-swatch br-round"
            style="background-color: #E18A8C; display: flex;"
            aria-label="She Flirty"
            title="She Flirty"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50847430115606"
            class="product-swatch br-round"
            style="background-color: #CC765F; display: flex;"
            aria-label="Honey"
            title="Honey"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50847430148374"
            class="product-swatch br-round"
            style="background-color: #8C332F; display: flex;"
            aria-label="Foxy"
            title="Foxy"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50847430181142"
            class="product-swatch br-round"
            style="background-color: #933B4A; display: flex;"
            aria-label="Bombshell"
            title="Bombshell"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50847430213910"
            class="product-swatch br-round"
            style="background-color: #7D474F; display: flex;"
            aria-label="Posh"
            title="Posh"
          ></div>
        





<div class="no-js-hidden quick-add"><modal-opener data-modal="#QuickAdd-10334320230678">
          <button
            id="-submit"
            type="button"
            name="add"
            class="color-swatch-item br-round featured-card_choose-more-colors"
            aria-haspopup="dialog"
            aria-labelledby="-submit title--10334320230678"
            data-product-url="/en-fr/products/faux-filler-extra-shine-lip-gloss-hb01251m?view=quick-view"
            data-handle="faux-filler-extra-shine-lip-gloss-hb01251m"
          ><svg aria-hidden="true" width="10" height="11" viewbox="0 0 10 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Plus">
<path id="Vector 4" d="M0 5.5H10" stroke="black"/>
<path id="Vector 3" d="M5 0.5V10.5" stroke="black"/>
</g>
</svg>
</button>
        </modal-opener>
        <quick-add-modal id="QuickAdd-10334320230678" class="quick-add-modal">
          <div
            role="dialog"
            aria-label="Choose options for FAUX FILLER Extra Shine Lip Gloss"
            aria-modal="true"
            class="quick-add-modal__content global-settings-popup"
            tabindex="-1"
          >
            <button
              id="ModalClose-10334320230678"
              type="button"
              class="popup__close"
              aria-label="Close"
            ><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewbox="0 0 20 19" fill="none">
  <path d="M18.9999 0.5L1.25488 18.245L18.9999 0.5Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
  <path d="M18.745 18.245L1 0.5L18.745 18.245Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
</svg></button>
            <div id="QuickAddInfo-10334320230678" class="quick-add-modal__content-info"></div>
          </div>
        </quick-add-modal></div></div><script type="application/json" data-selected-variant-meta>
  {
    "default_selected_variant": {"id":51158974431510,"title":"LightCealer","option1":"LightCealer","option2":null,"option3":null,"sku":"HB01690","requires_shipping":true,"taxable":true,"featured_image":{"id":54844644720918,"product_id":10334320230678,"position":20,"created_at":"2026-03-25T11:25:07+04:00","updated_at":"2026-03-25T11:25:10+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_126.webp?v=1774423510","variant_ids":[51158974431510]},"available":true,"name":"FAUX FILLER Extra Shine Lip Gloss - LightCealer","public_title":"LightCealer","options":["LightCealer"],"price":2300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408932","featured_media":{"alt":null,"id":44655621996822,"position":20,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_126.webp?v=1774423510"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},
    "product": {"id":10334320230678,"title":"FAUX FILLER Extra Shine Lip Gloss","handle":"faux-filler-extra-shine-lip-gloss-hb01251m","description":"","published_at":"2026-02-04T10:27:06+04:00","created_at":"2025-12-15T16:27:52+04:00","vendor":"Huda Beauty US","type":"","tags":["_okendo:syndication_key:faux-filler-extra-shine-lip-gloss-hb01251m","HB","short_description"],"price":2300,"price_min":2300,"price_max":2300,"available":true,"price_varies":false,"compare_at_price":null,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":51158974431510,"title":"LightCealer","option1":"LightCealer","option2":null,"option3":null,"sku":"HB01690","requires_shipping":true,"taxable":true,"featured_image":{"id":54844644720918,"product_id":10334320230678,"position":20,"created_at":"2026-03-25T11:25:07+04:00","updated_at":"2026-03-25T11:25:10+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_126.webp?v=1774423510","variant_ids":[51158974431510]},"available":true,"name":"FAUX FILLER Extra Shine Lip Gloss - LightCealer","public_title":"LightCealer","options":["LightCealer"],"price":2300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408932","featured_media":{"alt":null,"id":44655621996822,"position":20,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_126.webp?v=1774423510"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":51161335693590,"title":"MidCealer","option1":"MidCealer","option2":null,"option3":null,"sku":"HB01691","requires_shipping":true,"taxable":true,"featured_image":{"id":54844704784662,"product_id":10334320230678,"position":21,"created_at":"2026-03-25T11:31:20+04:00","updated_at":"2026-03-25T11:31:22+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_126_1_efdba05b-0394-4cd1-bb5a-6e6e4c8d510e.webp?v=1774423882","variant_ids":[51161335693590]},"available":true,"name":"FAUX FILLER Extra Shine Lip Gloss - MidCealer","public_title":"MidCealer","options":["MidCealer"],"price":2300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408949","featured_media":{"alt":null,"id":44655679832342,"position":21,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_126_1_efdba05b-0394-4cd1-bb5a-6e6e4c8d510e.webp?v=1774423882"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":51161346572566,"title":"RichCealer","option1":"RichCealer","option2":null,"option3":null,"sku":"HB01692","requires_shipping":true,"taxable":true,"featured_image":{"id":54907706671382,"product_id":10334320230678,"position":22,"created_at":"2026-03-30T19:45:50+04:00","updated_at":"2026-03-30T19:45:52+04:00","alt":"FAUX FILLER Extra Shine Lip Gloss - RichCealer","width":3000,"height":3499,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_FFGLOSS_PDP_PACKSHOTS_RICHCEALER_1.webp?v=1774885552","variant_ids":[51161346572566]},"available":true,"name":"FAUX FILLER Extra Shine Lip Gloss - RichCealer","public_title":"RichCealer","options":["RichCealer"],"price":2300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408956","featured_media":{"alt":"FAUX FILLER Extra Shine Lip Gloss - RichCealer","id":44708465279254,"position":22,"preview_image":{"aspect_ratio":0.857,"height":3499,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_FFGLOSS_PDP_PACKSHOTS_RICHCEALER_1.webp?v=1774885552"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50847430050070,"title":"Glassy","option1":"Glassy","option2":null,"option3":null,"sku":"HB01251","requires_shipping":true,"taxable":true,"featured_image":{"id":52288196935958,"product_id":10334320230678,"position":9,"created_at":"2025-10-08T01:10:35+04:00","updated_at":"2025-10-08T01:10:37+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE1_81402c47-f51c-403a-940e-f266467f26e7.webp?v=1759871437","variant_ids":[50847430050070]},"available":true,"name":"FAUX FILLER Extra Shine Lip Gloss - Glassy","public_title":"Glassy","options":["Glassy"],"price":2300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018404880","featured_media":{"alt":null,"id":42389282914582,"position":9,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE1_81402c47-f51c-403a-940e-f266467f26e7.webp?v=1759871437"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50847451644182,"title":"She Glitzy","option1":"She Glitzy","option2":null,"option3":null,"sku":"HB01391","requires_shipping":true,"taxable":true,"featured_image":{"id":52288824574230,"product_id":10334320230678,"position":17,"created_at":"2025-10-08T01:35:28+04:00","updated_at":"2025-10-08T01:35:30+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEGLITZY-TILE1.webp?v=1759872930","variant_ids":[50847451644182]},"available":true,"name":"FAUX FILLER Extra Shine Lip Gloss - She Glitzy","public_title":"She Glitzy","options":["She Glitzy"],"price":2300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018406273","featured_media":{"alt":null,"id":42389868937494,"position":17,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEGLITZY-TILE1.webp?v=1759872930"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50915489939734,"title":"UUU-Baby","option1":"UUU-Baby","option2":null,"option3":null,"sku":"HB01492","requires_shipping":true,"taxable":true,"featured_image":{"id":52233618784534,"product_id":10334320230678,"position":19,"created_at":"2025-10-04T23:19:53+04:00","updated_at":"2025-10-05T17:46:27+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-UUUBABY-TILE1_d1e399fa-dac3-4aaa-9ead-5df5d8031b23.webp?v=1759671987","variant_ids":[50915489939734]},"available":true,"name":"FAUX FILLER Extra Shine Lip Gloss - UUU-Baby","public_title":"UUU-Baby","options":["UUU-Baby"],"price":2300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018407096","featured_media":{"alt":null,"id":42343539998998,"position":19,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-UUUBABY-TILE1_d1e399fa-dac3-4aaa-9ead-5df5d8031b23.webp?v=1759671987"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50847430082838,"title":"Sugar Baby","option1":"Sugar Baby","option2":null,"option3":null,"sku":"HB01253","requires_shipping":true,"taxable":true,"featured_image":{"id":52288205652246,"product_id":10334320230678,"position":10,"created_at":"2025-10-08T01:11:07+04:00","updated_at":"2025-10-08T01:11:10+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SUGARBABY-TILE1_b120e5c7-9c8c-419c-900c-627379ee5061.webp?v=1759871470","variant_ids":[50847430082838]},"available":true,"name":"FAUX FILLER Extra Shine Lip Gloss - Sugar Baby","public_title":"Sugar Baby","options":["Sugar Baby"],"price":2300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018404903","featured_media":{"alt":null,"id":42389290844438,"position":10,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SUGARBABY-TILE1_b120e5c7-9c8c-419c-900c-627379ee5061.webp?v=1759871470"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50847451611414,"title":"She Flirty","option1":"She Flirty","option2":null,"option3":null,"sku":"HB01392","requires_shipping":true,"taxable":true,"featured_image":{"id":52288821854486,"product_id":10334320230678,"position":16,"created_at":"2025-10-08T01:35:18+04:00","updated_at":"2025-10-08T01:35:21+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFLIRTY-TILE1_892f0ca3-eed1-48a0-85fa-96426ce3337f.webp?v=1759872921","variant_ids":[50847451611414]},"available":true,"name":"FAUX FILLER Extra Shine Lip Gloss - She Flirty","public_title":"She Flirty","options":["She Flirty"],"price":2300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018406280","featured_media":{"alt":null,"id":42389866119446,"position":16,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFLIRTY-TILE1_892f0ca3-eed1-48a0-85fa-96426ce3337f.webp?v=1759872921"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50847430115606,"title":"Honey","option1":"Honey","option2":null,"option3":null,"sku":"HB01255","requires_shipping":true,"taxable":true,"featured_image":{"id":52288211550486,"product_id":10334320230678,"position":11,"created_at":"2025-10-08T01:11:27+04:00","updated_at":"2025-10-08T01:11:30+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-HONEY-TILE1_a7746a8a-e769-4f42-8165-507c65bff718.webp?v=1759871490","variant_ids":[50847430115606]},"available":true,"name":"FAUX FILLER Extra Shine Lip Gloss - Honey","public_title":"Honey","options":["Honey"],"price":2300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018404927","featured_media":{"alt":null,"id":42389295857942,"position":11,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-HONEY-TILE1_a7746a8a-e769-4f42-8165-507c65bff718.webp?v=1759871490"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50847430148374,"title":"Foxy","option1":"Foxy","option2":null,"option3":null,"sku":"HB01276","requires_shipping":true,"taxable":true,"featured_image":{"id":52288214892822,"product_id":10334320230678,"position":12,"created_at":"2025-10-08T01:11:34+04:00","updated_at":"2025-10-08T01:11:37+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-FOXY-TILE1_1418339e-3f2d-4b2a-8d08-5bda413b7337.webp?v=1759871497","variant_ids":[50847430148374]},"available":true,"name":"FAUX FILLER Extra Shine Lip Gloss - Foxy","public_title":"Foxy","options":["Foxy"],"price":2300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018405344","featured_media":{"alt":null,"id":42389298905366,"position":12,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-FOXY-TILE1_1418339e-3f2d-4b2a-8d08-5bda413b7337.webp?v=1759871497"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50847430181142,"title":"Bombshell","option1":"Bombshell","option2":null,"option3":null,"sku":"HB01252","requires_shipping":true,"taxable":true,"featured_image":{"id":52288216498454,"product_id":10334320230678,"position":13,"created_at":"2025-10-08T01:11:41+04:00","updated_at":"2025-10-08T01:11:44+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-BOMBSHELL-TILE1_3c846ee5-2dfe-4698-9fd0-e68a1606af10.webp?v=1759871504","variant_ids":[50847430181142]},"available":true,"name":"FAUX FILLER Extra Shine Lip Gloss - Bombshell","public_title":"Bombshell","options":["Bombshell"],"price":2300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018404897","featured_media":{"alt":null,"id":42389300019478,"position":13,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-BOMBSHELL-TILE1_3c846ee5-2dfe-4698-9fd0-e68a1606af10.webp?v=1759871504"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50847430213910,"title":"Posh","option1":"Posh","option2":null,"option3":null,"sku":"HB01254","requires_shipping":true,"taxable":true,"featured_image":{"id":52288223019286,"product_id":10334320230678,"position":14,"created_at":"2025-10-08T01:12:01+04:00","updated_at":"2025-10-08T01:12:02+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-POSH-TILE1_38b74ea8-cf03-4d17-ac4d-eb5beae21209.webp?v=1759871522","variant_ids":[50847430213910]},"available":true,"name":"FAUX FILLER Extra Shine Lip Gloss - Posh","public_title":"Posh","options":["Posh"],"price":2300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018404910","featured_media":{"alt":null,"id":42389305753878,"position":14,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-POSH-TILE1_38b74ea8-cf03-4d17-ac4d-eb5beae21209.webp?v=1759871522"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50847451676950,"title":"She Fire","option1":"She Fire","option2":null,"option3":null,"sku":"HB01377","requires_shipping":true,"taxable":true,"featured_image":{"id":52288827883798,"product_id":10334320230678,"position":18,"created_at":"2025-10-08T01:35:36+04:00","updated_at":"2025-10-08T01:35:39+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFIRE-TILE1.webp?v=1759872939","variant_ids":[50847451676950]},"available":true,"name":"FAUX FILLER Extra Shine Lip Gloss - She Fire","public_title":"She Fire","options":["She Fire"],"price":2300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018406112","featured_media":{"alt":null,"id":42389871460630,"position":18,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFIRE-TILE1.webp?v=1759872939"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50847430246678,"title":"Coco","option1":"Coco","option2":null,"option3":null,"sku":"HB01288","requires_shipping":true,"taxable":true,"featured_image":{"id":52288226230550,"product_id":10334320230678,"position":15,"created_at":"2025-10-08T01:12:08+04:00","updated_at":"2025-10-08T01:12:09+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-COCO-TILE1_4c42fe1f-1035-4806-b929-edd8bd305a37.webp?v=1759871529","variant_ids":[50847430246678]},"available":true,"name":"FAUX FILLER Extra Shine Lip Gloss - Coco","public_title":"Coco","options":["Coco"],"price":2300,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018405351","featured_media":{"alt":null,"id":42389308506390,"position":15,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-COCO-TILE1_4c42fe1f-1035-4806-b929-edd8bd305a37.webp?v=1759871529"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}],"images":["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE1_b384ae3b-ee06-4758-a70c-72126a0fc985.webp?v=1759616950","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE2_b28b166c-94cd-4f47-87f6-da7461e31552.webp?v=1759616951","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE4_c5efce66-eba1-42c6-8866-3dbf9a6f0329.webp?v=1759616950","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE5_1a4fa460-4b8b-4803-bc7a-58083bdc52bf.webp?v=1759616950","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE6_d46777d1-62d7-46f4-a1ef-ea64a3336631.webp?v=1759616950","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE7_89c05e10-8c12-41c3-b6e5-8a85044c5811.webp?v=1759616950","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE8_18f38d3c-c2bc-4851-b2d6-c2b63346ca27.webp?v=1759616950","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE9_e7f509bb-ffde-4916-a934-1afc52e162c9.webp?v=1759616951","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE1_81402c47-f51c-403a-940e-f266467f26e7.webp?v=1759871437","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SUGARBABY-TILE1_b120e5c7-9c8c-419c-900c-627379ee5061.webp?v=1759871470","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-HONEY-TILE1_a7746a8a-e769-4f42-8165-507c65bff718.webp?v=1759871490","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-FOXY-TILE1_1418339e-3f2d-4b2a-8d08-5bda413b7337.webp?v=1759871497","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-BOMBSHELL-TILE1_3c846ee5-2dfe-4698-9fd0-e68a1606af10.webp?v=1759871504","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-POSH-TILE1_38b74ea8-cf03-4d17-ac4d-eb5beae21209.webp?v=1759871522","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-COCO-TILE1_4c42fe1f-1035-4806-b929-edd8bd305a37.webp?v=1759871529","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFLIRTY-TILE1_892f0ca3-eed1-48a0-85fa-96426ce3337f.webp?v=1759872921","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEGLITZY-TILE1.webp?v=1759872930","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFIRE-TILE1.webp?v=1759872939","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-UUUBABY-TILE1_d1e399fa-dac3-4aaa-9ead-5df5d8031b23.webp?v=1759671987","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_126.webp?v=1774423510","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_126_1_efdba05b-0394-4cd1-bb5a-6e6e4c8d510e.webp?v=1774423882","\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_FFGLOSS_PDP_PACKSHOTS_RICHCEALER_1.webp?v=1774885552"],"featured_image":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE1_b384ae3b-ee06-4758-a70c-72126a0fc985.webp?v=1759616950","options":["Shade"],"media":[{"alt":null,"id":42343532003606,"position":1,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE1_b384ae3b-ee06-4758-a70c-72126a0fc985.webp?v=1759616950"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE1_b384ae3b-ee06-4758-a70c-72126a0fc985.webp?v=1759616950","width":3000},{"alt":null,"id":42343532036374,"position":2,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE2_b28b166c-94cd-4f47-87f6-da7461e31552.webp?v=1759616951"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE2_b28b166c-94cd-4f47-87f6-da7461e31552.webp?v=1759616951","width":3000},{"alt":null,"id":42343532167446,"position":3,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE4_c5efce66-eba1-42c6-8866-3dbf9a6f0329.webp?v=1759616950"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE4_c5efce66-eba1-42c6-8866-3dbf9a6f0329.webp?v=1759616950","width":3000},{"alt":null,"id":42343532232982,"position":4,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE5_1a4fa460-4b8b-4803-bc7a-58083bdc52bf.webp?v=1759616950"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE5_1a4fa460-4b8b-4803-bc7a-58083bdc52bf.webp?v=1759616950","width":3000},{"alt":null,"id":42343532364054,"position":5,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE6_d46777d1-62d7-46f4-a1ef-ea64a3336631.webp?v=1759616950"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE6_d46777d1-62d7-46f4-a1ef-ea64a3336631.webp?v=1759616950","width":3000},{"alt":null,"id":42343532462358,"position":6,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE7_89c05e10-8c12-41c3-b6e5-8a85044c5811.webp?v=1759616950"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE7_89c05e10-8c12-41c3-b6e5-8a85044c5811.webp?v=1759616950","width":3000},{"alt":null,"id":42343532527894,"position":7,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE8_18f38d3c-c2bc-4851-b2d6-c2b63346ca27.webp?v=1759616950"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE8_18f38d3c-c2bc-4851-b2d6-c2b63346ca27.webp?v=1759616950","width":3000},{"alt":null,"id":42343532986646,"position":8,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE9_e7f509bb-ffde-4916-a934-1afc52e162c9.webp?v=1759616951"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE9_e7f509bb-ffde-4916-a934-1afc52e162c9.webp?v=1759616951","width":3000},{"alt":null,"id":42389282914582,"position":9,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE1_81402c47-f51c-403a-940e-f266467f26e7.webp?v=1759871437"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE1_81402c47-f51c-403a-940e-f266467f26e7.webp?v=1759871437","width":3000},{"alt":null,"id":42389290844438,"position":10,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SUGARBABY-TILE1_b120e5c7-9c8c-419c-900c-627379ee5061.webp?v=1759871470"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SUGARBABY-TILE1_b120e5c7-9c8c-419c-900c-627379ee5061.webp?v=1759871470","width":3000},{"alt":null,"id":42389295857942,"position":11,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-HONEY-TILE1_a7746a8a-e769-4f42-8165-507c65bff718.webp?v=1759871490"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-HONEY-TILE1_a7746a8a-e769-4f42-8165-507c65bff718.webp?v=1759871490","width":3000},{"alt":null,"id":42389298905366,"position":12,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-FOXY-TILE1_1418339e-3f2d-4b2a-8d08-5bda413b7337.webp?v=1759871497"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-FOXY-TILE1_1418339e-3f2d-4b2a-8d08-5bda413b7337.webp?v=1759871497","width":3000},{"alt":null,"id":42389300019478,"position":13,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-BOMBSHELL-TILE1_3c846ee5-2dfe-4698-9fd0-e68a1606af10.webp?v=1759871504"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-BOMBSHELL-TILE1_3c846ee5-2dfe-4698-9fd0-e68a1606af10.webp?v=1759871504","width":3000},{"alt":null,"id":42389305753878,"position":14,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-POSH-TILE1_38b74ea8-cf03-4d17-ac4d-eb5beae21209.webp?v=1759871522"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-POSH-TILE1_38b74ea8-cf03-4d17-ac4d-eb5beae21209.webp?v=1759871522","width":3000},{"alt":null,"id":42389308506390,"position":15,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-COCO-TILE1_4c42fe1f-1035-4806-b929-edd8bd305a37.webp?v=1759871529"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-COCO-TILE1_4c42fe1f-1035-4806-b929-edd8bd305a37.webp?v=1759871529","width":3000},{"alt":null,"id":42389866119446,"position":16,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFLIRTY-TILE1_892f0ca3-eed1-48a0-85fa-96426ce3337f.webp?v=1759872921"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFLIRTY-TILE1_892f0ca3-eed1-48a0-85fa-96426ce3337f.webp?v=1759872921","width":3000},{"alt":null,"id":42389868937494,"position":17,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEGLITZY-TILE1.webp?v=1759872930"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEGLITZY-TILE1.webp?v=1759872930","width":3000},{"alt":null,"id":42389871460630,"position":18,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFIRE-TILE1.webp?v=1759872939"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFIRE-TILE1.webp?v=1759872939","width":3000},{"alt":null,"id":42343539998998,"position":19,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-UUUBABY-TILE1_d1e399fa-dac3-4aaa-9ead-5df5d8031b23.webp?v=1759671987"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-UUUBABY-TILE1_d1e399fa-dac3-4aaa-9ead-5df5d8031b23.webp?v=1759671987","width":3000},{"alt":null,"id":44655621996822,"position":20,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_126.webp?v=1774423510"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_126.webp?v=1774423510","width":3000},{"alt":null,"id":44655679832342,"position":21,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_126_1_efdba05b-0394-4cd1-bb5a-6e6e4c8d510e.webp?v=1774423882"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_126_1_efdba05b-0394-4cd1-bb5a-6e6e4c8d510e.webp?v=1774423882","width":3000},{"alt":"FAUX FILLER Extra Shine Lip Gloss - RichCealer","id":44708465279254,"position":22,"preview_image":{"aspect_ratio":0.857,"height":3499,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_FFGLOSS_PDP_PACKSHOTS_RICHCEALER_1.webp?v=1774885552"},"aspect_ratio":0.857,"height":3499,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_FFGLOSS_PDP_PACKSHOTS_RICHCEALER_1.webp?v=1774885552","width":3000}],"requires_selling_plan":false,"selling_plan_groups":[],"content":""},
    "variants": [
      
{
          "id": 51158974431510,
          "title": "LightCealer",
          "available": true,
          "inventory": 1785,
          "max_product_quantity": 5,
          "price": "€23,00",
          "save_price": "€-23,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_FFGLOSS_PDP_PACKSHOTS_LIGHTCEALER_1.webp?v=1774885552","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_124.webp?v=1774423555","\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_FFGLOSS_RESHOOT_PDP_SHADE-NAV_FINAL_LIGHTCEALER-LIPS-04.webp?v=1775552582","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_124_4.webp?v=1774423744","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_124_1_ff35a7f3-7732-49ac-a92a-6d9b8c74a5e3.webp?v=1774850534","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_126_1.webp?v=1774423743","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_124_2_238eed72-5dc5-425f-a80b-d30506c0692f.webp?v=1774423743","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_124_2.webp?v=1774423738","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_124_3.webp?v=1774423743"],
              "shortDescription": "Plumping & hydrating high-shine gloss with a lip filler effect. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 51161335693590,
          "title": "MidCealer",
          "available": true,
          "inventory": 1791,
          "max_product_quantity": 5,
          "price": "€23,00",
          "save_price": "€-23,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_FFGLOSS_PDP_PACKSHOTS_MIDCEALER_1.webp?v=1774885553","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_124_1_1.webp?v=1774423884","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_124_1_2.webp?v=1774423884","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_124_4.webp?v=1774423744","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_124_1_ff35a7f3-7732-49ac-a92a-6d9b8c74a5e3.webp?v=1774850534","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_126_1.webp?v=1774423743","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_124_2_238eed72-5dc5-425f-a80b-d30506c0692f.webp?v=1774423743","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_124_2.webp?v=1774423738","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_124_3.webp?v=1774423743"],
              "shortDescription": "Plumping & hydrating high-shine gloss with a lip filler effect. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 51161346572566,
          "title": "RichCealer",
          "available": true,
          "inventory": 906,
          "max_product_quantity": 5,
          "price": "€23,00",
          "save_price": "€-23,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_FFGLOSS_PDP_PACKSHOTS_RICHCEALER_1.webp?v=1774885552","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_124_2_2.webp?v=1774424016","\/\/hudabeauty.com\/cdn\/shop\/files\/STRAWBERRY-LATTE_FFGLOSS_RESHOOT_PDP_SHADE-NAV_FINAL_RICHCEALER-LIPS-06.webp?v=1775552581","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_124_4.webp?v=1774423744","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_124_1_ff35a7f3-7732-49ac-a92a-6d9b8c74a5e3.webp?v=1774850534","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_126_1.webp?v=1774423743","\/\/hudabeauty.com\/cdn\/shop\/files\/FF-TEXTURE-02_1.webp?v=1775233194","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_124_2.webp?v=1774423738","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_124_3.webp?v=1774423743"],
              "shortDescription": "Plumping & hydrating high-shine gloss with a lip filler effect. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50847430050070,
          "title": "Glassy",
          "available": true,
          "inventory": 245,
          "max_product_quantity": 5,
          "price": "€23,00",
          "save_price": "€-23,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE1_81402c47-f51c-403a-940e-f266467f26e7.webp?v=1759871437","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE2_cd220918-da3b-4705-87f9-912f8646528a.jpg?v=1759871439",{"alt":null,"id":42389286748438,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/75007ded4c144a4193ab4b17514633cf.thumbnail.0000000000.jpg?v=1759871484"},"aspect_ratio":0.558,"duration":53000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/75007ded4c144a4193ab4b17514633cf\/75007ded4c144a4193ab4b17514633cf.SD-480p-1.5Mbps-59056998.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/75007ded4c144a4193ab4b17514633cf\/75007ded4c144a4193ab4b17514633cf.HD-1080p-7.2Mbps-59056998.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/75007ded4c144a4193ab4b17514633cf\/75007ded4c144a4193ab4b17514633cf.HD-720p-4.5Mbps-59056998.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/75007ded4c144a4193ab4b17514633cf\/75007ded4c144a4193ab4b17514633cf.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE4_4f8c7ee4-86dc-4df5-8d55-83013eb48ff2.jpg?v=1759871452","\/\/hudabeauty.com\/cdn\/shop\/files\/FF-TEXTURE-02_1.webp?v=1775233194","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE6_06f1d72b-1797-4afd-a55a-eaeff0646baa.jpg?v=1759871454","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE7_502b79d8-616e-4eed-8cf7-8c9cdbd6045a.jpg?v=1759871455","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE8_e9887475-30b6-476c-84ad-b00f8eec8a0b.jpg?v=1759871456","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-GLASSY-TILE9_1ffce1a3-e7e4-494f-b1ed-4cf2031342e8.jpg?v=1759871458",{"alt":null,"id":42389290582294,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/14cec5c910724e12adff0e359b1f5d00.thumbnail.0000000000.jpg?v=1759871505"},"aspect_ratio":0.558,"duration":42000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/14cec5c910724e12adff0e359b1f5d00\/14cec5c910724e12adff0e359b1f5d00.SD-480p-1.5Mbps-59057014.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/14cec5c910724e12adff0e359b1f5d00\/14cec5c910724e12adff0e359b1f5d00.HD-1080p-7.2Mbps-59057014.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/14cec5c910724e12adff0e359b1f5d00\/14cec5c910724e12adff0e359b1f5d00.HD-720p-4.5Mbps-59057014.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/14cec5c910724e12adff0e359b1f5d00\/14cec5c910724e12adff0e359b1f5d00.m3u8?v=0","width":606}]}],
              "shortDescription": "Plumping & hydrating high-shine gloss with a lip filler effect. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50847451644182,
          "title": "She Glitzy",
          "available": true,
          "inventory": 34,
          "max_product_quantity": 5,
          "price": "€23,00",
          "save_price": "€-23,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEGLITZY-TILE1.webp?v=1759872930","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEGLITZY-TILE2_8d295586-3816-4343-a8bb-d907189eb053.webp?v=1759872932","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEGLITZY-TILE4_2238eaea-e99f-437e-8143-b1360bbf5371.webp?v=1759872933","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEGLITZY-TILE5_fc3beced-7da5-49b6-9590-4fb75f5a35e5.webp?v=1759872933","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEGLITZY-TILE6_001d3900-fccf-4e54-89fa-430a94b1e147.webp?v=1759872935","\/\/hudabeauty.com\/cdn\/shop\/files\/FF-TEXTURE-02_1.webp?v=1775233194","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEGLITZY-TILE8_761d3b5a-2131-4cca-82ce-ba64d91fe35d.webp?v=1759872936","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEGLITZY-TILE9_cbbec000-8257-4b59-83ac-cfa7fc80943b.webp?v=1759872938","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEGLITZY-TILE10_d2e80d8b-b1f1-4a4e-91bd-8debf2647a28.webp?v=1759872939"],
              "shortDescription": "PH gloss that adjusts to all skin tones to give a diamond-like, dewy finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50915489939734,
          "title": "UUU-Baby",
          "available": true,
          "inventory": 134,
          "max_product_quantity": 5,
          "price": "€23,00",
          "save_price": "€-23,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-UUUBABY-TILE1_d1e399fa-dac3-4aaa-9ead-5df5d8031b23.webp?v=1759671987","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-UUUBABY-TILE2.webp?v=1759671987",{"alt":"Uploaded video","id":42350025310486,"position":null,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/fe3ab4f77b7947278bfd00bba301013e.thumbnail.0000000000.jpg?v=1759671987"},"aspect_ratio":0.563,"duration":104000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/fe3ab4f77b7947278bfd00bba301013e\/fe3ab4f77b7947278bfd00bba301013e.SD-480p-1.5Mbps-58899729.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/fe3ab4f77b7947278bfd00bba301013e\/fe3ab4f77b7947278bfd00bba301013e.HD-1080p-7.2Mbps-58899729.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/fe3ab4f77b7947278bfd00bba301013e\/fe3ab4f77b7947278bfd00bba301013e.HD-720p-4.5Mbps-58899729.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/fe3ab4f77b7947278bfd00bba301013e\/fe3ab4f77b7947278bfd00bba301013e.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-UUUBABY-TILE4.webp?v=1759671987","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-UUUBABY-TILE5.webp?v=1759671987","\/\/hudabeauty.com\/cdn\/shop\/files\/FF-TEXTURE-02_1.webp?v=1775233194","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-UUUBABY-TILE7.webp?v=1759671987","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-UUUBABY-TILE8.webp?v=1759671987","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-UUUBABY-TILE9.webp?v=1759671987"],
              "shortDescription": "Plumping & hydrating high-shine gloss with a lip filler effect. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50847430082838,
          "title": "Sugar Baby",
          "available": true,
          "inventory": 99,
          "max_product_quantity": 5,
          "price": "€23,00",
          "save_price": "€-23,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SUGARBABY-TILE1_b120e5c7-9c8c-419c-900c-627379ee5061.webp?v=1759871470","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SUGARBABY-TILE2_2f30702a-18d1-4a68-868d-a0bfd1bfac19.webp?v=1759871472",{"alt":null,"id":42389295071510,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/3161f0b6eba244e3b6699c6e68d90600.thumbnail.0000000000.jpg?v=1759871521"},"aspect_ratio":0.558,"duration":53000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/3161f0b6eba244e3b6699c6e68d90600\/3161f0b6eba244e3b6699c6e68d90600.SD-480p-1.5Mbps-59057026.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/3161f0b6eba244e3b6699c6e68d90600\/3161f0b6eba244e3b6699c6e68d90600.HD-1080p-7.2Mbps-59057026.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/3161f0b6eba244e3b6699c6e68d90600\/3161f0b6eba244e3b6699c6e68d90600.HD-720p-4.5Mbps-59057026.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/3161f0b6eba244e3b6699c6e68d90600\/3161f0b6eba244e3b6699c6e68d90600.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SUGARBABY-TILE4_4bade6de-350c-4dce-ae7a-7349f038e1df.webp?v=1759871485","\/\/hudabeauty.com\/cdn\/shop\/files\/FF-TEXTURE-02_1.webp?v=1775233194","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SUGARBABY-TILE6_52b31528-7c7b-4218-98cc-d05092787e01.webp?v=1759871487","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SUGARBABY-TILE7_e4a0d49d-1fc4-4748-ad1d-dd871d162e90.webp?v=1759871488","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SUGARBABY-TILE8_9b5e9efc-a4f9-4805-8e4c-3bb5b8e8b4d3.webp?v=1759871490"],
              "shortDescription": "Plumping & hydrating high-shine gloss with a lip filler effect. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50847451611414,
          "title": "She Flirty",
          "available": true,
          "inventory": 78,
          "max_product_quantity": 5,
          "price": "€23,00",
          "save_price": "€-23,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFLIRTY-TILE1_892f0ca3-eed1-48a0-85fa-96426ce3337f.webp?v=1759872921","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFLIRTY-TILE2.webp?v=1759616923","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFLIRTY-TILE4.webp?v=1759616922","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFLIRTY-TILE5.webp?v=1759616922","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFLIRTY-TILE6.webp?v=1759616923","\/\/hudabeauty.com\/cdn\/shop\/files\/FF-TEXTURE-02_1.webp?v=1775233194","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFLIRTY-TILE8.webp?v=1759616922","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFLIRTY-TILE9.webp?v=1759616922","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFLIRTY-TILE10.webp?v=1759616923"],
              "shortDescription": "PH gloss that adjusts to all skin tones to give a diamond-like, dewy finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50847430115606,
          "title": "Honey",
          "available": true,
          "inventory": 212,
          "max_product_quantity": 5,
          "price": "€23,00",
          "save_price": "€-23,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-HONEY-TILE1_a7746a8a-e769-4f42-8165-507c65bff718.webp?v=1759871490","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-HONEY-TILE2_e0b57663-f965-4c02-a66a-9ba9554f5876.webp?v=1759871491",{"alt":null,"id":42389295071510,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/3161f0b6eba244e3b6699c6e68d90600.thumbnail.0000000000.jpg?v=1759871521"},"aspect_ratio":0.558,"duration":53000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/3161f0b6eba244e3b6699c6e68d90600\/3161f0b6eba244e3b6699c6e68d90600.SD-480p-1.5Mbps-59057026.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/3161f0b6eba244e3b6699c6e68d90600\/3161f0b6eba244e3b6699c6e68d90600.HD-1080p-7.2Mbps-59057026.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/3161f0b6eba244e3b6699c6e68d90600\/3161f0b6eba244e3b6699c6e68d90600.HD-720p-4.5Mbps-59057026.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/3161f0b6eba244e3b6699c6e68d90600\/3161f0b6eba244e3b6699c6e68d90600.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-HONEY-TILE4_fb1e1faf-dbb8-4f3f-b575-34b5ad337b38.webp?v=1759871492","\/\/hudabeauty.com\/cdn\/shop\/files\/FF-TEXTURE-02_1.webp?v=1775233194","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-HONEY-TILE6_b83b1971-0f67-467e-9bf2-78e6b8caef19.webp?v=1759871494","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-HONEY-TILE7_6ef1b214-05ad-41c4-aab9-22246de7c2fd.webp?v=1759871495","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-HONEY-TILE8_9ab21d49-7727-4c27-8773-53da52f77743.webp?v=1759871496"],
              "shortDescription": "Plumping & hydrating high-shine gloss with a lip filler effect. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50847430148374,
          "title": "Foxy",
          "available": true,
          "inventory": 92,
          "max_product_quantity": 5,
          "price": "€23,00",
          "save_price": "€-23,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-FOXY-TILE1_1418339e-3f2d-4b2a-8d08-5bda413b7337.webp?v=1759871497","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-FOXY-TILE2_bfae1e0e-57f1-4e0f-9770-8c991d20bb73.webp?v=1759871499",{"alt":null,"id":42389295071510,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/3161f0b6eba244e3b6699c6e68d90600.thumbnail.0000000000.jpg?v=1759871521"},"aspect_ratio":0.558,"duration":53000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/3161f0b6eba244e3b6699c6e68d90600\/3161f0b6eba244e3b6699c6e68d90600.SD-480p-1.5Mbps-59057026.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/3161f0b6eba244e3b6699c6e68d90600\/3161f0b6eba244e3b6699c6e68d90600.HD-1080p-7.2Mbps-59057026.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/3161f0b6eba244e3b6699c6e68d90600\/3161f0b6eba244e3b6699c6e68d90600.HD-720p-4.5Mbps-59057026.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/3161f0b6eba244e3b6699c6e68d90600\/3161f0b6eba244e3b6699c6e68d90600.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-FOXY-TILE4_967ee8ed-7ed2-440c-8222-f58628063d9a.webp?v=1759871499","\/\/hudabeauty.com\/cdn\/shop\/files\/FF-TEXTURE-02_1.webp?v=1775233194","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-FOXY-TILE6_2e8c02ab-dfed-475d-a49d-b0f43260f10a.webp?v=1759871499","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-FOXY-TILE7_c0f61928-b5eb-4bc6-a00f-4682bc10e269.webp?v=1759871501","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-FOXY-TILE8_ba72e35b-7036-4c08-afd4-8e18e570061f.webp?v=1759871501"],
              "shortDescription": "Plumping & hydrating high-shine gloss with a lip filler effect. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50847430181142,
          "title": "Bombshell",
          "available": true,
          "inventory": 212,
          "max_product_quantity": 5,
          "price": "€23,00",
          "save_price": "€-23,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-BOMBSHELL-TILE1_3c846ee5-2dfe-4698-9fd0-e68a1606af10.webp?v=1759871504","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-BOMBSHELL-TILE2_d879a3a4-6a69-4d2f-b15a-6f434b1baac4.webp?v=1759871505",{"alt":null,"id":42389304279318,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/6f6ce24eb13b4fc0b3c57b9ad0886c79.thumbnail.0000000000.jpg?v=1759871550"},"aspect_ratio":0.558,"duration":53000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/6f6ce24eb13b4fc0b3c57b9ad0886c79\/6f6ce24eb13b4fc0b3c57b9ad0886c79.SD-480p-1.5Mbps-59057055.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/6f6ce24eb13b4fc0b3c57b9ad0886c79\/6f6ce24eb13b4fc0b3c57b9ad0886c79.HD-1080p-7.2Mbps-59057055.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/6f6ce24eb13b4fc0b3c57b9ad0886c79\/6f6ce24eb13b4fc0b3c57b9ad0886c79.HD-720p-4.5Mbps-59057055.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/6f6ce24eb13b4fc0b3c57b9ad0886c79\/6f6ce24eb13b4fc0b3c57b9ad0886c79.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-BOMBSHELL-TILE4_dd61f026-c4bc-4cc0-ab70-1db1b6d15501.webp?v=1759871519","\/\/hudabeauty.com\/cdn\/shop\/files\/FF-TEXTURE-02_1.webp?v=1775233194","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-BOMBSHELL-TILE6_c39a0b32-7430-4d2d-9daa-e8a491f59c63.webp?v=1759871521","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-BOMBSHELL-TILE7_bc9c70ef-fd3e-4022-a1aa-671f82201c03.webp?v=1759871521","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-BOMBSHELL-TILE8_3e2fc727-5d37-4d76-9c09-8e973855a6a9.webp?v=1759871523",{"alt":null,"id":42389290582294,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/14cec5c910724e12adff0e359b1f5d00.thumbnail.0000000000.jpg?v=1759871505"},"aspect_ratio":0.558,"duration":42000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/14cec5c910724e12adff0e359b1f5d00\/14cec5c910724e12adff0e359b1f5d00.SD-480p-1.5Mbps-59057014.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/14cec5c910724e12adff0e359b1f5d00\/14cec5c910724e12adff0e359b1f5d00.HD-1080p-7.2Mbps-59057014.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/14cec5c910724e12adff0e359b1f5d00\/14cec5c910724e12adff0e359b1f5d00.HD-720p-4.5Mbps-59057014.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/14cec5c910724e12adff0e359b1f5d00\/14cec5c910724e12adff0e359b1f5d00.m3u8?v=0","width":606}]}],
              "shortDescription": "Plumping & hydrating high-shine gloss with a lip filler effect. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50847430213910,
          "title": "Posh",
          "available": true,
          "inventory": 40,
          "max_product_quantity": 5,
          "price": "€23,00",
          "save_price": "€-23,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-POSH-TILE1_38b74ea8-cf03-4d17-ac4d-eb5beae21209.webp?v=1759871522","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-POSH-TILE2_237fefed-06d2-40e4-85f5-1a64899d257c.webp?v=1759871525",{"alt":null,"id":42389295071510,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/3161f0b6eba244e3b6699c6e68d90600.thumbnail.0000000000.jpg?v=1759871521"},"aspect_ratio":0.558,"duration":53000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/3161f0b6eba244e3b6699c6e68d90600\/3161f0b6eba244e3b6699c6e68d90600.SD-480p-1.5Mbps-59057026.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/3161f0b6eba244e3b6699c6e68d90600\/3161f0b6eba244e3b6699c6e68d90600.HD-1080p-7.2Mbps-59057026.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/3161f0b6eba244e3b6699c6e68d90600\/3161f0b6eba244e3b6699c6e68d90600.HD-720p-4.5Mbps-59057026.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/3161f0b6eba244e3b6699c6e68d90600\/3161f0b6eba244e3b6699c6e68d90600.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-POSH-TILE4_27099d0a-6c88-4e3a-9ea4-5b88ecb80bda.webp?v=1759871526","\/\/hudabeauty.com\/cdn\/shop\/files\/FF-TEXTURE-02_1.webp?v=1775233194","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-POSH-TILE6_604d006f-b73f-4415-b69d-6c3a4f5416eb.webp?v=1759871526","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-POSH-TILE7_936bf14e-b595-4de3-9ab3-eede484eda26.webp?v=1759871528","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-POSH-TILE8_578cc50b-1cce-4a80-89f3-066ee45e7c19.webp?v=1759871530"],
              "shortDescription": "Plumping & hydrating high-shine gloss with a lip filler effect. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50847451676950,
          "title": "She Fire",
          "available": true,
          "inventory": 25,
          "max_product_quantity": 5,
          "price": "€23,00",
          "save_price": "€-23,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFIRE-TILE1.webp?v=1759872939","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFIRE-TILE2_8bfb19b7-224c-4c3e-9409-d4602e73ef16.webp?v=1759872941","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFIRE-TILE4_2a6926a3-3e5f-4de2-976d-d04ccce9ed75.webp?v=1759872941","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFIRE-TILE5_634bb894-518a-4f16-87ba-6977956acf1d.webp?v=1759872942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFIRE-TILE6_2c6bd6a1-efb5-4615-9ea1-977ebf7e4e98.webp?v=1759872943","\/\/hudabeauty.com\/cdn\/shop\/files\/FF-TEXTURE-02_1.webp?v=1775233194","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFIRE-TILE8_f71a2715-70f4-4387-9708-68a1a5148160.webp?v=1759872945","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFIRE-TILE9_f14b1c72-076a-4c5b-aaf7-a108598a3e6b.webp?v=1759872946","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-SHEFIRE-TILE10_b24a8780-0b62-4fba-8d27-805d5f665ccc.webp?v=1759872946"],
              "shortDescription": "PH gloss that adjusts to all skin tones to give a diamond-like, dewy finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50847430246678,
          "title": "Coco",
          "available": true,
          "inventory": 216,
          "max_product_quantity": 5,
          "price": "€23,00",
          "save_price": "€-23,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-COCO-TILE1_4c42fe1f-1035-4806-b929-edd8bd305a37.webp?v=1759871529","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-COCO-TILE2_93551580-751e-4abf-9b06-b9d074dd8b4d.webp?v=1759871533",{"alt":null,"id":42389295071510,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/3161f0b6eba244e3b6699c6e68d90600.thumbnail.0000000000.jpg?v=1759871521"},"aspect_ratio":0.558,"duration":53000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/3161f0b6eba244e3b6699c6e68d90600\/3161f0b6eba244e3b6699c6e68d90600.SD-480p-1.5Mbps-59057026.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/3161f0b6eba244e3b6699c6e68d90600\/3161f0b6eba244e3b6699c6e68d90600.HD-1080p-7.2Mbps-59057026.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/3161f0b6eba244e3b6699c6e68d90600\/3161f0b6eba244e3b6699c6e68d90600.HD-720p-4.5Mbps-59057026.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/3161f0b6eba244e3b6699c6e68d90600\/3161f0b6eba244e3b6699c6e68d90600.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-COCO-TILE4_f921c12b-3bd6-4d16-a372-da61b9b62fe9.webp?v=1759871533","\/\/hudabeauty.com\/cdn\/shop\/files\/FF-TEXTURE-02_1.webp?v=1775233194","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-COCO-TILE6_306aa755-5790-4a15-a65f-3aa80983fa73.webp?v=1759871535","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-COCO-TILE7_595aff76-8038-4f0d-b25d-212acbd59f98.webp?v=1759871536","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FAUXFILLERLIPGLOSS-COCO-TILE8_2b3f4fd0-1f25-4ab1-ad06-64d372076d6d.webp?v=1759871538"],
              "shortDescription": "Plumping & hydrating high-shine gloss with a lip filler effect. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        }
      
    ]
  }
</script>

          
          
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10334320230678"><div data-oke-reviews-version="0.87.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 4.9 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 98.3516%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 4.9 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">4.9</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"4.9","reviewCount":40} </script></div></div>
    
        (40)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB01690" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        











<div  class="back-in-stock-container" style="display: none;"><div class="product-back-in-stock-buttons">
    
    

    
    
  </div></div>

        

         
          
















<div
  
  class="waitlist-container"
  
    style="display: none;"
  
><div class="product-waitlist-buttons">
      
      
        <a href="/en-fr/products/faux-filler-extra-shine-lip-gloss-hb01251m?variant=51158974431510" class="button button--primary notify-me-btn">Notify Me</a>
      
    </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="template--26760399323414__featured_collection_B3mC3V"
      data-form-id="product-form-template--26760399323414__featured_collection_B3mC3V"
      dl-product-id="HB01690"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-template--26760399323414__featured_collection_B3mC3V" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="51158974431510"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="1785"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <button
              id="ProductSubmitButton-template--26760399323414__featured_collection_B3mC3V"
              data-dl-source="Collection"
              data-url="/en-fr/products/faux-filler-extra-shine-lip-gloss-hb01251m"
              type="submit"
              name="add"
              class="product-form__submit button button--full-width button--primary"
              
              
            >
              <span>
                Add to Bag
              </span>
            </button></div><input type="hidden" name="product-id" value="10334320230678" /><input type="hidden" name="section-id" value="template--26760399323414__featured_collection_B3mC3V" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li><li
        id="Slide-template--26760399323414__featured_collection_B3mC3V-3"
        class="grid__item slider__slide"
        
      >
        



  







  

      
      
















  

  

  

  

  

  

  

  

  

  

  

  

  

  






























  
  

  
    
    




<section
  class="featured-card-product featured-card-product--new-design"
  
    data-card-design="new"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB01731"
    dl-product-name="Blush Filter Liquid Blush"
    dl-product-brand="Huda Beauty US"
    dl-product-category="Blush"
    dl-product-category2="Cheek"
    dl-product-category3=""
    dl-product-variant="HB01731"
    dl-product-price="28,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/blush-filter-liquid-blush-hb01345m?variant=51161393529110"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494&width=630 1x,            //hudabeauty.com/cdn/shop/files/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/blush-filter-liquid-blush-hb01345m?variant=51161393529110"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494&width=630"
          alt="Blush Filter Liquid Blush -  Strawberry Latte"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/Artboard_140_3_1.webp?v=1774424665&width=630 1x,              //hudabeauty.com/cdn/shop/files/Artboard_140_3_1.webp?v=1774424665&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/Artboard_140_3_1.webp?v=1774424665&width=630"
            alt="Blush Filter Liquid Blush -  Strawberry Latte Before and After "
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">NEW</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-template--26760399323414__featured_collection_B3mC3V-10234761937174"
      class="product__info-container"
      data-section="template--26760399323414__featured_collection_B3mC3V"
      data-url="/en-fr/products/blush-filter-liquid-blush-hb01345m?variant=51161393529110"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/blush-filter-liquid-blush-hb01345m?variant=51161393529110">
          
            <h3 class="h6">Blush Filter Liquid Blush
</h3>
          
        </a>
      </div>
      
      

      <div
        class="product_card_price mb-xs"
        id="price-template--26760399323414__featured_collection_B3mC3V"
        data-url="/en-fr/products/blush-filter-liquid-blush-hb01345m?variant=51161393529110"
        role="status"
        
      >


<div
    class="price      price-section-data price--large"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €28,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €28,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€-28,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker">
        
          


<div class="loading__spinner">
  <svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" class="spinner" viewbox="0 0 66 66"><circle stroke-width="6" cx="33" cy="33" r="30" fill="none" class="path"/></svg>

</div>


<link href="//hudabeauty.com/cdn/shop/t/162/assets/product-card-swatches.css?v=48729697193943970631775984107" rel="stylesheet" type="text/css" media="all" />





<div
  class="product-card-swatches featured-carousel"
  data-handle="blush-filter-liquid-blush-hb01345m"
>

        

        
        
        
        
        
<div class="product-swatch-new-wrapper">
            <span class="swatch-new-badge">NEW</span>
          <div
            data-id="51161393529110"
            class="product-swatch br-round"
            style="background-color: #AE4C4A; display: flex;"
            aria-label="Strawberry Latte"
            title="Strawberry Latte"
          ></div>
        
</div>


        

        
        
        
        
        
<div class="product-swatch-new-wrapper">
            <span class="swatch-new-badge">NEW</span>
          <div
            data-id="51161394774294"
            class="product-swatch br-round"
            style="background-color: #ba548a ; display: flex;"
            aria-label="Ube Berry"
            title="Ube Berry"
          ></div>
        
</div>


        

        
        
        
        
        
<div class="product-swatch-new-wrapper">
            <span class="swatch-new-badge">NEW</span>
          <div
            data-id="51161397625110"
            class="product-swatch br-round"
            style="background-color: #9A2439; display: flex;"
            aria-label="Berry Fever"
            title="Berry Fever"
          ></div>
        
</div>


        

        
        
        
        
        

          <div
            data-id="50573490979094"
            class="product-swatch br-round"
            style="background-color: #BF7184; display: flex;"
            aria-label="Strawberry Cream"
            title="Strawberry Cream"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573490848022"
            class="product-swatch br-round"
            style="background-color: #F6A3BB; display: flex;"
            aria-label="Cotton Candy"
            title="Cotton Candy"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573491011862"
            class="product-swatch br-round"
            style="background-color: #F79FAF; display: flex;"
            aria-label="Bubble Gum"
            title="Bubble Gum"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="51053742162198"
            class="product-swatch br-round"
            style="background-color: #EBB9D6; display: flex;"
            aria-label="Ube Cream"
            title="Ube Cream"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573491077398"
            class="product-swatch br-round"
            style="background-color: #F23F6D; display: flex;"
            aria-label="Intense Guava"
            title="Intense Guava"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573490946326"
            class="product-swatch br-round"
            style="background-color: #8D2153; display: flex;"
            aria-label="Black Cherry"
            title="Black Cherry"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573491142934"
            class="product-swatch br-round"
            style="background-color: #523234; display: flex;"
            aria-label="Coco Loco"
            title="Coco Loco"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573491110166"
            class="product-swatch br-round"
            style="background-color: #743B3A; display: flex;"
            aria-label="Latte"
            title="Latte"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573491044630"
            class="product-swatch br-round"
            style="background-color: #DA6350; display: flex;"
            aria-label="Sunset Lychee"
            title="Sunset Lychee"
          ></div>
        





<div class="no-js-hidden quick-add"><modal-opener data-modal="#QuickAdd-10234761937174">
          <button
            id="-submit"
            type="button"
            name="add"
            class="color-swatch-item br-round featured-card_choose-more-colors"
            aria-haspopup="dialog"
            aria-labelledby="-submit title--10234761937174"
            data-product-url="/en-fr/products/blush-filter-liquid-blush-hb01345m?view=quick-view"
            data-handle="blush-filter-liquid-blush-hb01345m"
          ><svg aria-hidden="true" width="10" height="11" viewbox="0 0 10 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Plus">
<path id="Vector 4" d="M0 5.5H10" stroke="black"/>
<path id="Vector 3" d="M5 0.5V10.5" stroke="black"/>
</g>
</svg>
</button>
        </modal-opener>
        <quick-add-modal id="QuickAdd-10234761937174" class="quick-add-modal">
          <div
            role="dialog"
            aria-label="Choose options for Blush Filter Liquid Blush"
            aria-modal="true"
            class="quick-add-modal__content global-settings-popup"
            tabindex="-1"
          >
            <button
              id="ModalClose-10234761937174"
              type="button"
              class="popup__close"
              aria-label="Close"
            ><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewbox="0 0 20 19" fill="none">
  <path d="M18.9999 0.5L1.25488 18.245L18.9999 0.5Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
  <path d="M18.745 18.245L1 0.5L18.745 18.245Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
</svg></button>
            <div id="QuickAddInfo-10234761937174" class="quick-add-modal__content-info"></div>
          </div>
        </quick-add-modal></div></div><script type="application/json" data-selected-variant-meta>
  {
    "default_selected_variant": {"id":51161393529110,"title":"Strawberry Latte","option1":"Strawberry Latte","option2":null,"option3":null,"sku":"HB01731","requires_shipping":true,"taxable":true,"featured_image":{"id":54844838052118,"product_id":10234761937174,"position":21,"created_at":"2026-03-25T11:41:32+04:00","updated_at":"2026-03-25T11:41:34+04:00","alt":"Blush Filter Liquid Blush -  Strawberry Latte","width":4167,"height":5209,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494","variant_ids":[51161393529110]},"available":true,"name":"Blush Filter Liquid Blush - Strawberry Latte","public_title":"Strawberry Latte","options":["Strawberry Latte"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408802","featured_media":{"alt":"Blush Filter Liquid Blush -  Strawberry Latte","id":44655810838806,"position":21,"preview_image":{"aspect_ratio":0.8,"height":5209,"width":4167,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},
    "product": {"id":10234761937174,"title":"Blush Filter Liquid Blush","handle":"blush-filter-liquid-blush-hb01345m","description":"","published_at":"2025-10-05T02:30:04+04:00","created_at":"2025-10-05T02:29:53+04:00","vendor":"Huda Beauty US","type":"","tags":["_okendo:syndication_key:blush-filter-liquid-blush-hb01345m","HB","short_description"],"price":2800,"price_min":2800,"price_max":2800,"available":true,"price_varies":false,"compare_at_price":null,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":51161393529110,"title":"Strawberry Latte","option1":"Strawberry Latte","option2":null,"option3":null,"sku":"HB01731","requires_shipping":true,"taxable":true,"featured_image":{"id":54844838052118,"product_id":10234761937174,"position":21,"created_at":"2026-03-25T11:41:32+04:00","updated_at":"2026-03-25T11:41:34+04:00","alt":"Blush Filter Liquid Blush -  Strawberry Latte","width":4167,"height":5209,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494","variant_ids":[51161393529110]},"available":true,"name":"Blush Filter Liquid Blush - Strawberry Latte","public_title":"Strawberry Latte","options":["Strawberry Latte"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408802","featured_media":{"alt":"Blush Filter Liquid Blush -  Strawberry Latte","id":44655810838806,"position":21,"preview_image":{"aspect_ratio":0.8,"height":5209,"width":4167,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":51161394774294,"title":"Ube Berry","option1":"Ube Berry","option2":null,"option3":null,"sku":"HB01737","requires_shipping":true,"taxable":true,"featured_image":{"id":54844837986582,"product_id":10234761937174,"position":22,"created_at":"2026-03-25T11:41:32+04:00","updated_at":"2026-03-25T11:41:34+04:00","alt":"Blush Filter Liquid Blush - Ube Berry","width":4167,"height":5209,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_8-UBE-BERRY.webp?v=1774424494","variant_ids":[51161394774294]},"available":true,"name":"Blush Filter Liquid Blush - Ube Berry","public_title":"Ube Berry","options":["Ube Berry"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408963","featured_media":{"alt":"Blush Filter Liquid Blush - Ube Berry","id":44655810773270,"position":22,"preview_image":{"aspect_ratio":0.8,"height":5209,"width":4167,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_8-UBE-BERRY.webp?v=1774424494"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":51161397625110,"title":"Berry Fever","option1":"Berry Fever","option2":null,"option3":null,"sku":"HB01771","requires_shipping":true,"taxable":true,"featured_image":{"id":54844838019350,"product_id":10234761937174,"position":23,"created_at":"2026-03-25T11:41:32+04:00","updated_at":"2026-03-25T11:41:34+04:00","alt":"Blush Filter Liquid Blush - Berry Fever","width":4167,"height":5209,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_10-BERRY-FEVER.webp?v=1774424494","variant_ids":[51161397625110]},"available":true,"name":"Blush Filter Liquid Blush - Berry Fever","public_title":"Berry Fever","options":["Berry Fever"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409168","featured_media":{"alt":"Blush Filter Liquid Blush - Berry Fever","id":44655810806038,"position":23,"preview_image":{"aspect_ratio":0.8,"height":5209,"width":4167,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_10-BERRY-FEVER.webp?v=1774424494"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573490979094,"title":"Strawberry Cream","option1":"Strawberry Cream","option2":null,"option3":null,"sku":"HB01349","requires_shipping":true,"taxable":true,"featured_image":{"id":54912976650518,"product_id":10234761937174,"position":24,"created_at":"2026-03-31T13:38:18+04:00","updated_at":"2026-03-31T13:38:20+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_5-STRAWBERRY-CREAM.webp?v=1774949900","variant_ids":[50573490979094]},"available":true,"name":"Blush Filter Liquid Blush - Strawberry Cream","public_title":"Strawberry Cream","options":["Strawberry Cream"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713326313750,"position":24,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_5-STRAWBERRY-CREAM.webp?v=1774949900"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573490848022,"title":"Cotton Candy","option1":"Cotton Candy","option2":null,"option3":null,"sku":"HB01345","requires_shipping":true,"taxable":true,"featured_image":{"id":54912993067286,"product_id":10234761937174,"position":25,"created_at":"2026-03-31T13:43:11+04:00","updated_at":"2026-03-31T13:43:13+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_3-COTTON-CANDY.webp?v=1774950193","variant_ids":[50573490848022]},"available":true,"name":"Blush Filter Liquid Blush - Cotton Candy","public_title":"Cotton Candy","options":["Cotton Candy"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713339846934,"position":25,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_3-COTTON-CANDY.webp?v=1774950193"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573491011862,"title":"Bubble Gum","option1":"Bubble Gum","option2":null,"option3":null,"sku":"HB01531","requires_shipping":true,"taxable":true,"featured_image":{"id":54913002144022,"product_id":10234761937174,"position":26,"created_at":"2026-03-31T13:46:20+04:00","updated_at":"2026-03-31T13:46:21+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_1-BUBBLEGUM.webp?v=1774950381","variant_ids":[50573491011862]},"available":true,"name":"Blush Filter Liquid Blush - Bubble Gum","public_title":"Bubble Gum","options":["Bubble Gum"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713348923670,"position":26,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_1-BUBBLEGUM.webp?v=1774950381"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":51053742162198,"title":"Ube Cream","option1":"Ube Cream","option2":null,"option3":null,"sku":"HB01491","requires_shipping":true,"taxable":true,"featured_image":{"id":54913004470550,"product_id":10234761937174,"position":27,"created_at":"2026-03-31T13:47:19+04:00","updated_at":"2026-03-31T13:47:21+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_2-UBE-CREAM.webp?v=1774950441","variant_ids":[51053742162198]},"available":true,"name":"Blush Filter Liquid Blush - Ube Cream","public_title":"Ube Cream","options":["Ube Cream"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713351250198,"position":27,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_2-UBE-CREAM.webp?v=1774950441"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573491077398,"title":"Intense Guava","option1":"Intense Guava","option2":null,"option3":null,"sku":"HB01532","requires_shipping":true,"taxable":true,"featured_image":{"id":54913007485206,"product_id":10234761937174,"position":28,"created_at":"2026-03-31T13:48:30+04:00","updated_at":"2026-03-31T13:48:32+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_9-INTENSE-GUAVA.webp?v=1774950512","variant_ids":[50573491077398]},"available":true,"name":"Blush Filter Liquid Blush - Intense Guava","public_title":"Intense Guava","options":["Intense Guava"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713354264854,"position":28,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_9-INTENSE-GUAVA.webp?v=1774950512"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573490946326,"title":"Black Cherry","option1":"Black Cherry","option2":null,"option3":null,"sku":"HB01348","requires_shipping":true,"taxable":true,"featured_image":{"id":54913009975574,"product_id":10234761937174,"position":29,"created_at":"2026-03-31T13:49:32+04:00","updated_at":"2026-03-31T13:49:33+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_11-BLACK-CHERRY.webp?v=1774950573","variant_ids":[50573490946326]},"available":true,"name":"Blush Filter Liquid Blush - Black Cherry","public_title":"Black Cherry","options":["Black Cherry"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713356722454,"position":29,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_11-BLACK-CHERRY.webp?v=1774950573"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573491142934,"title":"Coco Loco","option1":"Coco Loco","option2":null,"option3":null,"sku":"HB01376","requires_shipping":true,"taxable":true,"featured_image":{"id":54913013088534,"product_id":10234761937174,"position":30,"created_at":"2026-03-31T13:50:59+04:00","updated_at":"2026-03-31T13:51:00+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_12-COCO-LOCO.webp?v=1774950660","variant_ids":[50573491142934]},"available":true,"name":"Blush Filter Liquid Blush - Coco Loco","public_title":"Coco Loco","options":["Coco Loco"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713359868182,"position":30,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_12-COCO-LOCO.webp?v=1774950660"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573491110166,"title":"Latte","option1":"Latte","option2":null,"option3":null,"sku":"HB01375","requires_shipping":true,"taxable":true,"featured_image":{"id":54913018691862,"product_id":10234761937174,"position":31,"created_at":"2026-03-31T13:53:35+04:00","updated_at":"2026-03-31T13:53:37+04:00","alt":null,"width":3000,"height":3501,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_7-LATTE.webp?v=1774950817","variant_ids":[50573491110166]},"available":true,"name":"Blush Filter Liquid Blush - Latte","public_title":"Latte","options":["Latte"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713365438742,"position":31,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_7-LATTE.webp?v=1774950817"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573491044630,"title":"Sunset Lychee","option1":"Sunset Lychee","option2":null,"option3":null,"sku":"HB01533","requires_shipping":true,"taxable":true,"featured_image":{"id":54913020002582,"product_id":10234761937174,"position":32,"created_at":"2026-03-31T13:55:05+04:00","updated_at":"2026-03-31T13:55:07+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_4-SUNSET-LYCHEE.webp?v=1774950907","variant_ids":[50573491044630]},"available":true,"name":"Blush Filter Liquid Blush - Sunset Lychee","public_title":"Sunset Lychee","options":["Sunset Lychee"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713366749462,"position":32,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_4-SUNSET-LYCHEE.webp?v=1774950907"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573490880790,"title":"Peach Sorbet","option1":"Peach Sorbet","option2":null,"option3":null,"sku":"HB01346","requires_shipping":true,"taxable":true,"featured_image":{"id":52288302645526,"product_id":10234761937174,"position":33,"created_at":"2025-10-08T01:16:12+04:00","updated_at":"2025-10-08T01:16:15+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE1.webp?v=1759871775","variant_ids":[50573490880790]},"available":true,"name":"Blush Filter Liquid Blush - Peach Sorbet","public_title":"Peach Sorbet","options":["Peach Sorbet"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":42389379809558,"position":33,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE1.webp?v=1759871775"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573490913558,"title":"Watermelon Pop","option1":"Watermelon Pop","option2":null,"option3":null,"sku":"HB01347","requires_shipping":true,"taxable":true,"featured_image":{"id":52232112898326,"product_id":10234761937174,"position":20,"created_at":"2025-10-04T21:37:38+04:00","updated_at":"2025-10-05T02:29:02+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE1_ed1f90cf-f983-42d2-826b-c0e13a11f594.webp?v=1759616942","variant_ids":[50573490913558]},"available":true,"name":"Blush Filter Liquid Blush - Watermelon Pop","public_title":"Watermelon Pop","options":["Watermelon Pop"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":42342415761686,"position":20,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE1_ed1f90cf-f983-42d2-826b-c0e13a11f594.webp?v=1759616942"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}],"images":["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE1_ded21597-e66d-4e97-afa5-e814766cdd67.webp?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE2.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE4.jpg?v=1759616941","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE5.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE6.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE7.jpg?v=1759616941","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE9.jpg?v=1759616941","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE10.jpg?v=1759616941","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE11.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE12.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE8.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE2.jpg?v=1759616941","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE4.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-STRAWBERRYCREAM-TILE2.jpg?v=1759616943","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-STRAWBERRYCREAM-TILE4.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE2.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE4.jpg?v=1759616941","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-BLACKCHERRY-TILE2.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-BLACKCHERRY-TILE4.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE1_ed1f90cf-f983-42d2-826b-c0e13a11f594.webp?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_8-UBE-BERRY.webp?v=1774424494","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_10-BERRY-FEVER.webp?v=1774424494","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_5-STRAWBERRY-CREAM.webp?v=1774949900","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_3-COTTON-CANDY.webp?v=1774950193","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_1-BUBBLEGUM.webp?v=1774950381","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_2-UBE-CREAM.webp?v=1774950441","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_9-INTENSE-GUAVA.webp?v=1774950512","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_11-BLACK-CHERRY.webp?v=1774950573","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_12-COCO-LOCO.webp?v=1774950660","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_7-LATTE.webp?v=1774950817","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_4-SUNSET-LYCHEE.webp?v=1774950907","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE1.webp?v=1759871775"],"featured_image":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE1_ded21597-e66d-4e97-afa5-e814766cdd67.webp?v=1759616942","options":["Shade"],"media":[{"alt":null,"id":42342351503638,"position":1,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE1_ded21597-e66d-4e97-afa5-e814766cdd67.webp?v=1759616942"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE1_ded21597-e66d-4e97-afa5-e814766cdd67.webp?v=1759616942","width":3000},{"alt":null,"id":42342351634710,"position":2,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE2.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE2.jpg?v=1759616942","width":3000},{"alt":null,"id":42342352126230,"position":3,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE4.jpg?v=1759616941"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE4.jpg?v=1759616941","width":3000},{"alt":null,"id":42342353273110,"position":4,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE5.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE5.jpg?v=1759616942","width":3001},{"alt":null,"id":42342353568022,"position":5,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE6.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE6.jpg?v=1759616942","width":3001},{"alt":null,"id":42342353731862,"position":6,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE7.jpg?v=1759616941"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE7.jpg?v=1759616941","width":3001},{"alt":null,"id":42342354813206,"position":7,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE9.jpg?v=1759616941"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE9.jpg?v=1759616941","width":3001},{"alt":null,"id":42342350422294,"position":8,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE10.jpg?v=1759616941"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE10.jpg?v=1759616941","width":3001},{"alt":null,"id":42342350586134,"position":9,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE11.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE11.jpg?v=1759616942","width":3001},{"alt":null,"id":42342351012118,"position":10,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE12.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE12.jpg?v=1759616942","width":3001},{"alt":null,"id":42342354551062,"position":11,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE8.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE8.jpg?v=1759616942","width":3001},{"alt":null,"id":42342359073046,"position":12,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE2.jpg?v=1759616941"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE2.jpg?v=1759616941","width":3000},{"alt":null,"id":42342359171350,"position":13,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE4.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE4.jpg?v=1759616942","width":3000},{"alt":null,"id":42342360776982,"position":14,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-STRAWBERRYCREAM-TILE2.jpg?v=1759616943"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-STRAWBERRYCREAM-TILE2.jpg?v=1759616943","width":3000},{"alt":null,"id":42342360973590,"position":15,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-STRAWBERRYCREAM-TILE4.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-STRAWBERRYCREAM-TILE4.jpg?v=1759616942","width":3000},{"alt":null,"id":42342416875798,"position":16,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE2.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE2.jpg?v=1759616942","width":3000},{"alt":null,"id":42342420087062,"position":17,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE4.jpg?v=1759616941"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE4.jpg?v=1759616941","width":3000},{"alt":null,"id":42342333350166,"position":18,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-BLACKCHERRY-TILE2.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-BLACKCHERRY-TILE2.jpg?v=1759616942","width":3000},{"alt":null,"id":42342333448470,"position":19,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-BLACKCHERRY-TILE4.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-BLACKCHERRY-TILE4.jpg?v=1759616942","width":3000},{"alt":null,"id":42342415761686,"position":20,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE1_ed1f90cf-f983-42d2-826b-c0e13a11f594.webp?v=1759616942"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE1_ed1f90cf-f983-42d2-826b-c0e13a11f594.webp?v=1759616942","width":3000},{"alt":"Blush Filter Liquid Blush -  Strawberry Latte","id":44655810838806,"position":21,"preview_image":{"aspect_ratio":0.8,"height":5209,"width":4167,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494"},"aspect_ratio":0.8,"height":5209,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494","width":4167},{"alt":"Blush Filter Liquid Blush - Ube Berry","id":44655810773270,"position":22,"preview_image":{"aspect_ratio":0.8,"height":5209,"width":4167,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_8-UBE-BERRY.webp?v=1774424494"},"aspect_ratio":0.8,"height":5209,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_8-UBE-BERRY.webp?v=1774424494","width":4167},{"alt":"Blush Filter Liquid Blush - Berry Fever","id":44655810806038,"position":23,"preview_image":{"aspect_ratio":0.8,"height":5209,"width":4167,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_10-BERRY-FEVER.webp?v=1774424494"},"aspect_ratio":0.8,"height":5209,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_10-BERRY-FEVER.webp?v=1774424494","width":4167},{"alt":null,"id":44713326313750,"position":24,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_5-STRAWBERRY-CREAM.webp?v=1774949900"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_5-STRAWBERRY-CREAM.webp?v=1774949900","width":3000},{"alt":null,"id":44713339846934,"position":25,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_3-COTTON-CANDY.webp?v=1774950193"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_3-COTTON-CANDY.webp?v=1774950193","width":3000},{"alt":null,"id":44713348923670,"position":26,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_1-BUBBLEGUM.webp?v=1774950381"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_1-BUBBLEGUM.webp?v=1774950381","width":3000},{"alt":null,"id":44713351250198,"position":27,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_2-UBE-CREAM.webp?v=1774950441"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_2-UBE-CREAM.webp?v=1774950441","width":3000},{"alt":null,"id":44713354264854,"position":28,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_9-INTENSE-GUAVA.webp?v=1774950512"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_9-INTENSE-GUAVA.webp?v=1774950512","width":3000},{"alt":null,"id":44713356722454,"position":29,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_11-BLACK-CHERRY.webp?v=1774950573"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_11-BLACK-CHERRY.webp?v=1774950573","width":3000},{"alt":null,"id":44713359868182,"position":30,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_12-COCO-LOCO.webp?v=1774950660"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_12-COCO-LOCO.webp?v=1774950660","width":3000},{"alt":null,"id":44713365438742,"position":31,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_7-LATTE.webp?v=1774950817"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_7-LATTE.webp?v=1774950817","width":3000},{"alt":null,"id":44713366749462,"position":32,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_4-SUNSET-LYCHEE.webp?v=1774950907"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_4-SUNSET-LYCHEE.webp?v=1774950907","width":3000},{"alt":null,"id":42389379809558,"position":33,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE1.webp?v=1759871775"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE1.webp?v=1759871775","width":3000}],"requires_selling_plan":false,"selling_plan_groups":[],"content":""},
    "variants": [
      
{
          "id": 51161393529110,
          "title": "Strawberry Latte",
          "available": true,
          "inventory": 1120,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_3_1.webp?v=1774424665","\/\/hudabeauty.com\/cdn\/shop\/files\/Strawberry_Latte_Shade.webp?v=1774424789","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_4.webp?v=1774424949"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 51161394774294,
          "title": "Ube Berry",
          "available": true,
          "inventory": 1166,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_8-UBE-BERRY.webp?v=1774424494","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_5.webp?v=1774424694","\/\/hudabeauty.com\/cdn\/shop\/files\/Ube_Berry_Shade.webp?v=1774424789","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_4.webp?v=1774424949"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 51161397625110,
          "title": "Berry Fever",
          "available": true,
          "inventory": 491,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_10-BERRY-FEVER.webp?v=1774424494","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_7.webp?v=1774424726","\/\/hudabeauty.com\/cdn\/shop\/files\/Berry_Fever_Shade.webp?v=1774424789","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_4.webp?v=1774424949"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573490979094,
          "title": "Strawberry Cream",
          "available": true,
          "inventory": 96,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_5-STRAWBERRY-CREAM.webp?v=1774949900","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_2.webp?v=1774949903","\/\/hudabeauty.com\/cdn\/shop\/files\/Strawberry_Cream_Shade.webp?v=1774949903","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        },
      
{
          "id": 50573490848022,
          "title": "Cotton Candy",
          "available": true,
          "inventory": 110,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_3-COTTON-CANDY.webp?v=1774950193","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140.webp?v=1774950196","\/\/hudabeauty.com\/cdn\/shop\/files\/Cotton_Candy_Shade.webp?v=1774950197","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        },
      
{
          "id": 50573491011862,
          "title": "Bubble Gum",
          "available": true,
          "inventory": 135,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_1-BUBBLEGUM.webp?v=1774950381","\/\/hudabeauty.com\/cdn\/shop\/files\/BUBBLEGUM.webp?v=1774950384","\/\/hudabeauty.com\/cdn\/shop\/files\/Bubblegum_shade.webp?v=1774950385","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        },
      
{
          "id": 51053742162198,
          "title": "Ube Cream",
          "available": true,
          "inventory": 303,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_2-UBE-CREAM.webp?v=1774950441","\/\/hudabeauty.com\/cdn\/shop\/files\/UBE-CREAM.webp?v=1774950444","\/\/hudabeauty.com\/cdn\/shop\/files\/Ube_Cream_Shade.webp?v=1774950444","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "2-in-1 hybrid blush with buildable pigment & micro-pearls that melts into skin for a soft-focus, luminous glow.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573491077398,
          "title": "Intense Guava",
          "available": true,
          "inventory": 178,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_9-INTENSE-GUAVA.webp?v=1774950512","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_6.webp?v=1774950514","\/\/hudabeauty.com\/cdn\/shop\/files\/Intense_Guava_Shade.webp?v=1774950514","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        },
      
{
          "id": 50573490946326,
          "title": "Black Cherry",
          "available": true,
          "inventory": 95,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_11-BLACK-CHERRY.webp?v=1774950573","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_8.webp?v=1774950576","\/\/hudabeauty.com\/cdn\/shop\/files\/Black_Cherry_Shade.webp?v=1774950577","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        },
      
{
          "id": 50573491142934,
          "title": "Coco Loco",
          "available": true,
          "inventory": 80,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_12-COCO-LOCO.webp?v=1774950660","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_9.webp?v=1774950662","\/\/hudabeauty.com\/cdn\/shop\/files\/Chocoloco_Shade.webp?v=1774950664","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573491110166,
          "title": "Latte",
          "available": true,
          "inventory": 107,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_7-LATTE.webp?v=1774950817","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_4.webp?v=1774950819","\/\/hudabeauty.com\/cdn\/shop\/files\/Latte_Shade.webp?v=1774950819","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573491044630,
          "title": "Sunset Lychee",
          "available": true,
          "inventory": 89,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_4-SUNSET-LYCHEE.webp?v=1774950907","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_1.webp?v=1774950911","\/\/hudabeauty.com\/cdn\/shop\/files\/Sunset_Lychee_Shade.webp?v=1774950911","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        },
      
{
          "id": 50573490880790,
          "title": "Peach Sorbet",
          "available": true,
          "inventory": 122,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE1.webp?v=1759871775","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE2_bfa3cd96-d581-46b0-8aa1-cd05eec702c0.webp?v=1759871775",{"alt":"Blush Filter Liquid Blush of Huda explaining and demonstrating the product","id":42389376925974,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/af7a31e7b99d41888a97717e6b03d024.thumbnail.0000000000.jpg?v=1759871834"},"aspect_ratio":0.558,"duration":102000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/af7a31e7b99d41888a97717e6b03d024\/af7a31e7b99d41888a97717e6b03d024.SD-480p-1.5Mbps-59057266.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/af7a31e7b99d41888a97717e6b03d024\/af7a31e7b99d41888a97717e6b03d024.HD-1080p-7.2Mbps-59057266.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/af7a31e7b99d41888a97717e6b03d024\/af7a31e7b99d41888a97717e6b03d024.HD-720p-4.5Mbps-59057266.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/af7a31e7b99d41888a97717e6b03d024\/af7a31e7b99d41888a97717e6b03d024.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE4_56c0d8f6-81be-47b9-be87-cea377a92e2f.webp?v=1759871777","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE5_3fbe63a2-992b-477c-93e1-3ef321ce13b2.webp?v=1759871779","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE6_ef4fe96b-298a-4e9b-a5a7-e948de13bc35.webp?v=1759871780","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE7_28c22f07-e696-4f36-b376-b808b1480c47.webp?v=1759871781","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE8_e7daf87e-4e61-432c-88eb-d96f26cdec7a.webp?v=1759871783","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-TEXTURE-01.webp?v=1775233640","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE10_36d6ee5d-1391-46d5-826c-cbead8d39d35.webp?v=1759871784","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE11_7d80565e-adea-41cb-ba6a-12f28b8e0f86.webp?v=1759871786","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE12_32d699e4-834f-4424-88df-b0b10cf2ddf3.webp?v=1759871786"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        },
      
{
          "id": 50573490913558,
          "title": "Watermelon Pop",
          "available": true,
          "inventory": 116,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE1.webp?v=1759871786","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE2_c7eb6929-5957-4f7f-b0bb-c593cb6a7fe8.webp?v=1759871788",{"alt":"Blush Filter Liquid Blush of Huda explaining and demonstrating the product","id":42389376925974,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/af7a31e7b99d41888a97717e6b03d024.thumbnail.0000000000.jpg?v=1759871834"},"aspect_ratio":0.558,"duration":102000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/af7a31e7b99d41888a97717e6b03d024\/af7a31e7b99d41888a97717e6b03d024.SD-480p-1.5Mbps-59057266.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/af7a31e7b99d41888a97717e6b03d024\/af7a31e7b99d41888a97717e6b03d024.HD-1080p-7.2Mbps-59057266.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/af7a31e7b99d41888a97717e6b03d024\/af7a31e7b99d41888a97717e6b03d024.HD-720p-4.5Mbps-59057266.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/af7a31e7b99d41888a97717e6b03d024\/af7a31e7b99d41888a97717e6b03d024.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE4_8e7fa149-3156-4b29-8366-b068a5ae8f72.webp?v=1759871789","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE5_b2d8beea-0767-494d-b993-8bc305535400.webp?v=1759871788","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE6_8cdcc262-0ce7-452a-a435-9a74659e1f68.webp?v=1759871789","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE7_b788cd42-8680-489a-a7f9-aa98d1942f5c.webp?v=1759871792","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE8_811cbc83-32d6-4066-adb2-f674f0971231.webp?v=1759871794","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-TEXTURE-01.webp?v=1775233640","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE10_67853daa-617a-47c5-a0ba-ac8edaae22db.webp?v=1759871796","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE11_1d0840e8-2924-4dc6-b029-deb7b518f7c2.webp?v=1759871797","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE12_b8e8bed4-00d2-4e82-a5cd-308b8d889f47.webp?v=1759871798"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        }
      
    ]
  }
</script>

          
          
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10234761937174"><div data-oke-reviews-version="0.87.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 4.9 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 98.3516%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 4.9 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">4.9</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"4.9","reviewCount":1096} </script></div></div>
    
        (1096)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB01731" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        











<div  class="back-in-stock-container" style="display: none;"><div class="product-back-in-stock-buttons">
    
    

    
    
  </div></div>

        

         
          
















<div
  
  class="waitlist-container"
  
    style="display: none;"
  
><div class="product-waitlist-buttons">
      
      
        <a href="/en-fr/products/blush-filter-liquid-blush-hb01345m?variant=51161393529110" class="button button--primary notify-me-btn">Notify Me</a>
      
    </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="template--26760399323414__featured_collection_B3mC3V"
      data-form-id="product-form-template--26760399323414__featured_collection_B3mC3V"
      dl-product-id="HB01731"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-template--26760399323414__featured_collection_B3mC3V" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="51161393529110"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="1120"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <button
              id="ProductSubmitButton-template--26760399323414__featured_collection_B3mC3V"
              data-dl-source="Collection"
              data-url="/en-fr/products/blush-filter-liquid-blush-hb01345m"
              type="submit"
              name="add"
              class="product-form__submit button button--full-width button--primary"
              
              
            >
              <span>
                Add to Bag
              </span>
            </button></div><input type="hidden" name="product-id" value="10234761937174" /><input type="hidden" name="section-id" value="template--26760399323414__featured_collection_B3mC3V" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li><li
        id="Slide-template--26760399323414__featured_collection_B3mC3V-4"
        class="grid__item slider__slide"
        
      >
        



  























  


































<section
  class="featured-card-product featured-card-product--new-design"
  
    data-card-design="new"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="set_134"
    dl-product-name="Strawberry Latte Collection Kit"
    dl-product-brand="Huda Beauty US"
    dl-product-category="Sets + Gifts"
    dl-product-category2="Huda Beauty"
    dl-product-category3=""
    dl-product-variant="set_134"
    dl-product-price="151,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/strawberry-latte-collection-set_134?variant=51147089740054"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SLC-PACKSHOT.webp?v=1774769010&width=630 1x,            //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SLC-PACKSHOT.webp?v=1774769010&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/strawberry-latte-collection-set_134?variant=51147089740054"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SLC-PACKSHOT.webp?v=1774769010&width=630"
          alt="Strawberry Latte Collection Kit"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SLC-SECOND-IMAGE.webp?v=1774769010&width=630 1x,              //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SLC-SECOND-IMAGE.webp?v=1774769010&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SLC-SECOND-IMAGE.webp?v=1774769010&width=630"
            alt="Strawberry Latte Collection Kit"
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">NEW</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
            
            
            
              <p class="badge--bottom-left sale-badge py-2xs px-xs h6">Save&nbsp; 10%
              </p>
            
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-template--26760399323414__featured_collection_B3mC3V-10454140354838"
      class="product__info-container"
      data-section="template--26760399323414__featured_collection_B3mC3V"
      data-url="/en-fr/products/strawberry-latte-collection-set_134?variant=51147089740054"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/strawberry-latte-collection-set_134?variant=51147089740054">
          
            <h3 class="h6">Strawberry Latte Collection Kit
</h3>
          
        </a>
      </div>
      
      

      <div
        class="product_card_price mb-xs"
        id="price-template--26760399323414__featured_collection_B3mC3V"
        data-url="/en-fr/products/strawberry-latte-collection-set_134?variant=51147089740054"
        role="status"
        
      >


<div
    class="price      price-section-data price--large price--on-sale"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €151,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €151,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              €168,00
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€17,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker">
        
          
          
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10454140354838"><div data-oke-reviews-version="0.87.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 5.0 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 100%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 5.0 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">5.0</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"5.0","reviewCount":2} </script></div></div>
    
        (2)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="set_134" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        




  
<!-- Extract last part after last dash from product handle -->



<div  class="bundle-back-in-stock-container">
  <div class="bundle-back-in-stock-button">
    
    
  </div>
</div>

      

         
          




<!-- Extract last part after last dash from product handle -->




  

  
<div  class="bundle-waitlist-container" style="display: none;"><div class="bundle-waitlist-button">
    
      
        <a href="/en-fr/products/strawberry-latte-collection-set_134" class="button button--primary button--full-width notify-me-btn">Notify Me</a>
    
  </div></div>

        

      


















<div  class="buy-buttons-container">
        
      
        
      
        
      
        
      
        
      
        
      

    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="template--26760399323414__featured_collection_B3mC3V"
      data-form-id="product-form-template--26760399323414__featured_collection_B3mC3V"
      dl-product-id="set_134"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-template--26760399323414__featured_collection_B3mC3V" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="51147089740054"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="1000"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <button
              id="ProductSubmitButton-template--26760399323414__featured_collection_B3mC3V"
              data-dl-source="Collection"
              data-url="/en-fr/products/strawberry-latte-collection-set_134"
              type="submit"
              name="add"
              class="product-form__submit button button--full-width button--primary"
              
              
            >
              <span>
                Add to Bag
              </span>
            </button></div><input type="hidden" name="product-id" value="10454140354838" /><input type="hidden" name="section-id" value="template--26760399323414__featured_collection_B3mC3V" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li><li
        id="Slide-template--26760399323414__featured_collection_B3mC3V-5"
        class="grid__item slider__slide"
        
      >
        



  























  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  


































<section
  class="featured-card-product featured-card-product--new-design"
  
    data-card-design="new"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB01693,HB01731,HB01690,HB01649"
    dl-product-name="Summer's Hottest Look Kit"
    dl-product-brand="Huda Beauty"
    dl-product-category="Sets + Gifts"
    dl-product-category2="Huda Beauty"
    dl-product-category3=""
    dl-product-variant="set_136-1"
    dl-product-price="105,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/summers-hottest-look-set_136?variant=51172621189398"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SUMMERS-HOTTEST-LOOK-PACKSHOT.webp?v=1774850353&width=630 1x,            //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SUMMERS-HOTTEST-LOOK-PACKSHOT.webp?v=1774850353&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/summers-hottest-look-set_136?variant=51172621189398"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SUMMERS-HOTTEST-LOOK-PACKSHOT.webp?v=1774850353&width=630"
          alt="Summer&#39;s Hottest Look Kit"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SUMMERS-HOTTEST-LOOK-SECOND-IMAGE.webp?v=1774850375&width=630 1x,              //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SUMMERS-HOTTEST-LOOK-SECOND-IMAGE.webp?v=1774850375&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SUMMERS-HOTTEST-LOOK-SECOND-IMAGE.webp?v=1774850375&width=630"
            alt="Summer&#39;s Hottest Look Kit"
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">NEW</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
            
            
            
              <p class="badge--bottom-left sale-badge py-2xs px-xs h6">Save&nbsp; 10%
              </p>
            
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-template--26760399323414__featured_collection_B3mC3V-10463204999446"
      class="product__info-container"
      data-section="template--26760399323414__featured_collection_B3mC3V"
      data-url="/en-fr/products/summers-hottest-look-set_136?variant=51172621189398"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/summers-hottest-look-set_136?variant=51172621189398">
          
            <h3 class="h6">Summer&#39;s Hottest Look Kit
</h3>
          
        </a>
      </div>
      
      

      <div
        class="product_card_price mb-xs"
        id="price-template--26760399323414__featured_collection_B3mC3V"
        data-url="/en-fr/products/summers-hottest-look-set_136?variant=51172621189398"
        role="status"
        
      >


<div
    class="price      price-section-data price--large price--sold-out price--on-sale"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €105,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €105,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              €117,00
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€12,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker">
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10463204999446"><div data-oke-reviews-version="0.87.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 5.0 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 100%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 5.0 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">5.0</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"5.0","reviewCount":2} </script></div></div>
    
        (2)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB01693,HB01731,HB01690,HB01649" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        




  
<!-- Extract last part after last dash from product handle -->



<div  class="bundle-back-in-stock-container">
  <div class="bundle-back-in-stock-button">
    
    
  </div>
</div>

      

         
          




<!-- Extract last part after last dash from product handle -->




  

  
<div  class="bundle-waitlist-container" style="display: none;"><div class="bundle-waitlist-button">
    
      
        <a href="/en-fr/products/summers-hottest-look-set_136" class="button button--primary button--full-width notify-me-btn">Notify Me</a>
    
  </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="template--26760399323414__featured_collection_B3mC3V"
      data-form-id="product-form-template--26760399323414__featured_collection_B3mC3V"
      dl-product-id="HB01693,HB01731,HB01690,HB01649"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-template--26760399323414__featured_collection_B3mC3V" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="51172621189398"
          
            disabled
 class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="0"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="0"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <a href="/en-fr/products/summers-hottest-look-set_136" class="button button--primary button--full-width select-shades-btn">Select shades</a>
          </div><input type="hidden" name="product-id" value="10463204999446" /><input type="hidden" name="section-id" value="template--26760399323414__featured_collection_B3mC3V" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li><li
        id="Slide-template--26760399323414__featured_collection_B3mC3V-6"
        class="grid__item slider__slide"
        
      >
        



  























  


































<section
  class="featured-card-product featured-card-product--new-design"
  
    data-card-design="new"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="set_135"
    dl-product-name="Strawberry Latte Gloss Trio Kit"
    dl-product-brand="Huda Beauty"
    dl-product-category="Sets + Gifts"
    dl-product-category2="Huda Beauty"
    dl-product-category3=""
    dl-product-variant="set_135"
    dl-product-price="62,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/strawberry-latte-gloss-trio-set_135?variant=51147097047318"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_GLOSS-TRIO-PACKSHOT.webp?v=1774770400&width=630 1x,            //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_GLOSS-TRIO-PACKSHOT.webp?v=1774770400&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/strawberry-latte-gloss-trio-set_135?variant=51147097047318"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_GLOSS-TRIO-PACKSHOT.webp?v=1774770400&width=630"
          alt="Strawberry Latte Gloss Trio Kit"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_GLOSS-TRIO-SECOND-IMAGE.webp?v=1774770400&width=630 1x,              //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_GLOSS-TRIO-SECOND-IMAGE.webp?v=1774770400&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_GLOSS-TRIO-SECOND-IMAGE.webp?v=1774770400&width=630"
            alt="Strawberry Latte Gloss Trio Kit"
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">NEW</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
            
            
            
              <p class="badge--bottom-left sale-badge py-2xs px-xs h6">Save&nbsp; 10%
              </p>
            
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-template--26760399323414__featured_collection_B3mC3V-10454142812438"
      class="product__info-container"
      data-section="template--26760399323414__featured_collection_B3mC3V"
      data-url="/en-fr/products/strawberry-latte-gloss-trio-set_135?variant=51147097047318"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/strawberry-latte-gloss-trio-set_135?variant=51147097047318">
          
            <h3 class="h6">Strawberry Latte Gloss Trio Kit
</h3>
          
        </a>
      </div>
      
      

      <div
        class="product_card_price mb-xs"
        id="price-template--26760399323414__featured_collection_B3mC3V"
        data-url="/en-fr/products/strawberry-latte-gloss-trio-set_135?variant=51147097047318"
        role="status"
        
      >


<div
    class="price      price-section-data price--large price--on-sale"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €62,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €62,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              €69,00
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€7,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker">
        
          
          
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10454142812438"></div>
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="set_135" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        




  
<!-- Extract last part after last dash from product handle -->



<div  class="bundle-back-in-stock-container">
  <div class="bundle-back-in-stock-button">
    
    
  </div>
</div>

      

         
          




<!-- Extract last part after last dash from product handle -->




  

  
<div  class="bundle-waitlist-container" style="display: none;"><div class="bundle-waitlist-button">
    
      
        <a href="/en-fr/products/strawberry-latte-gloss-trio-set_135" class="button button--primary button--full-width notify-me-btn">Notify Me</a>
    
  </div></div>

        

      


















<div  class="buy-buttons-container">
        
      
        
      
        
      

    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="template--26760399323414__featured_collection_B3mC3V"
      data-form-id="product-form-template--26760399323414__featured_collection_B3mC3V"
      dl-product-id="set_135"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-template--26760399323414__featured_collection_B3mC3V" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="51147097047318"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="1000"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <button
              id="ProductSubmitButton-template--26760399323414__featured_collection_B3mC3V"
              data-dl-source="Collection"
              data-url="/en-fr/products/strawberry-latte-gloss-trio-set_135"
              type="submit"
              name="add"
              class="product-form__submit button button--full-width button--primary"
              
              
            >
              <span>
                Add to Bag
              </span>
            </button></div><input type="hidden" name="product-id" value="10454142812438" /><input type="hidden" name="section-id" value="template--26760399323414__featured_collection_B3mC3V" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li><li
        id="Slide-template--26760399323414__featured_collection_B3mC3V-7"
        class="grid__item slider__slide"
        
      >
        



  







  





      
      
















  

  

  

  

  

  

  

  

  

  

  

  






























  
  

  
    
    




<section
  class="featured-card-product featured-card-product--new-design"
  
    data-card-design="new"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB01080"
    dl-product-name="Easy Bake Loose Baking & Setting Powder"
    dl-product-brand="Huda Beauty US"
    dl-product-category="Powder & Setting Spray"
    dl-product-category2="Face"
    dl-product-category3=""
    dl-product-variant="HB01080"
    dl-product-price="39,90"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/easy-bake-loose-baking-setting-powder-hb00140m?variant=50573329400086"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE1.webp?v=1759866848&width=630 1x,            //hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE1.webp?v=1759866848&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/easy-bake-loose-baking-setting-powder-hb00140m?variant=50573329400086"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE1.webp?v=1759866848&width=630"
          alt="Easy Bake Loose Baking &amp; Setting Powder"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE2.webp?v=1759866849&width=630 1x,              //hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE2.webp?v=1759866849&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE2.webp?v=1759866849&width=630"
            alt=""
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">BEST SELLER</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-template--26760399323414__featured_collection_B3mC3V-10234743849238"
      class="product__info-container"
      data-section="template--26760399323414__featured_collection_B3mC3V"
      data-url="/en-fr/products/easy-bake-loose-baking-setting-powder-hb00140m?variant=50573329400086"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/easy-bake-loose-baking-setting-powder-hb00140m?variant=50573329400086">
          
            <h3 class="h6">Easy Bake Loose Baking &amp; Setting Powder
</h3>
          
        </a>
      </div>
      
      

      <div
        class="product_card_price mb-xs"
        id="price-template--26760399323414__featured_collection_B3mC3V"
        data-url="/en-fr/products/easy-bake-loose-baking-setting-powder-hb00140m?variant=50573329400086"
        role="status"
        
      >


<div
    class="price      price-section-data price--large"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €39,90
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €39,90
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€-39,90
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker">
        
          


<div class="loading__spinner">
  <svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" class="spinner" viewbox="0 0 66 66"><circle stroke-width="6" cx="33" cy="33" r="30" fill="none" class="path"/></svg>

</div>


<link href="//hudabeauty.com/cdn/shop/t/162/assets/product-card-swatches.css?v=48729697193943970631775984107" rel="stylesheet" type="text/css" media="all" />





<div
  class="product-card-swatches featured-carousel"
  data-handle="easy-bake-loose-baking-setting-powder-hb00140m"
>

        

        
        
        
        
        
<div class="product-swatch-new-wrapper">
            <span class="swatch-new-badge">NEW</span>
          <div
            data-id="51086110392598"
            class="product-swatch br-round"
            style="background-color: #ACDDB3; display: flex;"
            aria-label="Matcha Milk Cake"
            title="Matcha Milk Cake"
          ></div>
        
</div>


        

        
        
        
        
        

          <div
            data-id="51059832193302"
            class="product-swatch br-round"
            style="background-color: #EBB9D6; display: flex;"
            aria-label="Ube Birthday Cake"
            title="Ube Birthday Cake"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573329465622"
            class="product-swatch br-round"
            style="background-color: #f8f7eb; display: flex;"
            aria-label="Sugar Cookie"
            title="Sugar Cookie"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573329432854"
            class="product-swatch br-round"
            style="background-color: #f3c8cf; display: flex;"
            aria-label="Cherry Blossom Cake"
            title="Cherry Blossom Cake"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573329400086"
            class="product-swatch br-round"
            style="background-color: #f5c099; display: flex;"
            aria-label="Peach Pie"
            title="Peach Pie"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573329498390"
            class="product-swatch br-round"
            style="background-color: #f1dfca; display: flex;"
            aria-label="Cupcake"
            title="Cupcake"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573329531158"
            class="product-swatch br-round"
            style="background-color: #f5e7cd; display: flex;"
            aria-label="Pound Cake"
            title="Pound Cake"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573329563926"
            class="product-swatch br-round"
            style="background-color: #ede0bc; display: flex;"
            aria-label="Banana Bread"
            title="Banana Bread"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573329596694"
            class="product-swatch br-round"
            style="background-color: #e0c592; display: flex;"
            aria-label="Blondie"
            title="Blondie"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573329629462"
            class="product-swatch br-round"
            style="background-color: #f0d794; display: flex;"
            aria-label="Kunafa"
            title="Kunafa"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573329662230"
            class="product-swatch br-round"
            style="background-color: #bb8c48; display: flex;"
            aria-label="Cinnamon Bun"
            title="Cinnamon Bun"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573329694998"
            class="product-swatch br-round"
            style="background-color: #804920; display: flex;"
            aria-label="Coffee Cake"
            title="Coffee Cake"
          ></div>
        

<div class="no-js-hidden quick-add"><modal-opener data-modal="#QuickAdd-10234743849238">
          <button
            id="-submit"
            type="button"
            name="add"
            class="color-swatch-item br-round featured-card_choose-more-colors"
            aria-haspopup="dialog"
            aria-labelledby="-submit title--10234743849238"
            data-product-url="/en-fr/products/easy-bake-loose-baking-setting-powder-hb00140m?view=quick-view"
            data-handle="easy-bake-loose-baking-setting-powder-hb00140m"
          ><svg aria-hidden="true" width="10" height="11" viewbox="0 0 10 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Plus">
<path id="Vector 4" d="M0 5.5H10" stroke="black"/>
<path id="Vector 3" d="M5 0.5V10.5" stroke="black"/>
</g>
</svg>
</button>
        </modal-opener>
        <quick-add-modal id="QuickAdd-10234743849238" class="quick-add-modal">
          <div
            role="dialog"
            aria-label="Choose options for Easy Bake Loose Baking &amp;amp; Setting Powder"
            aria-modal="true"
            class="quick-add-modal__content global-settings-popup"
            tabindex="-1"
          >
            <button
              id="ModalClose-10234743849238"
              type="button"
              class="popup__close"
              aria-label="Close"
            ><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewbox="0 0 20 19" fill="none">
  <path d="M18.9999 0.5L1.25488 18.245L18.9999 0.5Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
  <path d="M18.745 18.245L1 0.5L18.745 18.245Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
</svg></button>
            <div id="QuickAddInfo-10234743849238" class="quick-add-modal__content-info"></div>
          </div>
        </quick-add-modal></div></div><script type="application/json" data-selected-variant-meta>
  {
    "default_selected_variant": {"id":50573329400086,"title":"Peach Pie","option1":"Peach Pie","option2":null,"option3":null,"sku":"HB01080","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Peach Pie","public_title":"Peach Pie","options":["Peach Pie"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},
    "product": {"id":10234743849238,"title":"Easy Bake Loose Baking \u0026 Setting Powder","handle":"easy-bake-loose-baking-setting-powder-hb00140m","description":"","published_at":"2025-10-05T02:30:01+04:00","created_at":"2025-10-05T02:29:36+04:00","vendor":"Huda Beauty US","type":"","tags":["_okendo:syndication_key:easy-bake-loose-baking-setting-powder-hb00140m","HB"],"price":3990,"price_min":3990,"price_max":3990,"available":true,"price_varies":false,"compare_at_price":null,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":51086110392598,"title":"Matcha Milk Cake","option1":"Matcha Milk Cake","option2":null,"option3":null,"sku":"HB01806","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Matcha Milk Cake","public_title":"Matcha Milk Cake","options":["Matcha Milk Cake"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409281","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":51059832193302,"title":"Ube Birthday Cake","option1":"Ube Birthday Cake","option2":null,"option3":null,"sku":"HB01417","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Ube Birthday Cake","public_title":"Ube Birthday Cake","options":["Ube Birthday Cake"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018406501","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573329465622,"title":"Sugar Cookie","option1":"Sugar Cookie","option2":null,"option3":null,"sku":"HB00145","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Sugar Cookie","public_title":"Sugar Cookie","options":["Sugar Cookie"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573329432854,"title":"Cherry Blossom Cake","option1":"Cherry Blossom Cake","option2":null,"option3":null,"sku":"HB00570","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Cherry Blossom Cake","public_title":"Cherry Blossom Cake","options":["Cherry Blossom Cake"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573329400086,"title":"Peach Pie","option1":"Peach Pie","option2":null,"option3":null,"sku":"HB01080","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Peach Pie","public_title":"Peach Pie","options":["Peach Pie"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573329498390,"title":"Cupcake","option1":"Cupcake","option2":null,"option3":null,"sku":"HB00140","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Cupcake","public_title":"Cupcake","options":["Cupcake"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573329531158,"title":"Pound Cake","option1":"Pound Cake","option2":null,"option3":null,"sku":"HB00141","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Pound Cake","public_title":"Pound Cake","options":["Pound Cake"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573329563926,"title":"Banana Bread","option1":"Banana Bread","option2":null,"option3":null,"sku":"HB00142","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Banana Bread","public_title":"Banana Bread","options":["Banana Bread"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573329596694,"title":"Blondie","option1":"Blondie","option2":null,"option3":null,"sku":"HB00143","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Blondie","public_title":"Blondie","options":["Blondie"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573329629462,"title":"Kunafa","option1":"Kunafa","option2":null,"option3":null,"sku":"HB00146","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Kunafa","public_title":"Kunafa","options":["Kunafa"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573329662230,"title":"Cinnamon Bun","option1":"Cinnamon Bun","option2":null,"option3":null,"sku":"HB00144","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Cinnamon Bun","public_title":"Cinnamon Bun","options":["Cinnamon Bun"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573329694998,"title":"Coffee Cake","option1":"Coffee Cake","option2":null,"option3":null,"sku":"HB00147","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Coffee Cake","public_title":"Coffee Cake","options":["Coffee Cake"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}}],"images":["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE1_a6995b11-65aa-41c9-8b8a-18540ef41440.webp?v=1759616885","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE12_6eefeea2-5f34-4d0b-a669-c197768a6f8e.webp?v=1759616885"],"featured_image":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE1_a6995b11-65aa-41c9-8b8a-18540ef41440.webp?v=1759616885","options":["Shade"],"media":[{"alt":null,"id":42342650052886,"position":1,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE1_a6995b11-65aa-41c9-8b8a-18540ef41440.webp?v=1759616885"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE1_a6995b11-65aa-41c9-8b8a-18540ef41440.webp?v=1759616885","width":3000},{"alt":"Uploaded from images script","id":42342707757334,"position":2,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE12_6eefeea2-5f34-4d0b-a669-c197768a6f8e.webp?v=1759616885"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE12_6eefeea2-5f34-4d0b-a669-c197768a6f8e.webp?v=1759616885","width":3000}],"requires_selling_plan":false,"selling_plan_groups":[{"id":"bc6478a662ffae32b3be35b3fe566fa707984433","name":"Subscribe and Save","options":[{"name":"Delivery every","position":1,"values":["month","2 months","12 months","3 months","6 months","9 months"]}],"selling_plans":[{"id":10626007318,"name":"Delivered every month and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"month"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10626040086,"name":"Delivered every 2 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"2 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10646061334,"name":"Delivered every 12 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"12 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10626072854,"name":"Delivered every 3 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"3 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10626105622,"name":"Delivered every 6 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"6 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10626138390,"name":"Delivered every 9 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"9 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}}],"app_id":"ordergroove-subscribe-and-save"}],"content":""},
    "variants": [
      
{
          "id": 51086110392598,
          "title": "Matcha Milk Cake",
          "available": true,
          "inventory": 1646,
          "max_product_quantity": 5,
          "price": "€39,90",
          "save_price": "€-39,90",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/EASY-BAKE_MATCHA-MILK-CAKE_SHOP-PDP_FINAL_PACKSHOT_1.webp?v=1772447567","\/\/hudabeauty.com\/cdn\/shop\/files\/EB-MATCHA-B_A.webp?v=1774766414",{"alt":"Easy Bake Loose Baking \u0026 Setting Powder Matcha Milk Cake - PDP tile video","id":44563540214038,"position":null,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/8e5ccf388742441f8386de6cb8c8fe18.thumbnail.0000000000.jpg?v=1773569960"},"aspect_ratio":0.563,"duration":86000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8e5ccf388742441f8386de6cb8c8fe18\/8e5ccf388742441f8386de6cb8c8fe18.SD-480p-1.5Mbps-77915441.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8e5ccf388742441f8386de6cb8c8fe18\/8e5ccf388742441f8386de6cb8c8fe18.HD-1080p-7.2Mbps-77915441.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8e5ccf388742441f8386de6cb8c8fe18\/8e5ccf388742441f8386de6cb8c8fe18.HD-720p-4.5Mbps-77915441.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8e5ccf388742441f8386de6cb8c8fe18\/8e5ccf388742441f8386de6cb8c8fe18.m3u8?v=0","width":606}]},{"alt":null,"id":44585102082326,"position":null,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/932173db62524c7abdb28602ca79e414.thumbnail.0000000000.jpg?v=1773834554"},"aspect_ratio":0.563,"duration":35000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/932173db62524c7abdb28602ca79e414\/932173db62524c7abdb28602ca79e414.SD-480p-1.5Mbps-78142374.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/932173db62524c7abdb28602ca79e414\/932173db62524c7abdb28602ca79e414.HD-1080p-7.2Mbps-78142374.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/932173db62524c7abdb28602ca79e414\/932173db62524c7abdb28602ca79e414.HD-720p-4.5Mbps-78142374.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/932173db62524c7abdb28602ca79e414\/932173db62524c7abdb28602ca79e414.m3u8?v=0","width":606}]},{"alt":null,"id":44674959311126,"position":null,"preview_image":{"aspect_ratio":0.563,"height":3840,"width":2160,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/8deb1742819b487292fafd3b1b13995e.thumbnail.0000000000.jpg?v=1774601847"},"aspect_ratio":0.563,"duration":39000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8deb1742819b487292fafd3b1b13995e\/8deb1742819b487292fafd3b1b13995e.SD-480p-1.5Mbps-79614190.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8deb1742819b487292fafd3b1b13995e\/8deb1742819b487292fafd3b1b13995e.HD-1080p-7.2Mbps-79614190.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8deb1742819b487292fafd3b1b13995e\/8deb1742819b487292fafd3b1b13995e.HD-720p-4.5Mbps-79614190.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8deb1742819b487292fafd3b1b13995e\/8deb1742819b487292fafd3b1b13995e.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/EASY-BAKE_MATCHA-MILK-CAKE_SHOP-PDP_FINAL_SHADE-RANGE_1.webp?v=1772447567","\/\/hudabeauty.com\/cdn\/shop\/files\/EASY-BAKE_MATCHA-MILK-CAKE_SHOP-PDP_FINAL_POD-MODEL_1.webp?v=1772447567","\/\/hudabeauty.com\/cdn\/shop\/files\/EASY-BAKE_MATCHA-MILK-CAKE_SHOP-PDP_FINAL_EDUCATION_1.webp?v=1772447567","\/\/hudabeauty.com\/cdn\/shop\/files\/EASY-BAKE_MATCHA-MILK-CAKE_SHOP-PDP_FINAL_CONCERNS_1.webp?v=1772447567","\/\/hudabeauty.com\/cdn\/shop\/files\/EASY-BAKE_MATCHA-MILK-CAKE_SHOP-PDP_FINAL_CLAIM_1.webp?v=1772447567","\/\/hudabeauty.com\/cdn\/shop\/files\/EASY-BAKE_MATCHA-MILK-CAKE_SHOP-PDP_FINAL_IPHONE-B_A-F_1.webp?v=1772447567","\/\/hudabeauty.com\/cdn\/shop\/files\/EASY-BAKE_MATCHA-MILK-CAKE_SHOP-PDP_FINAL_IPHONE-B_A-M_1.webp?v=1772447566"],
              "shortDescription": "Blurs, sets & locks in makeup for an all-day flawless finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 51059832193302,
          "title": "Ube Birthday Cake",
          "available": true,
          "inventory": 1346,
          "max_product_quantity": 5,
          "price": "€39,90",
          "save_price": "€-39,90",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE1_f7a2d3fc-04e4-45e2-b076-399cceafc837.webp?v=1759749397","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE2.webp?v=1759671975",{"alt":"Uploaded video","id":42350025310486,"position":null,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/fe3ab4f77b7947278bfd00bba301013e.thumbnail.0000000000.jpg?v=1759671987"},"aspect_ratio":0.563,"duration":104000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/fe3ab4f77b7947278bfd00bba301013e\/fe3ab4f77b7947278bfd00bba301013e.SD-480p-1.5Mbps-58899729.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/fe3ab4f77b7947278bfd00bba301013e\/fe3ab4f77b7947278bfd00bba301013e.HD-1080p-7.2Mbps-58899729.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/fe3ab4f77b7947278bfd00bba301013e\/fe3ab4f77b7947278bfd00bba301013e.HD-720p-4.5Mbps-58899729.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/fe3ab4f77b7947278bfd00bba301013e\/fe3ab4f77b7947278bfd00bba301013e.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE4.webp?v=1759671975","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE5.webp?v=1759671975","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE6.webp?v=1759671975","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE7.webp?v=1759671975","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE8.webp?v=1759671975","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE9.webp?v=1759671975","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE10.webp?v=1759671975","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE11.webp?v=1759671975","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE12.webp?v=1759671975","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE13.webp?v=1759671975","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE14.webp?v=1759671975"],
              "shortDescription": "Multi-purpose lilac powder that brightens, blurs & color corrects while absorbing oil for a smooth, non-cakey, all-day airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573329465622,
          "title": "Sugar Cookie",
          "available": true,
          "inventory": 179,
          "max_product_quantity": 5,
          "price": "€39,90",
          "save_price": "€-39,90",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-SUGARCOOKIE-TILE1.webp?v=1759866899","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-SUGARCOOKIE-TILE2.webp?v=1759866901",{"alt":"Easy Bake Loose Baking \u0026 Setting Powder - Huda product demo video applying the powder and showing texture","id":42387186188566,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/1d48014013dd489ba4e3577f132811b7.thumbnail.0000000000.jpg?v=1759866926"},"aspect_ratio":0.558,"duration":84000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.SD-480p-1.5Mbps-59052434.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-1080p-7.2Mbps-59052434.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-720p-4.5Mbps-59052434.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-SUGARCOOKIE-TILE4.webp?v=1759866901","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-SUGARCOOKIE-TILE5.webp?v=1759866902","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE5.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-SUGARCOOKIE-TILE7.webp?v=1759866905","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-SUGARCOOKIE-TILE8.webp?v=1759866905","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-SUGARCOOKIE-TILE9.webp?v=1759866906","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-SUGARCOOKIE-TILE10.webp?v=1759866906","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-SUGARCOOKIE-TILE11.webp?v=1759866906","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-SUGARCOOKIE-TILE12.webp?v=1759866908","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-SUGARCOOKIE-TILE13.webp?v=1759866910"],
              "shortDescription": "Blurs, sets & locks in makeup for an all-day flawless finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573329432854,
          "title": "Cherry Blossom Cake",
          "available": true,
          "inventory": 346,
          "max_product_quantity": 5,
          "price": "€39,90",
          "save_price": "€-39,90",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CHERRYBLOSSOMCAKE-TILE1.webp?v=1759866887","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CHERRYBLOSSOMCAKE-TILE2.webp?v=1759866889",{"alt":"Easy Bake Loose Baking \u0026 Setting Powder - Huda product demo video applying the powder and showing texture","id":42387186188566,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/1d48014013dd489ba4e3577f132811b7.thumbnail.0000000000.jpg?v=1759866926"},"aspect_ratio":0.558,"duration":84000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.SD-480p-1.5Mbps-59052434.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-1080p-7.2Mbps-59052434.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-720p-4.5Mbps-59052434.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CHERRYBLOSSOMCAKE-TILE4.webp?v=1759866888","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CHERRYBLOSSOMCAKE-TILE5.webp?v=1759866890","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE5.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CHERRYBLOSSOMCAKE-TILE7.webp?v=1759866894","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CHERRYBLOSSOMCAKE-TILE8.webp?v=1759866893","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CHERRYBLOSSOMCAKE-TILE9.webp?v=1759866895","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CHERRYBLOSSOMCAKE-TILE10.webp?v=1759866896","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CHERRYBLOSSOMCAKE-TILE11.webp?v=1759866896","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CHERRYBLOSSOMCAKE-TILE12.webp?v=1759866895","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CHERRYBLOSSOMCAKE-TILE13.webp?v=1759866896"],
              "shortDescription": "Blurs, sets & locks in makeup for an all-day flawless finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573329400086,
          "title": "Peach Pie",
          "available": true,
          "inventory": 202,
          "max_product_quantity": 5,
          "price": "€39,90",
          "save_price": "€-39,90",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE1.webp?v=1759866848","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE2.webp?v=1759866849",{"alt":"Easy Bake Loose Baking \u0026 Setting Powder - Huda product demo video applying the powder and showing texture","id":42387186188566,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/1d48014013dd489ba4e3577f132811b7.thumbnail.0000000000.jpg?v=1759866926"},"aspect_ratio":0.558,"duration":84000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.SD-480p-1.5Mbps-59052434.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-1080p-7.2Mbps-59052434.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-720p-4.5Mbps-59052434.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE4.webp?v=1759866878","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE5.webp?v=1759866878","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE5.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE7.webp?v=1759866880","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE8.webp?v=1759866880","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE9.webp?v=1759866883","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE10.webp?v=1759866884","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE11.webp?v=1759866884","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE12.webp?v=1759866883","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE13.webp?v=1759866886"],
              "shortDescription": "Blurs, sets & locks in makeup for an all-day flawless finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573329498390,
          "title": "Cupcake",
          "available": true,
          "inventory": 318,
          "max_product_quantity": 5,
          "price": "€39,90",
          "save_price": "€-39,90",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CUPCAKE-TILE1.webp?v=1759866911","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CUPCAKE-TILE2.webp?v=1759866913",{"alt":"Easy Bake Loose Baking \u0026 Setting Powder - Huda product demo video applying the powder and showing texture","id":42387186188566,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/1d48014013dd489ba4e3577f132811b7.thumbnail.0000000000.jpg?v=1759866926"},"aspect_ratio":0.558,"duration":84000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.SD-480p-1.5Mbps-59052434.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-1080p-7.2Mbps-59052434.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-720p-4.5Mbps-59052434.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CUPCAKE-TILE4.webp?v=1759866914","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CUPCAKE-TILE5.webp?v=1759866915","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE5.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CUPCAKE-TILE7.webp?v=1759866917","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CUPCAKE-TILE8.webp?v=1759866918","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CUPCAKE-TILE9.webp?v=1759866919","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CUPCAKE-TILE10.webp?v=1759866920","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CUPCAKE-TILE11.webp?v=1759866921","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CUPCAKE-TILE12.webp?v=1759866920","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CUPCAKE-TILE13.webp?v=1759866922"],
              "shortDescription": "Blurs, sets & locks in makeup for an all-day flawless finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573329531158,
          "title": "Pound Cake",
          "available": true,
          "inventory": 1113,
          "max_product_quantity": 5,
          "price": "€39,90",
          "save_price": "€-39,90",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE1_a4006f92-8df8-4053-a348-ee20d9d347c7.webp?v=1759866924","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE2_c1682253-79f7-4eb2-b40d-a26b2fc87274.webp?v=1759866925",{"alt":"Easy Bake Loose Baking \u0026 Setting Powder - Huda product demo video applying the powder and showing texture","id":42387186188566,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/1d48014013dd489ba4e3577f132811b7.thumbnail.0000000000.jpg?v=1759866926"},"aspect_ratio":0.558,"duration":84000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.SD-480p-1.5Mbps-59052434.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-1080p-7.2Mbps-59052434.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-720p-4.5Mbps-59052434.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE4_e03db4ea-0897-4602-871b-1ab33444d360.webp?v=1759866926","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE5_0a7a7e38-7151-4f27-b1f1-b9478a187d0e.webp?v=1759866927","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE5.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE7_c304a403-3a86-4e77-b328-653bc7e7f9d8.webp?v=1759866929","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE8_0e778256-cf38-4d88-8b06-1987b9031df2.webp?v=1759866930","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE9_33f9a8d1-9f89-410b-8151-bb57a12f0a9e.webp?v=1759866932","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE10_7e601bd6-1dbf-4698-804c-0f5947f33555.webp?v=1759866932","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE11_3f998701-634c-4f6d-8041-cbb32183c76e.webp?v=1759866933","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE12_0e5d2e76-ebb4-46e9-ad2c-cd727b12dbc9.webp?v=1759866933","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE13_6e04ed20-7b7c-4dbd-9de2-62ec38198850.webp?v=1759866934"],
              "shortDescription": "Blurs, sets & locks in makeup for an all-day flawless finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573329563926,
          "title": "Banana Bread",
          "available": true,
          "inventory": 145,
          "max_product_quantity": 5,
          "price": "€39,90",
          "save_price": "€-39,90",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE1.webp?v=1759866935","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE2.webp?v=1759866937",{"alt":"Easy Bake Loose Baking \u0026 Setting Powder - Huda product demo video applying the powder and showing texture","id":42387186188566,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/1d48014013dd489ba4e3577f132811b7.thumbnail.0000000000.jpg?v=1759866926"},"aspect_ratio":0.558,"duration":84000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.SD-480p-1.5Mbps-59052434.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-1080p-7.2Mbps-59052434.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-720p-4.5Mbps-59052434.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE4.webp?v=1759866938","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE5.webp?v=1759866939","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE5.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE7.webp?v=1759866941","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE8.webp?v=1759866942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE9.webp?v=1759866943","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE10.webp?v=1759866944","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE11.webp?v=1759866943","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE12.webp?v=1759866945","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE13.webp?v=1759866945"],
              "shortDescription": "Blurs, sets & locks in makeup for an all-day flawless finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573329596694,
          "title": "Blondie",
          "available": true,
          "inventory": 31,
          "max_product_quantity": 5,
          "price": "€39,90",
          "save_price": "€-39,90",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BLONDIE-TILE1.webp?v=1759866947","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BLONDIE-TILE2.webp?v=1759866949",{"alt":"Easy Bake Loose Baking \u0026 Setting Powder - Huda product demo video applying the powder and showing texture","id":42387186188566,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/1d48014013dd489ba4e3577f132811b7.thumbnail.0000000000.jpg?v=1759866926"},"aspect_ratio":0.558,"duration":84000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.SD-480p-1.5Mbps-59052434.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-1080p-7.2Mbps-59052434.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-720p-4.5Mbps-59052434.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BLONDIE-TILE4.webp?v=1759866950","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BLONDIE-TILE5.webp?v=1759866950","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE5.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE6.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BLONDIE-TILE9.webp?v=1759866954","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BLONDIE-TILE10.webp?v=1759866954","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BLONDIE-TILE11.webp?v=1759866954","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE11.webp?v=1770025693","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BLONDIE-TILE13.webp?v=1759866958"],
              "shortDescription": "Blurs, sets & locks in makeup for an all-day flawless finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573329629462,
          "title": "Kunafa",
          "available": true,
          "inventory": 200,
          "max_product_quantity": 5,
          "price": "€39,90",
          "save_price": "€-39,90",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-KUNAFA-TILE1.webp?v=1759866958","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-KUNAFA-TILE2.webp?v=1759866961",{"alt":"Easy Bake Loose Baking \u0026 Setting Powder - Huda product demo video applying the powder and showing texture","id":42387186188566,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/1d48014013dd489ba4e3577f132811b7.thumbnail.0000000000.jpg?v=1759866926"},"aspect_ratio":0.558,"duration":84000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.SD-480p-1.5Mbps-59052434.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-1080p-7.2Mbps-59052434.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-720p-4.5Mbps-59052434.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-KUNAFA-TILE4.webp?v=1759866962","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-KUNAFA-TILE5.webp?v=1759866962","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE5.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE6.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-KUNAFA-TILE8.webp?v=1759866964","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-KUNAFA-TILE9.webp?v=1759866966","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-KUNAFA-TILE10.webp?v=1759866967","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-KUNAFA-TILE11.webp?v=1759866968","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE11.webp?v=1770025693","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-KUNAFA-TILE13.webp?v=1759866970"],
              "shortDescription": "Blurs, sets & locks in makeup for an all-day flawless finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573329662230,
          "title": "Cinnamon Bun",
          "available": true,
          "inventory": 112,
          "max_product_quantity": 5,
          "price": "€39,90",
          "save_price": "€-39,90",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CINNAMONBUN-TILE1.webp?v=1759866971","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CINNAMONBUN-TILE2.webp?v=1759866974",{"alt":"Easy Bake Loose Baking \u0026 Setting Powder - Huda product demo video applying the powder and showing texture","id":42387186188566,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/1d48014013dd489ba4e3577f132811b7.thumbnail.0000000000.jpg?v=1759866926"},"aspect_ratio":0.558,"duration":84000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.SD-480p-1.5Mbps-59052434.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-1080p-7.2Mbps-59052434.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-720p-4.5Mbps-59052434.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CINNAMONBUN-TILE4.webp?v=1759866975","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CINNAMONBUN-TILE5.webp?v=1759866977","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE5.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE6.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CINNAMONBUN-TILE8.webp?v=1759866979","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CINNAMONBUN-TILE9.webp?v=1759866980","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CINNAMONBUN-TILE10.webp?v=1759866980","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CINNAMONBUN-TILE11.webp?v=1759866983","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE11.webp?v=1770025693","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CINNAMONBUN-TILE13.webp?v=1759866983"],
              "shortDescription": "Blurs, sets & locks in makeup for an all-day flawless finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573329694998,
          "title": "Coffee Cake",
          "available": true,
          "inventory": 402,
          "max_product_quantity": 5,
          "price": "€39,90",
          "save_price": "€-39,90",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE1.webp?v=1770025663","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE2.webp?v=1770025694",{"alt":"Easy Bake Loose Baking \u0026 Setting Powder - Huda product demo video applying the powder and showing texture","id":42387186188566,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/1d48014013dd489ba4e3577f132811b7.thumbnail.0000000000.jpg?v=1759866926"},"aspect_ratio":0.558,"duration":84000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.SD-480p-1.5Mbps-59052434.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-1080p-7.2Mbps-59052434.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-720p-4.5Mbps-59052434.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE4.webp?v=1770025700","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE5.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE6.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE7.webp?v=1770025699","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE8.webp?v=1770025701","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE9.webp?v=1770025698","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE10.webp?v=1770025701","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE11.webp?v=1770025693"],
              "shortDescription": "Blurs, sets & locks in makeup for an all-day flawless finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        }
      
    ]
  }
</script>

          
          
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10234743849238"><div data-oke-reviews-version="0.87.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 4.9 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 98.3516%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 4.9 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">4.9</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"4.9","reviewCount":3336} </script></div></div>
    
        (3336)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB01080" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        











<div  class="back-in-stock-container" style="display: none;"><div class="product-back-in-stock-buttons">
    
    

    
    
  </div></div>

        

         
          
















<div
  
  class="waitlist-container"
  
    style="display: none;"
  
><div class="product-waitlist-buttons">
      
      
        <a href="/en-fr/products/easy-bake-loose-baking-setting-powder-hb00140m?variant=50573329400086" class="button button--primary notify-me-btn">Notify Me</a>
      
    </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="template--26760399323414__featured_collection_B3mC3V"
      data-form-id="product-form-template--26760399323414__featured_collection_B3mC3V"
      dl-product-id="HB01080"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-template--26760399323414__featured_collection_B3mC3V" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="50573329400086"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="202"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <button
              id="ProductSubmitButton-template--26760399323414__featured_collection_B3mC3V"
              data-dl-source="Collection"
              data-url="/en-fr/products/easy-bake-loose-baking-setting-powder-hb00140m"
              type="submit"
              name="add"
              class="product-form__submit button button--full-width button--primary"
              
              
            >
              <span>
                Add to Bag
              </span>
            </button></div><input type="hidden" name="product-id" value="10234743849238" /><input type="hidden" name="section-id" value="template--26760399323414__featured_collection_B3mC3V" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li><li
        id="Slide-template--26760399323414__featured_collection_B3mC3V-8"
        class="grid__item slider__slide"
        
      >
        



  























  

  

  

  

  

  

  

  






























  
  

  
    
    




<section
  class="featured-card-product featured-card-product--new-design"
  
    data-card-design="new"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB01822"
    dl-product-name="Easy Bake Pressed Powder Phone Grip"
    dl-product-brand="Huda Beauty"
    dl-product-category="Powder & Setting Spray"
    dl-product-category2="Face"
    dl-product-category3=""
    dl-product-variant="HB01822"
    dl-product-price="30,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/easy-bake-pressed-powder-phone-grip-hb01821m?variant=50886374523158"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/PDP-PACK-SHOTS-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-PEACH-CUPCAKE-TILE1.webp?v=1772015099&width=630 1x,            //hudabeauty.com/cdn/shop/files/PDP-PACK-SHOTS-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-PEACH-CUPCAKE-TILE1.webp?v=1772015099&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/easy-bake-pressed-powder-phone-grip-hb01821m?variant=50886374523158"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/PDP-PACK-SHOTS-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-PEACH-CUPCAKE-TILE1.webp?v=1772015099&width=630"
          alt="Easy Bake Pressed Powder Phone Grip - PEACH CUPCAKE - Packshot"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-MODEL-TILE2.webp?v=1770040725&width=630 1x,              //hudabeauty.com/cdn/shop/files/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-MODEL-TILE2.webp?v=1770040725&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-MODEL-TILE2.webp?v=1770040725&width=630"
            alt="Easy Bake Pressed Powder Phone Grip lifestyle image showing product in use"
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">NEW</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-template--26760399323414__featured_collection_B3mC3V-10353666228502"
      class="product__info-container"
      data-section="template--26760399323414__featured_collection_B3mC3V"
      data-url="/en-fr/products/easy-bake-pressed-powder-phone-grip-hb01821m?variant=50886374523158"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/easy-bake-pressed-powder-phone-grip-hb01821m?variant=50886374523158">
          
            <h3 class="h6">Easy Bake Pressed Powder Phone Grip
</h3>
          
        </a>
      </div>
      
      

      <div
        class="product_card_price mb-xs"
        id="price-template--26760399323414__featured_collection_B3mC3V"
        data-url="/en-fr/products/easy-bake-pressed-powder-phone-grip-hb01821m?variant=50886374523158"
        role="status"
        
      >


<div
    class="price      price-section-data price--large"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €30,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €30,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€-30,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker">
        
          


<div class="loading__spinner">
  <svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" class="spinner" viewbox="0 0 66 66"><circle stroke-width="6" cx="33" cy="33" r="30" fill="none" class="path"/></svg>

</div>


<link href="//hudabeauty.com/cdn/shop/t/162/assets/product-card-swatches.css?v=48729697193943970631775984107" rel="stylesheet" type="text/css" media="all" />





<div
  class="product-card-swatches featured-carousel"
  data-handle="easy-bake-pressed-powder-phone-grip-hb01821m"
>

        

        
        
        
        
        

          <div
            data-id="50886374424854"
            class="product-swatch br-round disabled-swatch"
            style="background-color: #FCFAF5; display: flex;"
            aria-label="Sugar Cookie Translucent"
            title="Sugar Cookie Translucent"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50886374457622"
            class="product-swatch br-round disabled-swatch"
            style="background-color: #FDE0DD; display: flex;"
            aria-label="Cherry Blossom Cake"
            title="Cherry Blossom Cake"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50886374490390"
            class="product-swatch br-round disabled-swatch"
            style="background-color: #FFF0DE; display: flex;"
            aria-label="Pound Cake"
            title="Pound Cake"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50886374523158"
            class="product-swatch br-round"
            style="background-color: #FFE8DB; display: flex;"
            aria-label="Peach Cupcake"
            title="Peach Cupcake"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50886374555926"
            class="product-swatch br-round"
            style="background-color: #FFD9AD; display: flex;"
            aria-label="Banana Bread"
            title="Banana Bread"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50886374588694"
            class="product-swatch br-round"
            style="background-color: #FACC8C; display: flex;"
            aria-label="Kunafa Blondie"
            title="Kunafa Blondie"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50886374621462"
            class="product-swatch br-round disabled-swatch"
            style="background-color: #DEA171; display: flex;"
            aria-label="Cinnamon Bun"
            title="Cinnamon Bun"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50886374654230"
            class="product-swatch br-round"
            style="background-color: #B87859; display: flex;"
            aria-label="Coco Truffle"
            title="Coco Truffle"
          ></div>
        

<div class="no-js-hidden quick-add"><modal-opener data-modal="#QuickAdd-10353666228502">
          <button
            id="-submit"
            type="button"
            name="add"
            class="color-swatch-item br-round featured-card_choose-more-colors"
            aria-haspopup="dialog"
            aria-labelledby="-submit title--10353666228502"
            data-product-url="/en-fr/products/easy-bake-pressed-powder-phone-grip-hb01821m?view=quick-view"
            data-handle="easy-bake-pressed-powder-phone-grip-hb01821m"
          ><svg aria-hidden="true" width="10" height="11" viewbox="0 0 10 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Plus">
<path id="Vector 4" d="M0 5.5H10" stroke="black"/>
<path id="Vector 3" d="M5 0.5V10.5" stroke="black"/>
</g>
</svg>
</button>
        </modal-opener>
        <quick-add-modal id="QuickAdd-10353666228502" class="quick-add-modal">
          <div
            role="dialog"
            aria-label="Choose options for Easy Bake Pressed Powder Phone Grip"
            aria-modal="true"
            class="quick-add-modal__content global-settings-popup"
            tabindex="-1"
          >
            <button
              id="ModalClose-10353666228502"
              type="button"
              class="popup__close"
              aria-label="Close"
            ><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewbox="0 0 20 19" fill="none">
  <path d="M18.9999 0.5L1.25488 18.245L18.9999 0.5Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
  <path d="M18.745 18.245L1 0.5L18.745 18.245Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
</svg></button>
            <div id="QuickAddInfo-10353666228502" class="quick-add-modal__content-info"></div>
          </div>
        </quick-add-modal></div></div><script type="application/json" data-selected-variant-meta>
  {
    "default_selected_variant": {"id":50886374523158,"title":"Peach Cupcake","option1":"Peach Cupcake","option2":null,"option3":null,"sku":"HB01822","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Pressed Powder Phone Grip - Peach Cupcake","public_title":"Peach Cupcake","options":["Peach Cupcake"],"price":3000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409748","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},
    "product": {"id":10353666228502,"title":"Easy Bake Pressed Powder Phone Grip","handle":"easy-bake-pressed-powder-phone-grip-hb01821m","description":"","published_at":"2026-02-09T14:18:54+04:00","created_at":"2025-12-29T10:24:25+04:00","vendor":"Huda Beauty","type":"","tags":["HB","PhoneGrip"],"price":3000,"price_min":3000,"price_max":3000,"available":true,"price_varies":false,"compare_at_price":null,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":50886374424854,"title":"Sugar Cookie Translucent","option1":"Sugar Cookie Translucent","option2":null,"option3":null,"sku":"HB01826","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"Easy Bake Pressed Powder Phone Grip - Sugar Cookie Translucent","public_title":"Sugar Cookie Translucent","options":["Sugar Cookie Translucent"],"price":3000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409786","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50886374457622,"title":"Cherry Blossom Cake","option1":"Cherry Blossom Cake","option2":null,"option3":null,"sku":"HB01823","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"Easy Bake Pressed Powder Phone Grip - Cherry Blossom Cake","public_title":"Cherry Blossom Cake","options":["Cherry Blossom Cake"],"price":3000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409755","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50886374490390,"title":"Pound Cake","option1":"Pound Cake","option2":null,"option3":null,"sku":"HB01821","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"Easy Bake Pressed Powder Phone Grip - Pound Cake","public_title":"Pound Cake","options":["Pound Cake"],"price":3000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409731","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50886374523158,"title":"Peach Cupcake","option1":"Peach Cupcake","option2":null,"option3":null,"sku":"HB01822","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Pressed Powder Phone Grip - Peach Cupcake","public_title":"Peach Cupcake","options":["Peach Cupcake"],"price":3000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409748","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50886374555926,"title":"Banana Bread","option1":"Banana Bread","option2":null,"option3":null,"sku":"HB01825","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Pressed Powder Phone Grip - Banana Bread","public_title":"Banana Bread","options":["Banana Bread"],"price":3000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409779","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50886374588694,"title":"Kunafa Blondie","option1":"Kunafa Blondie","option2":null,"option3":null,"sku":"HB01827","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Pressed Powder Phone Grip - Kunafa Blondie","public_title":"Kunafa Blondie","options":["Kunafa Blondie"],"price":3000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409793","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50886374621462,"title":"Cinnamon Bun","option1":"Cinnamon Bun","option2":null,"option3":null,"sku":"HB01828","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"Easy Bake Pressed Powder Phone Grip - Cinnamon Bun","public_title":"Cinnamon Bun","options":["Cinnamon Bun"],"price":3000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409809","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50886374654230,"title":"Coco Truffle","option1":"Coco Truffle","option2":null,"option3":null,"sku":"HB01829","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Pressed Powder Phone Grip - Coco Truffle","public_title":"Coco Truffle","options":["Coco Truffle"],"price":3000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409816","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}],"images":["\/\/hudabeauty.com\/cdn\/shop\/files\/EASY_PRESSED_POWDER_AIRBRUSH_KIT-02_1.webp?v=1770289386"],"featured_image":"\/\/hudabeauty.com\/cdn\/shop\/files\/EASY_PRESSED_POWDER_AIRBRUSH_KIT-02_1.webp?v=1770289386","options":["Shade"],"media":[{"alt":"The Ultimate Pressed Kit - Default - phone Grip PackShot","id":44169381937430,"position":1,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/EASY_PRESSED_POWDER_AIRBRUSH_KIT-02_1.webp?v=1770289386"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/EASY_PRESSED_POWDER_AIRBRUSH_KIT-02_1.webp?v=1770289386","width":3000}],"requires_selling_plan":false,"selling_plan_groups":[],"content":""},
    "variants": [
      
{
          "id": 50886374424854,
          "title": "Sugar Cookie Translucent",
          "available": false,
          "inventory": 0,
          "max_product_quantity": 5,
          "price": "€30,00",
          "save_price": "€-30,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-PACK-SHOTS-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SUGAR-COOKIE-TILE1.webp?v=1772014996","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-MODEL-TILE2.webp?v=1770040725",{"alt":"Phone Grip reel video showing Easy Bake Pressed compact attached to the grip, opening and closing the compact and box packaging","id":44073414885654,"position":null,"preview_image":{"aspect_ratio":0.573,"height":2100,"width":1204,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/Screenshot_2026-02-09_at_9.59.05_AM.png?v=1770623973"},"aspect_ratio":0.563,"duration":11860,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.SD-480p-1.5Mbps-68638289.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-1080p-7.2Mbps-68638289.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-720p-4.5Mbps-68638289.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EBP-Phone-grip-2-SUGARCOOKIETRANSLUCENT-TILE4.jpg?v=1770040772","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-INFOGRAPHIC-TILE4.webp?v=1770040744","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-POD-TILE6.webp?v=1770040788","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-FINDER-TILE7.webp?v=1770040801","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-ARM-SWATCH-TILE8.webp?v=1770040824","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-NAV-TILE9.webp?v=1770040847","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-STEPBYSTEP-TILE10.webp?v=1770040861"],
              "shortDescription": "Your favourite Easy Bake Pressed Powder, now as a phone grip for touch-ups anywhere.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50886374457622,
          "title": "Cherry Blossom Cake",
          "available": false,
          "inventory": 0,
          "max_product_quantity": 5,
          "price": "€30,00",
          "save_price": "€-30,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-PACK-SHOTS-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-CHERRY-BLOSSOM-TILE1.webp?v=1772015023","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-MODEL-TILE2.webp?v=1770040725",{"alt":"Phone Grip reel video showing Easy Bake Pressed compact attached to the grip, opening and closing the compact and box packaging","id":44073414885654,"position":null,"preview_image":{"aspect_ratio":0.573,"height":2100,"width":1204,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/Screenshot_2026-02-09_at_9.59.05_AM.png?v=1770623973"},"aspect_ratio":0.563,"duration":11860,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.SD-480p-1.5Mbps-68638289.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-1080p-7.2Mbps-68638289.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-720p-4.5Mbps-68638289.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EBP-PHONE-GRIP-CHERRYBLOSSOMCAKE-TILE4.jpg?v=1769636017","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-3.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-4.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-FINDER-TILE7.webp?v=1770040801","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-ARM-SWATCH-TILE8.webp?v=1770040824","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-NAV-TILE9.webp?v=1770040847","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-STEPBYSTEP-TILE10.webp?v=1770040861"],
              "shortDescription": "Your favourite Easy Bake Pressed Powder, now as a phone grip for touch-ups anywhere.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50886374490390,
          "title": "Pound Cake",
          "available": false,
          "inventory": 0,
          "max_product_quantity": 5,
          "price": "€30,00",
          "save_price": "€-30,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-PACK-SHOTS-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-POUND-CAKE-TILE1.webp?v=1772015068","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-MODEL-TILE2.webp?v=1770040725",{"alt":"Phone Grip reel video showing Easy Bake Pressed compact attached to the grip, opening and closing the compact and box packaging","id":44073414885654,"position":null,"preview_image":{"aspect_ratio":0.573,"height":2100,"width":1204,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/Screenshot_2026-02-09_at_9.59.05_AM.png?v=1770623973"},"aspect_ratio":0.563,"duration":11860,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.SD-480p-1.5Mbps-68638289.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-1080p-7.2Mbps-68638289.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-720p-4.5Mbps-68638289.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EBP-PHONE-GRIP-POUNDCAKE-TILE4.jpg?v=1769636018","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-3.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-4.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-FINDER-TILE7.webp?v=1770040801","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-ARM-SWATCH-TILE8.webp?v=1770040824","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-NAV-TILE9.webp?v=1770040847","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-STEPBYSTEP-TILE10.webp?v=1770040861"],
              "shortDescription": "Your favourite Easy Bake Pressed Powder, now as a phone grip for touch-ups anywhere.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50886374523158,
          "title": "Peach Cupcake",
          "available": true,
          "inventory": 89,
          "max_product_quantity": 5,
          "price": "€30,00",
          "save_price": "€-30,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-PACK-SHOTS-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-PEACH-CUPCAKE-TILE1.webp?v=1772015099","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-MODEL-TILE2.webp?v=1770040725",{"alt":"Phone Grip reel video showing Easy Bake Pressed compact attached to the grip, opening and closing the compact and box packaging","id":44073414885654,"position":null,"preview_image":{"aspect_ratio":0.573,"height":2100,"width":1204,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/Screenshot_2026-02-09_at_9.59.05_AM.png?v=1770623973"},"aspect_ratio":0.563,"duration":11860,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.SD-480p-1.5Mbps-68638289.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-1080p-7.2Mbps-68638289.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-720p-4.5Mbps-68638289.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EBP-PHONE-GRIP-PEACHCUPCAKE-TILE4.jpg?v=1769636017","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-3.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-4.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-FINDER-TILE7.webp?v=1770040801","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-ARM-SWATCH-TILE8.webp?v=1770040824","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-NAV-TILE9.webp?v=1770040847","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-STEPBYSTEP-TILE10.webp?v=1770040861"],
              "shortDescription": "Your favourite Easy Bake Pressed Powder, now as a phone grip for touch-ups anywhere.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50886374555926,
          "title": "Banana Bread",
          "available": true,
          "inventory": 284,
          "max_product_quantity": 5,
          "price": "€30,00",
          "save_price": "€-30,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-PACK-SHOTS-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-BANANA-BREAD-TILE1.webp?v=1772015125","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-MODEL-TILE2.webp?v=1770040725",{"alt":"Phone Grip reel video showing Easy Bake Pressed compact attached to the grip, opening and closing the compact and box packaging","id":44073414885654,"position":null,"preview_image":{"aspect_ratio":0.573,"height":2100,"width":1204,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/Screenshot_2026-02-09_at_9.59.05_AM.png?v=1770623973"},"aspect_ratio":0.563,"duration":11860,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.SD-480p-1.5Mbps-68638289.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-1080p-7.2Mbps-68638289.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-720p-4.5Mbps-68638289.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EBP-PHONE-GRIP-BANANABREAD-TILE4.jpg?v=1769636017","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-3.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-4.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-FINDER-TILE7.webp?v=1770040801","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-ARM-SWATCH-TILE8.webp?v=1770040824","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-NAV-TILE9.webp?v=1770040847","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-STEPBYSTEP-TILE10.webp?v=1770040861"],
              "shortDescription": "Your favourite Easy Bake Pressed Powder, now as a phone grip for touch-ups anywhere.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50886374588694,
          "title": "Kunafa Blondie",
          "available": true,
          "inventory": 61,
          "max_product_quantity": 5,
          "price": "€30,00",
          "save_price": "€-30,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-PACK-SHOTS-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-KUNAFA-BLONDIE-TILE1.webp?v=1772015163","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-MODEL-TILE2.webp?v=1770040725",{"alt":"Phone Grip reel video showing Easy Bake Pressed compact attached to the grip, opening and closing the compact and box packaging","id":44073414885654,"position":null,"preview_image":{"aspect_ratio":0.573,"height":2100,"width":1204,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/Screenshot_2026-02-09_at_9.59.05_AM.png?v=1770623973"},"aspect_ratio":0.563,"duration":11860,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.SD-480p-1.5Mbps-68638289.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-1080p-7.2Mbps-68638289.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-720p-4.5Mbps-68638289.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EBP-PHONE-GRIP-KUNAFABLONDIE-TILE4.jpg?v=1769636018","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-3.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-4.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-FINDER-TILE7.webp?v=1770040801","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-ARM-SWATCH-TILE8.webp?v=1770040824","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-NAV-TILE9.webp?v=1770040847","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-STEPBYSTEP-TILE10.webp?v=1770040861"],
              "shortDescription": "Your favourite Easy Bake Pressed Powder, now as a phone grip for touch-ups anywhere.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50886374621462,
          "title": "Cinnamon Bun",
          "available": false,
          "inventory": 0,
          "max_product_quantity": 5,
          "price": "€30,00",
          "save_price": "€-30,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-PACK-SHOTS-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-CINNAMON-BUN-TILE1.webp?v=1772015196","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-MODEL-TILE2.webp?v=1770040725",{"alt":"Phone Grip reel video showing Easy Bake Pressed compact attached to the grip, opening and closing the compact and box packaging","id":44073414885654,"position":null,"preview_image":{"aspect_ratio":0.573,"height":2100,"width":1204,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/Screenshot_2026-02-09_at_9.59.05_AM.png?v=1770623973"},"aspect_ratio":0.563,"duration":11860,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.SD-480p-1.5Mbps-68638289.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-1080p-7.2Mbps-68638289.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-720p-4.5Mbps-68638289.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EBP-PHONE-GRIP-CINNAMONBUN-TILE4.jpg?v=1769636017","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-3.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-4.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-FINDER-TILE7.webp?v=1770040801","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-ARM-SWATCH-TILE8.webp?v=1770040824","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-NAV-TILE9.webp?v=1770040847","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-STEPBYSTEP-TILE10.webp?v=1770040861"],
              "shortDescription": "Your favourite Easy Bake Pressed Powder, now as a phone grip for touch-ups anywhere.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50886374654230,
          "title": "Coco Truffle",
          "available": true,
          "inventory": 4,
          "max_product_quantity": 5,
          "price": "€30,00",
          "save_price": "€-30,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDPPACK-SHOTS-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-COCO-TRUFFLE-TILE1.webp?v=1772015223","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip-FINAL_PDP-SECTION1-EBP-PHONE-GRIP-MODEL-TILE2.webp?v=1770040725",{"alt":"Phone Grip reel video showing Easy Bake Pressed compact attached to the grip, opening and closing the compact and box packaging","id":44073414885654,"position":null,"preview_image":{"aspect_ratio":0.573,"height":2100,"width":1204,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/Screenshot_2026-02-09_at_9.59.05_AM.png?v=1770623973"},"aspect_ratio":0.563,"duration":11860,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.SD-480p-1.5Mbps-68638289.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-1080p-7.2Mbps-68638289.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.HD-720p-4.5Mbps-68638289.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8b9832ff6ef8491ab1ba7710925049c3\/8b9832ff6ef8491ab1ba7710925049c3.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EBP-PHONE-GRIP-COCOTRUFFLE-TILE4.jpg?v=1769636016","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-3.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/THEULTIMATEPRESSEDPHONEGRIPKIT-TILE-4.webp?v=1769614393","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-FINDER-TILE7.webp?v=1770040801","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-ARM-SWATCH-TILE8.webp?v=1770040824","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-SHADE-NAV-TILE9.webp?v=1770040847","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-Phone-grip--FINAL_PDP-SECTION1-EBP-PHONE-GRIP-STEPBYSTEP-TILE10.webp?v=1770040861"],
              "shortDescription": "Your favourite Easy Bake Pressed Powder, now as a phone grip for touch-ups anywhere.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        }
      
    ]
  }
</script>

          
          
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10353666228502"><div data-oke-reviews-version="0.87.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 4.9 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 98.3516%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 4.9 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">4.9</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"4.9","reviewCount":195} </script></div></div>
    
        (195)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB01822" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        











<div  class="back-in-stock-container" style="display: none;"><div class="product-back-in-stock-buttons">
    
    

    
    
  </div></div>

        

         
          
















<div
  
  class="waitlist-container"
  
    style="display: none;"
  
><div class="product-waitlist-buttons">
      
      
        <a href="/en-fr/products/easy-bake-pressed-powder-phone-grip-hb01821m?variant=50886374523158" class="button button--primary notify-me-btn">Notify Me</a>
      
    </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="template--26760399323414__featured_collection_B3mC3V"
      data-form-id="product-form-template--26760399323414__featured_collection_B3mC3V"
      dl-product-id="HB01822"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-template--26760399323414__featured_collection_B3mC3V" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="50886374523158"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="89"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <button
              id="ProductSubmitButton-template--26760399323414__featured_collection_B3mC3V"
              data-dl-source="Collection"
              data-url="/en-fr/products/easy-bake-pressed-powder-phone-grip-hb01821m"
              type="submit"
              name="add"
              class="product-form__submit button button--full-width button--primary"
              
              
            >
              <span>
                Add to Bag
              </span>
            </button></div><input type="hidden" name="product-id" value="10353666228502" /><input type="hidden" name="section-id" value="template--26760399323414__featured_collection_B3mC3V" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li></ul><div class="slider-buttons">
      <div class="slider-button-wrapper">
        <button
          type="button"
          class="slider-button slider-button--prev"
          name="previous"
          aria-label="Slide left"
        >
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewbox="0 0 20 19" fill="none">
  <g xmlns="http://www.w3.org/2000/svg" id="Arrow">
    <path id="Vector" d="M11.75 15L17.25 8.9M17.25 10L11.75 4M17.25 9.5L0.750001 9.5" stroke="white" stroke-width="2"/>
</g>
</svg></span>
        </button>
      </div>
      <div class="slider-counter caption">
        <span class="slider-counter--current">1</span>
        <span aria-hidden="true"> / </span>
        <span class="visually-hidden">of</span>
        <span class="slider-counter--total">3</span>
      </div>
      <div class="slider-button-wrapper">
        <button
          type="button"
          class="slider-button slider-button--next"
          name="next"
          aria-label="Slide right"
        >
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewbox="0 0 20 19" fill="none">
  <g xmlns="http://www.w3.org/2000/svg" id="Arrow">
    <path id="Vector" d="M11.75 15L17.25 8.9M17.25 10L11.75 4M17.25 9.5L0.750001 9.5" stroke="white" stroke-width="2"/>
</g>
</svg></span>
        </button>
      </div>
    </div></slider-component>

        </div>
      
    
      
      
        <template
          data-tab="collection-collection_Ab4Rke"
          id="template-collection-collection_Ab4Rke"
        >
          <div class="tab-content" data-tab="collection-collection_Ab4Rke" id="collection-collection_Ab4Rke">
            <slider-component
  class="dl-slider slider-mobile-gutter slider-wrapper slider-component-desktop"
><ul
    id="Slider-template--26760399323414__featured_collection_B3mC3V"
    data-id="template--26760399323414__featured_collection_B3mC3V"
    class="grid product-grid contains-card contains-card--product contains-card--standard  slider slider--desktop slider--tablet grid--peek"
    role="list"
    aria-label="Slider"
  >
    
<li
        id="Slide-template--26760399323414__featured_collection_B3mC3V-1"
        class="grid__item slider__slide"
        
      >
        



  







  




      
      
















  

  

  

  

  

  

  

  






























  
  

  
    
    




<section
  class="featured-card-product featured-card-product--new-design"
  
    data-card-design="new"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB01500"
    dl-product-name="Easy Bake Pressed Powder"
    dl-product-brand="Huda Beauty"
    dl-product-category="Powder & Setting Spray"
    dl-product-category2="Face"
    dl-product-category3=""
    dl-product-variant="HB01500"
    dl-product-price="39,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/easy-bake-pressed-powder-hb01500m?variant=50844655616278"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1_2.jpg?v=1766386817&width=630 1x,            //hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1_2.jpg?v=1766386817&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/easy-bake-pressed-powder-hb01500m?variant=50844655616278"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1_2.jpg?v=1766386817&width=630"
          alt="Easy Bake Pressed Powder Peach Cupcake compact pressed powder in a black case"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE4.jpg?v=1766386831&width=630 1x,              //hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE4.jpg?v=1766386831&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE4.jpg?v=1766386831&width=630"
            alt="Easy Bake Pressed Powder Peach Cupcake with and without application showing airbrushed finish after 12 hours"
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">NEW</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-template--26760399323414__featured_collection_B3mC3V-10333579149590"
      class="product__info-container"
      data-section="template--26760399323414__featured_collection_B3mC3V"
      data-url="/en-fr/products/easy-bake-pressed-powder-hb01500m?variant=50844655616278"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/easy-bake-pressed-powder-hb01500m?variant=50844655616278">
          
            <h3 class="h6">Easy Bake Pressed Powder
</h3>
          
        </a>
      </div>
      
      

      <div
        class="product_card_price mb-xs"
        id="price-template--26760399323414__featured_collection_B3mC3V"
        data-url="/en-fr/products/easy-bake-pressed-powder-hb01500m?variant=50844655616278"
        role="status"
        
      >


<div
    class="price      price-section-data price--large"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €39,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €39,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€-39,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker">
        
          


<div class="loading__spinner">
  <svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" class="spinner" viewbox="0 0 66 66"><circle stroke-width="6" cx="33" cy="33" r="30" fill="none" class="path"/></svg>

</div>


<link href="//hudabeauty.com/cdn/shop/t/162/assets/product-card-swatches.css?v=48729697193943970631775984107" rel="stylesheet" type="text/css" media="all" />





<div
  class="product-card-swatches featured-carousel"
  data-handle="easy-bake-pressed-powder-hb01500m"
>

        

        
        
        
        
        

          <div
            data-id="50844655780118"
            class="product-swatch br-round"
            style="background-color: #FCFAF5; display: flex;"
            aria-label="Sugar Cookie Translucent"
            title="Sugar Cookie Translucent"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50844655747350"
            class="product-swatch br-round"
            style="background-color: #FDE0DD; display: flex;"
            aria-label="Cherry Blossom Cake"
            title="Cherry Blossom Cake"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50844655583510"
            class="product-swatch br-round"
            style="background-color: #FFF0DE; display: flex;"
            aria-label="Pound Cake"
            title="Pound Cake"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50844655616278"
            class="product-swatch br-round"
            style="background-color: #FFE8DB; display: flex;"
            aria-label="Peach Cupcake"
            title="Peach Cupcake"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50844655649046"
            class="product-swatch br-round"
            style="background-color: #FFD9AD; display: flex;"
            aria-label="Banana Bread"
            title="Banana Bread"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50844655681814"
            class="product-swatch br-round"
            style="background-color: #FACC8C; display: flex;"
            aria-label="Kunafa Blondie"
            title="Kunafa Blondie"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50844655714582"
            class="product-swatch br-round"
            style="background-color: #DEA171; display: flex;"
            aria-label="Cinnamon Bun"
            title="Cinnamon Bun"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50844655812886"
            class="product-swatch br-round"
            style="background-color: #B87859; display: flex;"
            aria-label="Coco Truffle"
            title="Coco Truffle"
          ></div>
        

<div class="no-js-hidden quick-add"><modal-opener data-modal="#QuickAdd-10333579149590">
          <button
            id="-submit"
            type="button"
            name="add"
            class="color-swatch-item br-round featured-card_choose-more-colors"
            aria-haspopup="dialog"
            aria-labelledby="-submit title--10333579149590"
            data-product-url="/en-fr/products/easy-bake-pressed-powder-hb01500m?view=quick-view"
            data-handle="easy-bake-pressed-powder-hb01500m"
          ><svg aria-hidden="true" width="10" height="11" viewbox="0 0 10 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Plus">
<path id="Vector 4" d="M0 5.5H10" stroke="black"/>
<path id="Vector 3" d="M5 0.5V10.5" stroke="black"/>
</g>
</svg>
</button>
        </modal-opener>
        <quick-add-modal id="QuickAdd-10333579149590" class="quick-add-modal">
          <div
            role="dialog"
            aria-label="Choose options for Easy Bake Pressed Powder"
            aria-modal="true"
            class="quick-add-modal__content global-settings-popup"
            tabindex="-1"
          >
            <button
              id="ModalClose-10333579149590"
              type="button"
              class="popup__close"
              aria-label="Close"
            ><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewbox="0 0 20 19" fill="none">
  <path d="M18.9999 0.5L1.25488 18.245L18.9999 0.5Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
  <path d="M18.745 18.245L1 0.5L18.745 18.245Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
</svg></button>
            <div id="QuickAddInfo-10333579149590" class="quick-add-modal__content-info"></div>
          </div>
        </quick-add-modal></div></div><script type="application/json" data-selected-variant-meta>
  {
    "default_selected_variant": {"id":50844655616278,"title":"Peach Cupcake","option1":"Peach Cupcake","option2":null,"option3":null,"sku":"HB01500","requires_shipping":true,"taxable":true,"featured_image":{"id":53632378700054,"product_id":10333579149590,"position":7,"created_at":"2025-12-22T11:00:15+04:00","updated_at":"2025-12-22T11:00:17+04:00","alt":"Easy Bake Pressed Powder Peach Cupcake compact pressed powder in a black case","width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1_2.jpg?v=1766386817","variant_ids":[50844655616278]},"available":true,"name":"Easy Bake Pressed Powder - Peach Cupcake","public_title":"Peach Cupcake","options":["Peach Cupcake"],"price":3900,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408475","featured_media":{"alt":"Easy Bake Pressed Powder Peach Cupcake compact pressed powder in a black case","id":43542466003222,"position":7,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1_2.jpg?v=1766386817"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},
    "product": {"id":10333579149590,"title":"Easy Bake Pressed Powder","handle":"easy-bake-pressed-powder-hb01500m","description":"","published_at":"2025-12-24T20:48:18+04:00","created_at":"2025-12-14T15:26:41+04:00","vendor":"Huda Beauty","type":"","tags":["HB"],"price":3900,"price_min":3900,"price_max":3900,"available":true,"price_varies":false,"compare_at_price":null,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":50844655780118,"title":"Sugar Cookie Translucent","option1":"Sugar Cookie Translucent","option2":null,"option3":null,"sku":"HB01505","requires_shipping":true,"taxable":true,"featured_image":{"id":53632603291926,"product_id":10333579149590,"position":9,"created_at":"2025-12-22T11:24:32+04:00","updated_at":"2025-12-22T11:24:33+04:00","alt":"Easy Bake Pressed Powder Sugar Cookie Translucent compact pressed powder in a black case","width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE1.jpg?v=1766388273","variant_ids":[50844655780118]},"available":true,"name":"Easy Bake Pressed Powder - Sugar Cookie Translucent","public_title":"Sugar Cookie Translucent","options":["Sugar Cookie Translucent"],"price":3900,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408529","featured_media":{"alt":"Easy Bake Pressed Powder Sugar Cookie Translucent compact pressed powder in a black case","id":43542689677590,"position":9,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE1.jpg?v=1766388273"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50844655747350,"title":"Cherry Blossom Cake","option1":"Cherry Blossom Cake","option2":null,"option3":null,"sku":"HB01504","requires_shipping":true,"taxable":true,"featured_image":{"id":53595328119062,"product_id":10333579149590,"position":8,"created_at":"2025-12-20T00:19:52+04:00","updated_at":"2025-12-20T00:19:55+04:00","alt":"Easy Bake Pressed Powder Cherry Blossom Cake compact pressed powder in a black case","width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE1.jpg?v=1766175595","variant_ids":[50844655747350]},"available":true,"name":"Easy Bake Pressed Powder - Cherry Blossom Cake","public_title":"Cherry Blossom Cake","options":["Cherry Blossom Cake"],"price":3900,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408512","featured_media":{"alt":"Easy Bake Pressed Powder Cherry Blossom Cake compact pressed powder in a black case","id":43512109236502,"position":8,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE1.jpg?v=1766175595"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50844655583510,"title":"Pound Cake","option1":"Pound Cake","option2":null,"option3":null,"sku":"HB01499","requires_shipping":true,"taxable":true,"featured_image":{"id":53632297992470,"product_id":10333579149590,"position":4,"created_at":"2025-12-22T10:51:40+04:00","updated_at":"2025-12-22T10:51:42+04:00","alt":"Easy Bake Pressed Powder Pound Cake compact pressed powder in a black case","width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE1_aa06a46a-1194-463b-916a-ee5e7a463cb7.jpg?v=1766386302","variant_ids":[50844655583510]},"available":true,"name":"Easy Bake Pressed Powder - Pound Cake","public_title":"Pound Cake","options":["Pound Cake"],"price":3900,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408468","featured_media":{"alt":"Easy Bake Pressed Powder Pound Cake compact pressed powder in a black case","id":43542386934038,"position":4,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE1_aa06a46a-1194-463b-916a-ee5e7a463cb7.jpg?v=1766386302"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50844655616278,"title":"Peach Cupcake","option1":"Peach Cupcake","option2":null,"option3":null,"sku":"HB01500","requires_shipping":true,"taxable":true,"featured_image":{"id":53632378700054,"product_id":10333579149590,"position":7,"created_at":"2025-12-22T11:00:15+04:00","updated_at":"2025-12-22T11:00:17+04:00","alt":"Easy Bake Pressed Powder Peach Cupcake compact pressed powder in a black case","width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1_2.jpg?v=1766386817","variant_ids":[50844655616278]},"available":true,"name":"Easy Bake Pressed Powder - Peach Cupcake","public_title":"Peach Cupcake","options":["Peach Cupcake"],"price":3900,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408475","featured_media":{"alt":"Easy Bake Pressed Powder Peach Cupcake compact pressed powder in a black case","id":43542466003222,"position":7,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1_2.jpg?v=1766386817"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50844655649046,"title":"Banana Bread","option1":"Banana Bread","option2":null,"option3":null,"sku":"HB01501","requires_shipping":true,"taxable":true,"featured_image":{"id":53595418722582,"product_id":10333579149590,"position":6,"created_at":"2025-12-20T00:25:15+04:00","updated_at":"2025-12-20T00:25:16+04:00","alt":"Easy Bake Pressed Powder Banana Bread compact pressed powder in a black case","width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE1.jpg?v=1766175916","variant_ids":[50844655649046]},"available":true,"name":"Easy Bake Pressed Powder - Banana Bread","public_title":"Banana Bread","options":["Banana Bread"],"price":3900,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408482","featured_media":{"alt":"Easy Bake Pressed Powder Banana Bread compact pressed powder in a black case","id":43512188698902,"position":6,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE1.jpg?v=1766175916"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50844655681814,"title":"Kunafa Blondie","option1":"Kunafa Blondie","option2":null,"option3":null,"sku":"HB01502","requires_shipping":true,"taxable":true,"featured_image":{"id":53595493826838,"product_id":10333579149590,"position":3,"created_at":"2025-12-20T00:31:01+04:00","updated_at":"2025-12-20T00:31:03+04:00","alt":"Easy Bake Pressed Powder Kunafa Blondie compact pressed powder in a black case","width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE1.jpg?v=1766176263","variant_ids":[50844655681814]},"available":true,"name":"Easy Bake Pressed Powder - Kunafa Blondie","public_title":"Kunafa Blondie","options":["Kunafa Blondie"],"price":3900,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408499","featured_media":{"alt":"Easy Bake Pressed Powder Kunafa Blondie compact pressed powder in a black case","id":43512250728726,"position":3,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE1.jpg?v=1766176263"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50844655714582,"title":"Cinnamon Bun","option1":"Cinnamon Bun","option2":null,"option3":null,"sku":"HB01503","requires_shipping":true,"taxable":true,"featured_image":{"id":53632566558998,"product_id":10333579149590,"position":5,"created_at":"2025-12-22T11:20:23+04:00","updated_at":"2025-12-22T11:20:25+04:00","alt":"Easy Bake Pressed Powder Cinnamon Bun compact pressed powder in a black case","width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE1.jpg?v=1766388025","variant_ids":[50844655714582]},"available":true,"name":"Easy Bake Pressed Powder - Cinnamon Bun","public_title":"Cinnamon Bun","options":["Cinnamon Bun"],"price":3900,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408505","featured_media":{"alt":"Easy Bake Pressed Powder Cinnamon Bun compact pressed powder in a black case","id":43542653075734,"position":5,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE1.jpg?v=1766388025"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50844655812886,"title":"Coco Truffle","option1":"Coco Truffle","option2":null,"option3":null,"sku":"HB01535","requires_shipping":true,"taxable":true,"featured_image":{"id":53632648380694,"product_id":10333579149590,"position":2,"created_at":"2025-12-22T11:29:01+04:00","updated_at":"2025-12-22T11:29:03+04:00","alt":"Easy Bake Pressed Powder Coco Truffle compact pressed powder in a black case","width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE1.jpg?v=1766388543","variant_ids":[50844655812886]},"available":true,"name":"Easy Bake Pressed Powder - Coco Truffle","public_title":"Coco Truffle","options":["Coco Truffle"],"price":3900,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408536","featured_media":{"alt":"Easy Bake Pressed Powder Coco Truffle compact pressed powder in a black case","id":43542734471446,"position":2,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE1.jpg?v=1766388543"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}],"images":["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1.jpg?v=1766177190","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE1.jpg?v=1766388543","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE1.jpg?v=1766176263","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE1_aa06a46a-1194-463b-916a-ee5e7a463cb7.jpg?v=1766386302","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE1.jpg?v=1766388025","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE1.jpg?v=1766175916","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1_2.jpg?v=1766386817","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE1.jpg?v=1766175595","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE1.jpg?v=1766388273"],"featured_image":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1.jpg?v=1766177190","options":["Shade"],"media":[{"alt":null,"id":43512422236438,"position":1,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1.jpg?v=1766177190"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1.jpg?v=1766177190","width":3000},{"alt":"Easy Bake Pressed Powder Coco Truffle compact pressed powder in a black case","id":43542734471446,"position":2,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE1.jpg?v=1766388543"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE1.jpg?v=1766388543","width":3000},{"alt":"Easy Bake Pressed Powder Kunafa Blondie compact pressed powder in a black case","id":43512250728726,"position":3,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE1.jpg?v=1766176263"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE1.jpg?v=1766176263","width":3000},{"alt":"Easy Bake Pressed Powder Pound Cake compact pressed powder in a black case","id":43542386934038,"position":4,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE1_aa06a46a-1194-463b-916a-ee5e7a463cb7.jpg?v=1766386302"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE1_aa06a46a-1194-463b-916a-ee5e7a463cb7.jpg?v=1766386302","width":3000},{"alt":"Easy Bake Pressed Powder Cinnamon Bun compact pressed powder in a black case","id":43542653075734,"position":5,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE1.jpg?v=1766388025"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE1.jpg?v=1766388025","width":3000},{"alt":"Easy Bake Pressed Powder Banana Bread compact pressed powder in a black case","id":43512188698902,"position":6,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE1.jpg?v=1766175916"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE1.jpg?v=1766175916","width":3000},{"alt":"Easy Bake Pressed Powder Peach Cupcake compact pressed powder in a black case","id":43542466003222,"position":7,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1_2.jpg?v=1766386817"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1_2.jpg?v=1766386817","width":3000},{"alt":"Easy Bake Pressed Powder Cherry Blossom Cake compact pressed powder in a black case","id":43512109236502,"position":8,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE1.jpg?v=1766175595"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE1.jpg?v=1766175595","width":3000},{"alt":"Easy Bake Pressed Powder Sugar Cookie Translucent compact pressed powder in a black case","id":43542689677590,"position":9,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE1.jpg?v=1766388273"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE1.jpg?v=1766388273","width":3000}],"requires_selling_plan":false,"selling_plan_groups":[],"content":""},
    "variants": [
      
{
          "id": 50844655780118,
          "title": "Sugar Cookie Translucent",
          "available": true,
          "inventory": 463,
          "max_product_quantity": 5,
          "price": "€39,00",
          "save_price": "€-39,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE1.jpg?v=1766388273","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE4.jpg?v=1766388291",{"alt":"Easy Bake Pressed Powder application tutorial video demonstrating pressed powder use","id":43764305723670,"position":null,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/cd9f32dee96e448ca14bae8b54a64740.thumbnail.0000000000.jpg?v=1767869539"},"aspect_ratio":0.563,"duration":108000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.SD-480p-1.5Mbps-66584999.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-1080p-7.2Mbps-66584999.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-720p-4.5Mbps-66584999.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE5.jpg?v=1766388295","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE6.jpg?v=1766388291","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE2.jpg?v=1766388299","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE7.jpg?v=1766388307","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE8.jpg?v=1766388286","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE9.jpg?v=1766388307","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE10.jpg?v=1766388276","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE11.jpg?v=1766388403","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-SUGARCOOKIETRANSLUCENT-TILE12.jpg?v=1766388402"],
              "shortDescription": "Super fine pressed powder with 12hr shine control for a non-caking airbrush matte finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50844655747350,
          "title": "Cherry Blossom Cake",
          "available": true,
          "inventory": 2420,
          "max_product_quantity": 5,
          "price": "€39,00",
          "save_price": "€-39,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE1.jpg?v=1766175595","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE4.jpg?v=1766175599",{"alt":"Easy Bake Pressed Powder application tutorial video demonstrating pressed powder use","id":43764305723670,"position":null,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/cd9f32dee96e448ca14bae8b54a64740.thumbnail.0000000000.jpg?v=1767869539"},"aspect_ratio":0.563,"duration":108000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.SD-480p-1.5Mbps-66584999.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-1080p-7.2Mbps-66584999.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-720p-4.5Mbps-66584999.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE5.jpg?v=1766175602","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE6.jpg?v=1766175599","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE2.jpg?v=1766175603","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE7.jpg?v=1766175603","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE8.jpg?v=1766175598","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE9.jpg?v=1766175603","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE10.jpg?v=1766175593","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE11.jpg?v=1766175602","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CHERRYBLOSSOMCAKE-TILE12.jpg?v=1766175599"],
              "shortDescription": "Super fine pressed powder with 12hr shine control for a non-caking airbrush matte finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50844655583510,
          "title": "Pound Cake",
          "available": true,
          "inventory": 3874,
          "max_product_quantity": 5,
          "price": "€39,00",
          "save_price": "€-39,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE1_aa06a46a-1194-463b-916a-ee5e7a463cb7.jpg?v=1766386302","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE4.jpg?v=1766386313",{"alt":"Easy Bake Pressed Powder application tutorial video demonstrating pressed powder use","id":43764305723670,"position":null,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/cd9f32dee96e448ca14bae8b54a64740.thumbnail.0000000000.jpg?v=1767869539"},"aspect_ratio":0.563,"duration":108000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.SD-480p-1.5Mbps-66584999.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-1080p-7.2Mbps-66584999.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-720p-4.5Mbps-66584999.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE5.jpg?v=1766386317","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE6.jpg?v=1766386314","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE2.jpg?v=1766386318","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE7.jpg?v=1766386320","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE8.jpg?v=1766386308","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE9.jpg?v=1766386321","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE10_836b9c9c-a578-4ea7-aaab-28a2d44d5134.jpg?v=1766386302","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE11.jpg?v=1766386318","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-POUNDCAKE-TILE12.jpg?v=1766386312"],
              "shortDescription": "Super fine pressed powder with 12hr shine control for a non-caking airbrush matte finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50844655616278,
          "title": "Peach Cupcake",
          "available": true,
          "inventory": 2330,
          "max_product_quantity": 5,
          "price": "€39,00",
          "save_price": "€-39,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE1_2.jpg?v=1766386817","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE4.jpg?v=1766386831",{"alt":"Easy Bake Pressed Powder application tutorial video demonstrating pressed powder use","id":43764305723670,"position":null,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/cd9f32dee96e448ca14bae8b54a64740.thumbnail.0000000000.jpg?v=1767869539"},"aspect_ratio":0.563,"duration":108000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.SD-480p-1.5Mbps-66584999.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-1080p-7.2Mbps-66584999.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-720p-4.5Mbps-66584999.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE5.jpg?v=1766386849","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE6.jpg?v=1766386833","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE2.jpg?v=1766386853","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE7.jpg?v=1766386864","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE8.jpg?v=1766386828","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE9.jpg?v=1766386864","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE10.jpg?v=1766386816","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE11.jpg?v=1766386856","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-PEACHCUPCAKE-TILE12.jpg?v=1766386832"],
              "shortDescription": "Super fine pressed powder with 12hr shine control for a non-caking airbrush matte finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50844655649046,
          "title": "Banana Bread",
          "available": true,
          "inventory": 1143,
          "max_product_quantity": 5,
          "price": "€39,00",
          "save_price": "€-39,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE1.jpg?v=1766175916","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE4.jpg?v=1766175919",{"alt":"Easy Bake Pressed Powder application tutorial video demonstrating pressed powder use","id":43764305723670,"position":null,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/cd9f32dee96e448ca14bae8b54a64740.thumbnail.0000000000.jpg?v=1767869539"},"aspect_ratio":0.563,"duration":108000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.SD-480p-1.5Mbps-66584999.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-1080p-7.2Mbps-66584999.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-720p-4.5Mbps-66584999.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE5.jpg?v=1766175921","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE6.jpg?v=1766175919","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE2.jpg?v=1766175922","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE7.jpg?v=1766175921","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE8.jpg?v=1766387060","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE9.jpg?v=1766387066","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE10.jpg?v=1766175916","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE11.jpg?v=1766175920","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-BANANABREAD-TILE12.jpg?v=1766175918"],
              "shortDescription": "Super fine pressed powder with 12hr shine control for a non-caking airbrush matte finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50844655681814,
          "title": "Kunafa Blondie",
          "available": true,
          "inventory": 502,
          "max_product_quantity": 5,
          "price": "€39,00",
          "save_price": "€-39,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE1.jpg?v=1766176263","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE4.jpg?v=1766387681",{"alt":"Easy Bake Pressed Powder application tutorial video demonstrating pressed powder use","id":43764305723670,"position":null,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/cd9f32dee96e448ca14bae8b54a64740.thumbnail.0000000000.jpg?v=1767869539"},"aspect_ratio":0.563,"duration":108000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.SD-480p-1.5Mbps-66584999.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-1080p-7.2Mbps-66584999.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-720p-4.5Mbps-66584999.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE5.jpg?v=1766176269","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE6.jpg?v=1766387681","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE2.jpg?v=1766387682","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE7.jpg?v=1766176272","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE8.jpg?v=1766176264","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE9.jpg?v=1766176274","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE10.jpg?v=1766387597","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE11.jpg?v=1766387604","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-KUNAFABLONDIE-TILE12.jpg?v=1766387603"],
              "shortDescription": "Super fine pressed powder with 12hr shine control for a non-caking airbrush matte finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50844655714582,
          "title": "Cinnamon Bun",
          "available": true,
          "inventory": 33,
          "max_product_quantity": 5,
          "price": "€39,00",
          "save_price": "€-39,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE1.jpg?v=1766388025","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE4.jpg?v=1766388041",{"alt":"Easy Bake Pressed Powder application tutorial video demonstrating pressed powder use","id":43764305723670,"position":null,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/cd9f32dee96e448ca14bae8b54a64740.thumbnail.0000000000.jpg?v=1767869539"},"aspect_ratio":0.563,"duration":108000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.SD-480p-1.5Mbps-66584999.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-1080p-7.2Mbps-66584999.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-720p-4.5Mbps-66584999.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE5.jpg?v=1766388055","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE6.jpg?v=1766388043","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE2.jpg?v=1766388064","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE7.jpg?v=1766388065","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE8.jpg?v=1766388034","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE9.jpg?v=1766388065","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE10.jpg?v=1766388017","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE11.jpg?v=1766388061","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-CINNAMONBUN-TILE12.jpg?v=1766388043"],
              "shortDescription": "Super fine pressed powder with 12hr shine control for a non-caking airbrush matte finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50844655812886,
          "title": "Coco Truffle",
          "available": true,
          "inventory": 41,
          "max_product_quantity": 5,
          "price": "€39,00",
          "save_price": "€-39,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE1.jpg?v=1766388543","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE4_1.jpg?v=1766388552",{"alt":"Easy Bake Pressed Powder application tutorial video demonstrating pressed powder use","id":43764305723670,"position":null,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/cd9f32dee96e448ca14bae8b54a64740.thumbnail.0000000000.jpg?v=1767869539"},"aspect_ratio":0.563,"duration":108000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.SD-480p-1.5Mbps-66584999.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-1080p-7.2Mbps-66584999.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.HD-720p-4.5Mbps-66584999.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/cd9f32dee96e448ca14bae8b54a64740\/cd9f32dee96e448ca14bae8b54a64740.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE5_1.jpg?v=1766388556","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE6.jpg?v=1766388553","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE2.jpg?v=1766388560","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE7.jpg?v=1766388563","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE8.jpg?v=1766388548","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE9_1.jpg?v=1766388563","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE10.jpg?v=1766388539","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE11.jpg?v=1766388561","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKEPRESSEDPOWDER-COCOTRUFFLE-TILE12.jpg?v=1766388557"],
              "shortDescription": "Super fine pressed powder with 12hr shine control for a non-caking airbrush matte finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        }
      
    ]
  }
</script>

          
          
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10333579149590"><div data-oke-reviews-version="0.87.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 4.7 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 95.0549%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 4.7 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">4.7</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"4.7","reviewCount":389} </script></div></div>
    
        (389)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB01500" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        











<div  class="back-in-stock-container" style="display: none;"><div class="product-back-in-stock-buttons">
    
    

    
    
  </div></div>

        

         
          
















<div
  
  class="waitlist-container"
  
    style="display: none;"
  
><div class="product-waitlist-buttons">
      
      
        <a href="/en-fr/products/easy-bake-pressed-powder-hb01500m?variant=50844655616278" class="button button--primary notify-me-btn">Notify Me</a>
      
    </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="template--26760399323414__featured_collection_B3mC3V"
      data-form-id="product-form-template--26760399323414__featured_collection_B3mC3V"
      dl-product-id="HB01500"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-template--26760399323414__featured_collection_B3mC3V" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="50844655616278"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="2330"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <button
              id="ProductSubmitButton-template--26760399323414__featured_collection_B3mC3V"
              data-dl-source="Collection"
              data-url="/en-fr/products/easy-bake-pressed-powder-hb01500m"
              type="submit"
              name="add"
              class="product-form__submit button button--full-width button--primary"
              
              
            >
              <span>
                Add to Bag
              </span>
            </button></div><input type="hidden" name="product-id" value="10333579149590" /><input type="hidden" name="section-id" value="template--26760399323414__featured_collection_B3mC3V" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li><li
        id="Slide-template--26760399323414__featured_collection_B3mC3V-2"
        class="grid__item slider__slide"
        
      >
        



  







  





      
      
















  

  

  

  

  

  

  

  

  

  

  

  






























  
  

  
    
    




<section
  class="featured-card-product featured-card-product--new-design"
  
    data-card-design="new"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB01080"
    dl-product-name="Easy Bake Loose Baking & Setting Powder"
    dl-product-brand="Huda Beauty US"
    dl-product-category="Powder & Setting Spray"
    dl-product-category2="Face"
    dl-product-category3=""
    dl-product-variant="HB01080"
    dl-product-price="39,90"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/easy-bake-loose-baking-setting-powder-hb00140m?variant=50573329400086"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE1.webp?v=1759866848&width=630 1x,            //hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE1.webp?v=1759866848&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/easy-bake-loose-baking-setting-powder-hb00140m?variant=50573329400086"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE1.webp?v=1759866848&width=630"
          alt="Easy Bake Loose Baking &amp; Setting Powder"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE2.webp?v=1759866849&width=630 1x,              //hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE2.webp?v=1759866849&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE2.webp?v=1759866849&width=630"
            alt=""
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">BEST SELLER</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-template--26760399323414__featured_collection_B3mC3V-10234743849238"
      class="product__info-container"
      data-section="template--26760399323414__featured_collection_B3mC3V"
      data-url="/en-fr/products/easy-bake-loose-baking-setting-powder-hb00140m?variant=50573329400086"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/easy-bake-loose-baking-setting-powder-hb00140m?variant=50573329400086">
          
            <h3 class="h6">Easy Bake Loose Baking &amp; Setting Powder
</h3>
          
        </a>
      </div>
      
      

      <div
        class="product_card_price mb-xs"
        id="price-template--26760399323414__featured_collection_B3mC3V"
        data-url="/en-fr/products/easy-bake-loose-baking-setting-powder-hb00140m?variant=50573329400086"
        role="status"
        
      >


<div
    class="price      price-section-data price--large"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €39,90
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €39,90
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€-39,90
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker">
        
          


<div class="loading__spinner">
  <svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" class="spinner" viewbox="0 0 66 66"><circle stroke-width="6" cx="33" cy="33" r="30" fill="none" class="path"/></svg>

</div>


<link href="//hudabeauty.com/cdn/shop/t/162/assets/product-card-swatches.css?v=48729697193943970631775984107" rel="stylesheet" type="text/css" media="all" />





<div
  class="product-card-swatches featured-carousel"
  data-handle="easy-bake-loose-baking-setting-powder-hb00140m"
>

        

        
        
        
        
        
<div class="product-swatch-new-wrapper">
            <span class="swatch-new-badge">NEW</span>
          <div
            data-id="51086110392598"
            class="product-swatch br-round"
            style="background-color: #ACDDB3; display: flex;"
            aria-label="Matcha Milk Cake"
            title="Matcha Milk Cake"
          ></div>
        
</div>


        

        
        
        
        
        

          <div
            data-id="51059832193302"
            class="product-swatch br-round"
            style="background-color: #EBB9D6; display: flex;"
            aria-label="Ube Birthday Cake"
            title="Ube Birthday Cake"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573329465622"
            class="product-swatch br-round"
            style="background-color: #f8f7eb; display: flex;"
            aria-label="Sugar Cookie"
            title="Sugar Cookie"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573329432854"
            class="product-swatch br-round"
            style="background-color: #f3c8cf; display: flex;"
            aria-label="Cherry Blossom Cake"
            title="Cherry Blossom Cake"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573329400086"
            class="product-swatch br-round"
            style="background-color: #f5c099; display: flex;"
            aria-label="Peach Pie"
            title="Peach Pie"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573329498390"
            class="product-swatch br-round"
            style="background-color: #f1dfca; display: flex;"
            aria-label="Cupcake"
            title="Cupcake"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573329531158"
            class="product-swatch br-round"
            style="background-color: #f5e7cd; display: flex;"
            aria-label="Pound Cake"
            title="Pound Cake"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573329563926"
            class="product-swatch br-round"
            style="background-color: #ede0bc; display: flex;"
            aria-label="Banana Bread"
            title="Banana Bread"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573329596694"
            class="product-swatch br-round"
            style="background-color: #e0c592; display: flex;"
            aria-label="Blondie"
            title="Blondie"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573329629462"
            class="product-swatch br-round"
            style="background-color: #f0d794; display: flex;"
            aria-label="Kunafa"
            title="Kunafa"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573329662230"
            class="product-swatch br-round"
            style="background-color: #bb8c48; display: flex;"
            aria-label="Cinnamon Bun"
            title="Cinnamon Bun"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573329694998"
            class="product-swatch br-round"
            style="background-color: #804920; display: flex;"
            aria-label="Coffee Cake"
            title="Coffee Cake"
          ></div>
        

<div class="no-js-hidden quick-add"><modal-opener data-modal="#QuickAdd-10234743849238">
          <button
            id="-submit"
            type="button"
            name="add"
            class="color-swatch-item br-round featured-card_choose-more-colors"
            aria-haspopup="dialog"
            aria-labelledby="-submit title--10234743849238"
            data-product-url="/en-fr/products/easy-bake-loose-baking-setting-powder-hb00140m?view=quick-view"
            data-handle="easy-bake-loose-baking-setting-powder-hb00140m"
          ><svg aria-hidden="true" width="10" height="11" viewbox="0 0 10 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Plus">
<path id="Vector 4" d="M0 5.5H10" stroke="black"/>
<path id="Vector 3" d="M5 0.5V10.5" stroke="black"/>
</g>
</svg>
</button>
        </modal-opener>
        <quick-add-modal id="QuickAdd-10234743849238" class="quick-add-modal">
          <div
            role="dialog"
            aria-label="Choose options for Easy Bake Loose Baking &amp;amp; Setting Powder"
            aria-modal="true"
            class="quick-add-modal__content global-settings-popup"
            tabindex="-1"
          >
            <button
              id="ModalClose-10234743849238"
              type="button"
              class="popup__close"
              aria-label="Close"
            ><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewbox="0 0 20 19" fill="none">
  <path d="M18.9999 0.5L1.25488 18.245L18.9999 0.5Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
  <path d="M18.745 18.245L1 0.5L18.745 18.245Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
</svg></button>
            <div id="QuickAddInfo-10234743849238" class="quick-add-modal__content-info"></div>
          </div>
        </quick-add-modal></div></div><script type="application/json" data-selected-variant-meta>
  {
    "default_selected_variant": {"id":50573329400086,"title":"Peach Pie","option1":"Peach Pie","option2":null,"option3":null,"sku":"HB01080","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Peach Pie","public_title":"Peach Pie","options":["Peach Pie"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},
    "product": {"id":10234743849238,"title":"Easy Bake Loose Baking \u0026 Setting Powder","handle":"easy-bake-loose-baking-setting-powder-hb00140m","description":"","published_at":"2025-10-05T02:30:01+04:00","created_at":"2025-10-05T02:29:36+04:00","vendor":"Huda Beauty US","type":"","tags":["_okendo:syndication_key:easy-bake-loose-baking-setting-powder-hb00140m","HB"],"price":3990,"price_min":3990,"price_max":3990,"available":true,"price_varies":false,"compare_at_price":null,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":51086110392598,"title":"Matcha Milk Cake","option1":"Matcha Milk Cake","option2":null,"option3":null,"sku":"HB01806","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Matcha Milk Cake","public_title":"Matcha Milk Cake","options":["Matcha Milk Cake"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409281","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":51059832193302,"title":"Ube Birthday Cake","option1":"Ube Birthday Cake","option2":null,"option3":null,"sku":"HB01417","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Ube Birthday Cake","public_title":"Ube Birthday Cake","options":["Ube Birthday Cake"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018406501","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573329465622,"title":"Sugar Cookie","option1":"Sugar Cookie","option2":null,"option3":null,"sku":"HB00145","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Sugar Cookie","public_title":"Sugar Cookie","options":["Sugar Cookie"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573329432854,"title":"Cherry Blossom Cake","option1":"Cherry Blossom Cake","option2":null,"option3":null,"sku":"HB00570","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Cherry Blossom Cake","public_title":"Cherry Blossom Cake","options":["Cherry Blossom Cake"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573329400086,"title":"Peach Pie","option1":"Peach Pie","option2":null,"option3":null,"sku":"HB01080","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Peach Pie","public_title":"Peach Pie","options":["Peach Pie"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573329498390,"title":"Cupcake","option1":"Cupcake","option2":null,"option3":null,"sku":"HB00140","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Cupcake","public_title":"Cupcake","options":["Cupcake"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573329531158,"title":"Pound Cake","option1":"Pound Cake","option2":null,"option3":null,"sku":"HB00141","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Pound Cake","public_title":"Pound Cake","options":["Pound Cake"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573329563926,"title":"Banana Bread","option1":"Banana Bread","option2":null,"option3":null,"sku":"HB00142","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Banana Bread","public_title":"Banana Bread","options":["Banana Bread"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573329596694,"title":"Blondie","option1":"Blondie","option2":null,"option3":null,"sku":"HB00143","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Blondie","public_title":"Blondie","options":["Blondie"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573329629462,"title":"Kunafa","option1":"Kunafa","option2":null,"option3":null,"sku":"HB00146","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Kunafa","public_title":"Kunafa","options":["Kunafa"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573329662230,"title":"Cinnamon Bun","option1":"Cinnamon Bun","option2":null,"option3":null,"sku":"HB00144","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Cinnamon Bun","public_title":"Cinnamon Bun","options":["Cinnamon Bun"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573329694998,"title":"Coffee Cake","option1":"Coffee Cake","option2":null,"option3":null,"sku":"HB00147","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Bake Loose Baking \u0026 Setting Powder - Coffee Cake","public_title":"Coffee Cake","options":["Coffee Cake"],"price":3990,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3990,"compare_at_price":null,"per_delivery_price":3990,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}}],"images":["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE1_a6995b11-65aa-41c9-8b8a-18540ef41440.webp?v=1759616885","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE12_6eefeea2-5f34-4d0b-a669-c197768a6f8e.webp?v=1759616885"],"featured_image":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE1_a6995b11-65aa-41c9-8b8a-18540ef41440.webp?v=1759616885","options":["Shade"],"media":[{"alt":null,"id":42342650052886,"position":1,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE1_a6995b11-65aa-41c9-8b8a-18540ef41440.webp?v=1759616885"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE1_a6995b11-65aa-41c9-8b8a-18540ef41440.webp?v=1759616885","width":3000},{"alt":"Uploaded from images script","id":42342707757334,"position":2,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE12_6eefeea2-5f34-4d0b-a669-c197768a6f8e.webp?v=1759616885"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE12_6eefeea2-5f34-4d0b-a669-c197768a6f8e.webp?v=1759616885","width":3000}],"requires_selling_plan":false,"selling_plan_groups":[{"id":"bc6478a662ffae32b3be35b3fe566fa707984433","name":"Subscribe and Save","options":[{"name":"Delivery every","position":1,"values":["month","2 months","12 months","3 months","6 months","9 months"]}],"selling_plans":[{"id":10626007318,"name":"Delivered every month and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"month"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10626040086,"name":"Delivered every 2 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"2 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10646061334,"name":"Delivered every 12 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"12 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10626072854,"name":"Delivered every 3 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"3 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10626105622,"name":"Delivered every 6 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"6 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10626138390,"name":"Delivered every 9 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"9 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}}],"app_id":"ordergroove-subscribe-and-save"}],"content":""},
    "variants": [
      
{
          "id": 51086110392598,
          "title": "Matcha Milk Cake",
          "available": true,
          "inventory": 1646,
          "max_product_quantity": 5,
          "price": "€39,90",
          "save_price": "€-39,90",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/EASY-BAKE_MATCHA-MILK-CAKE_SHOP-PDP_FINAL_PACKSHOT_1.webp?v=1772447567","\/\/hudabeauty.com\/cdn\/shop\/files\/EB-MATCHA-B_A.webp?v=1774766414",{"alt":"Easy Bake Loose Baking \u0026 Setting Powder Matcha Milk Cake - PDP tile video","id":44563540214038,"position":null,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/8e5ccf388742441f8386de6cb8c8fe18.thumbnail.0000000000.jpg?v=1773569960"},"aspect_ratio":0.563,"duration":86000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8e5ccf388742441f8386de6cb8c8fe18\/8e5ccf388742441f8386de6cb8c8fe18.SD-480p-1.5Mbps-77915441.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8e5ccf388742441f8386de6cb8c8fe18\/8e5ccf388742441f8386de6cb8c8fe18.HD-1080p-7.2Mbps-77915441.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8e5ccf388742441f8386de6cb8c8fe18\/8e5ccf388742441f8386de6cb8c8fe18.HD-720p-4.5Mbps-77915441.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8e5ccf388742441f8386de6cb8c8fe18\/8e5ccf388742441f8386de6cb8c8fe18.m3u8?v=0","width":606}]},{"alt":null,"id":44585102082326,"position":null,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/932173db62524c7abdb28602ca79e414.thumbnail.0000000000.jpg?v=1773834554"},"aspect_ratio":0.563,"duration":35000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/932173db62524c7abdb28602ca79e414\/932173db62524c7abdb28602ca79e414.SD-480p-1.5Mbps-78142374.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/932173db62524c7abdb28602ca79e414\/932173db62524c7abdb28602ca79e414.HD-1080p-7.2Mbps-78142374.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/932173db62524c7abdb28602ca79e414\/932173db62524c7abdb28602ca79e414.HD-720p-4.5Mbps-78142374.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/932173db62524c7abdb28602ca79e414\/932173db62524c7abdb28602ca79e414.m3u8?v=0","width":606}]},{"alt":null,"id":44674959311126,"position":null,"preview_image":{"aspect_ratio":0.563,"height":3840,"width":2160,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/8deb1742819b487292fafd3b1b13995e.thumbnail.0000000000.jpg?v=1774601847"},"aspect_ratio":0.563,"duration":39000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8deb1742819b487292fafd3b1b13995e\/8deb1742819b487292fafd3b1b13995e.SD-480p-1.5Mbps-79614190.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8deb1742819b487292fafd3b1b13995e\/8deb1742819b487292fafd3b1b13995e.HD-1080p-7.2Mbps-79614190.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8deb1742819b487292fafd3b1b13995e\/8deb1742819b487292fafd3b1b13995e.HD-720p-4.5Mbps-79614190.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8deb1742819b487292fafd3b1b13995e\/8deb1742819b487292fafd3b1b13995e.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/EASY-BAKE_MATCHA-MILK-CAKE_SHOP-PDP_FINAL_SHADE-RANGE_1.webp?v=1772447567","\/\/hudabeauty.com\/cdn\/shop\/files\/EASY-BAKE_MATCHA-MILK-CAKE_SHOP-PDP_FINAL_POD-MODEL_1.webp?v=1772447567","\/\/hudabeauty.com\/cdn\/shop\/files\/EASY-BAKE_MATCHA-MILK-CAKE_SHOP-PDP_FINAL_EDUCATION_1.webp?v=1772447567","\/\/hudabeauty.com\/cdn\/shop\/files\/EASY-BAKE_MATCHA-MILK-CAKE_SHOP-PDP_FINAL_CONCERNS_1.webp?v=1772447567","\/\/hudabeauty.com\/cdn\/shop\/files\/EASY-BAKE_MATCHA-MILK-CAKE_SHOP-PDP_FINAL_CLAIM_1.webp?v=1772447567","\/\/hudabeauty.com\/cdn\/shop\/files\/EASY-BAKE_MATCHA-MILK-CAKE_SHOP-PDP_FINAL_IPHONE-B_A-F_1.webp?v=1772447567","\/\/hudabeauty.com\/cdn\/shop\/files\/EASY-BAKE_MATCHA-MILK-CAKE_SHOP-PDP_FINAL_IPHONE-B_A-M_1.webp?v=1772447566"],
              "shortDescription": "Blurs, sets & locks in makeup for an all-day flawless finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 51059832193302,
          "title": "Ube Birthday Cake",
          "available": true,
          "inventory": 1346,
          "max_product_quantity": 5,
          "price": "€39,90",
          "save_price": "€-39,90",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE1_f7a2d3fc-04e4-45e2-b076-399cceafc837.webp?v=1759749397","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE2.webp?v=1759671975",{"alt":"Uploaded video","id":42350025310486,"position":null,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/fe3ab4f77b7947278bfd00bba301013e.thumbnail.0000000000.jpg?v=1759671987"},"aspect_ratio":0.563,"duration":104000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/fe3ab4f77b7947278bfd00bba301013e\/fe3ab4f77b7947278bfd00bba301013e.SD-480p-1.5Mbps-58899729.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/fe3ab4f77b7947278bfd00bba301013e\/fe3ab4f77b7947278bfd00bba301013e.HD-1080p-7.2Mbps-58899729.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/fe3ab4f77b7947278bfd00bba301013e\/fe3ab4f77b7947278bfd00bba301013e.HD-720p-4.5Mbps-58899729.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/fe3ab4f77b7947278bfd00bba301013e\/fe3ab4f77b7947278bfd00bba301013e.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE4.webp?v=1759671975","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE5.webp?v=1759671975","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE6.webp?v=1759671975","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE7.webp?v=1759671975","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE8.webp?v=1759671975","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE9.webp?v=1759671975","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE10.webp?v=1759671975","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE11.webp?v=1759671975","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE12.webp?v=1759671975","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE13.webp?v=1759671975","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-UBEBIRTHDAYCAKE-TILE14.webp?v=1759671975"],
              "shortDescription": "Multi-purpose lilac powder that brightens, blurs & color corrects while absorbing oil for a smooth, non-cakey, all-day airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573329465622,
          "title": "Sugar Cookie",
          "available": true,
          "inventory": 179,
          "max_product_quantity": 5,
          "price": "€39,90",
          "save_price": "€-39,90",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-SUGARCOOKIE-TILE1.webp?v=1759866899","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-SUGARCOOKIE-TILE2.webp?v=1759866901",{"alt":"Easy Bake Loose Baking \u0026 Setting Powder - Huda product demo video applying the powder and showing texture","id":42387186188566,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/1d48014013dd489ba4e3577f132811b7.thumbnail.0000000000.jpg?v=1759866926"},"aspect_ratio":0.558,"duration":84000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.SD-480p-1.5Mbps-59052434.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-1080p-7.2Mbps-59052434.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-720p-4.5Mbps-59052434.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-SUGARCOOKIE-TILE4.webp?v=1759866901","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-SUGARCOOKIE-TILE5.webp?v=1759866902","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE5.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-SUGARCOOKIE-TILE7.webp?v=1759866905","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-SUGARCOOKIE-TILE8.webp?v=1759866905","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-SUGARCOOKIE-TILE9.webp?v=1759866906","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-SUGARCOOKIE-TILE10.webp?v=1759866906","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-SUGARCOOKIE-TILE11.webp?v=1759866906","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-SUGARCOOKIE-TILE12.webp?v=1759866908","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-SUGARCOOKIE-TILE13.webp?v=1759866910"],
              "shortDescription": "Blurs, sets & locks in makeup for an all-day flawless finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573329432854,
          "title": "Cherry Blossom Cake",
          "available": true,
          "inventory": 346,
          "max_product_quantity": 5,
          "price": "€39,90",
          "save_price": "€-39,90",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CHERRYBLOSSOMCAKE-TILE1.webp?v=1759866887","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CHERRYBLOSSOMCAKE-TILE2.webp?v=1759866889",{"alt":"Easy Bake Loose Baking \u0026 Setting Powder - Huda product demo video applying the powder and showing texture","id":42387186188566,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/1d48014013dd489ba4e3577f132811b7.thumbnail.0000000000.jpg?v=1759866926"},"aspect_ratio":0.558,"duration":84000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.SD-480p-1.5Mbps-59052434.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-1080p-7.2Mbps-59052434.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-720p-4.5Mbps-59052434.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CHERRYBLOSSOMCAKE-TILE4.webp?v=1759866888","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CHERRYBLOSSOMCAKE-TILE5.webp?v=1759866890","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE5.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CHERRYBLOSSOMCAKE-TILE7.webp?v=1759866894","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CHERRYBLOSSOMCAKE-TILE8.webp?v=1759866893","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CHERRYBLOSSOMCAKE-TILE9.webp?v=1759866895","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CHERRYBLOSSOMCAKE-TILE10.webp?v=1759866896","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CHERRYBLOSSOMCAKE-TILE11.webp?v=1759866896","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CHERRYBLOSSOMCAKE-TILE12.webp?v=1759866895","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CHERRYBLOSSOMCAKE-TILE13.webp?v=1759866896"],
              "shortDescription": "Blurs, sets & locks in makeup for an all-day flawless finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573329400086,
          "title": "Peach Pie",
          "available": true,
          "inventory": 202,
          "max_product_quantity": 5,
          "price": "€39,90",
          "save_price": "€-39,90",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE1.webp?v=1759866848","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE2.webp?v=1759866849",{"alt":"Easy Bake Loose Baking \u0026 Setting Powder - Huda product demo video applying the powder and showing texture","id":42387186188566,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/1d48014013dd489ba4e3577f132811b7.thumbnail.0000000000.jpg?v=1759866926"},"aspect_ratio":0.558,"duration":84000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.SD-480p-1.5Mbps-59052434.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-1080p-7.2Mbps-59052434.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-720p-4.5Mbps-59052434.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE4.webp?v=1759866878","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE5.webp?v=1759866878","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE5.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE7.webp?v=1759866880","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE8.webp?v=1759866880","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE9.webp?v=1759866883","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE10.webp?v=1759866884","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE11.webp?v=1759866884","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE12.webp?v=1759866883","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-PEACHPIE-TILE13.webp?v=1759866886"],
              "shortDescription": "Blurs, sets & locks in makeup for an all-day flawless finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573329498390,
          "title": "Cupcake",
          "available": true,
          "inventory": 318,
          "max_product_quantity": 5,
          "price": "€39,90",
          "save_price": "€-39,90",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CUPCAKE-TILE1.webp?v=1759866911","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CUPCAKE-TILE2.webp?v=1759866913",{"alt":"Easy Bake Loose Baking \u0026 Setting Powder - Huda product demo video applying the powder and showing texture","id":42387186188566,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/1d48014013dd489ba4e3577f132811b7.thumbnail.0000000000.jpg?v=1759866926"},"aspect_ratio":0.558,"duration":84000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.SD-480p-1.5Mbps-59052434.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-1080p-7.2Mbps-59052434.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-720p-4.5Mbps-59052434.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CUPCAKE-TILE4.webp?v=1759866914","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CUPCAKE-TILE5.webp?v=1759866915","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE5.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CUPCAKE-TILE7.webp?v=1759866917","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CUPCAKE-TILE8.webp?v=1759866918","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CUPCAKE-TILE9.webp?v=1759866919","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CUPCAKE-TILE10.webp?v=1759866920","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CUPCAKE-TILE11.webp?v=1759866921","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CUPCAKE-TILE12.webp?v=1759866920","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CUPCAKE-TILE13.webp?v=1759866922"],
              "shortDescription": "Blurs, sets & locks in makeup for an all-day flawless finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573329531158,
          "title": "Pound Cake",
          "available": true,
          "inventory": 1113,
          "max_product_quantity": 5,
          "price": "€39,90",
          "save_price": "€-39,90",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE1_a4006f92-8df8-4053-a348-ee20d9d347c7.webp?v=1759866924","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE2_c1682253-79f7-4eb2-b40d-a26b2fc87274.webp?v=1759866925",{"alt":"Easy Bake Loose Baking \u0026 Setting Powder - Huda product demo video applying the powder and showing texture","id":42387186188566,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/1d48014013dd489ba4e3577f132811b7.thumbnail.0000000000.jpg?v=1759866926"},"aspect_ratio":0.558,"duration":84000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.SD-480p-1.5Mbps-59052434.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-1080p-7.2Mbps-59052434.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-720p-4.5Mbps-59052434.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE4_e03db4ea-0897-4602-871b-1ab33444d360.webp?v=1759866926","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE5_0a7a7e38-7151-4f27-b1f1-b9478a187d0e.webp?v=1759866927","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE5.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE7_c304a403-3a86-4e77-b328-653bc7e7f9d8.webp?v=1759866929","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE8_0e778256-cf38-4d88-8b06-1987b9031df2.webp?v=1759866930","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE9_33f9a8d1-9f89-410b-8151-bb57a12f0a9e.webp?v=1759866932","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE10_7e601bd6-1dbf-4698-804c-0f5947f33555.webp?v=1759866932","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE11_3f998701-634c-4f6d-8041-cbb32183c76e.webp?v=1759866933","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE12_0e5d2e76-ebb4-46e9-ad2c-cd727b12dbc9.webp?v=1759866933","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-POUNDCAKE-TILE13_6e04ed20-7b7c-4dbd-9de2-62ec38198850.webp?v=1759866934"],
              "shortDescription": "Blurs, sets & locks in makeup for an all-day flawless finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573329563926,
          "title": "Banana Bread",
          "available": true,
          "inventory": 145,
          "max_product_quantity": 5,
          "price": "€39,90",
          "save_price": "€-39,90",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE1.webp?v=1759866935","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE2.webp?v=1759866937",{"alt":"Easy Bake Loose Baking \u0026 Setting Powder - Huda product demo video applying the powder and showing texture","id":42387186188566,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/1d48014013dd489ba4e3577f132811b7.thumbnail.0000000000.jpg?v=1759866926"},"aspect_ratio":0.558,"duration":84000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.SD-480p-1.5Mbps-59052434.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-1080p-7.2Mbps-59052434.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-720p-4.5Mbps-59052434.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE4.webp?v=1759866938","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE5.webp?v=1759866939","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE5.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE7.webp?v=1759866941","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE8.webp?v=1759866942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE9.webp?v=1759866943","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE10.webp?v=1759866944","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE11.webp?v=1759866943","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE12.webp?v=1759866945","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BANANABREAD-TILE13.webp?v=1759866945"],
              "shortDescription": "Blurs, sets & locks in makeup for an all-day flawless finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573329596694,
          "title": "Blondie",
          "available": true,
          "inventory": 31,
          "max_product_quantity": 5,
          "price": "€39,90",
          "save_price": "€-39,90",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BLONDIE-TILE1.webp?v=1759866947","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BLONDIE-TILE2.webp?v=1759866949",{"alt":"Easy Bake Loose Baking \u0026 Setting Powder - Huda product demo video applying the powder and showing texture","id":42387186188566,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/1d48014013dd489ba4e3577f132811b7.thumbnail.0000000000.jpg?v=1759866926"},"aspect_ratio":0.558,"duration":84000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.SD-480p-1.5Mbps-59052434.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-1080p-7.2Mbps-59052434.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-720p-4.5Mbps-59052434.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BLONDIE-TILE4.webp?v=1759866950","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BLONDIE-TILE5.webp?v=1759866950","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE5.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE6.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BLONDIE-TILE9.webp?v=1759866954","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BLONDIE-TILE10.webp?v=1759866954","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BLONDIE-TILE11.webp?v=1759866954","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE11.webp?v=1770025693","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-BLONDIE-TILE13.webp?v=1759866958"],
              "shortDescription": "Blurs, sets & locks in makeup for an all-day flawless finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573329629462,
          "title": "Kunafa",
          "available": true,
          "inventory": 200,
          "max_product_quantity": 5,
          "price": "€39,90",
          "save_price": "€-39,90",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-KUNAFA-TILE1.webp?v=1759866958","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-KUNAFA-TILE2.webp?v=1759866961",{"alt":"Easy Bake Loose Baking \u0026 Setting Powder - Huda product demo video applying the powder and showing texture","id":42387186188566,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/1d48014013dd489ba4e3577f132811b7.thumbnail.0000000000.jpg?v=1759866926"},"aspect_ratio":0.558,"duration":84000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.SD-480p-1.5Mbps-59052434.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-1080p-7.2Mbps-59052434.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-720p-4.5Mbps-59052434.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-KUNAFA-TILE4.webp?v=1759866962","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-KUNAFA-TILE5.webp?v=1759866962","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE5.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE6.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-KUNAFA-TILE8.webp?v=1759866964","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-KUNAFA-TILE9.webp?v=1759866966","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-KUNAFA-TILE10.webp?v=1759866967","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-KUNAFA-TILE11.webp?v=1759866968","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE11.webp?v=1770025693","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-KUNAFA-TILE13.webp?v=1759866970"],
              "shortDescription": "Blurs, sets & locks in makeup for an all-day flawless finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573329662230,
          "title": "Cinnamon Bun",
          "available": true,
          "inventory": 112,
          "max_product_quantity": 5,
          "price": "€39,90",
          "save_price": "€-39,90",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CINNAMONBUN-TILE1.webp?v=1759866971","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CINNAMONBUN-TILE2.webp?v=1759866974",{"alt":"Easy Bake Loose Baking \u0026 Setting Powder - Huda product demo video applying the powder and showing texture","id":42387186188566,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/1d48014013dd489ba4e3577f132811b7.thumbnail.0000000000.jpg?v=1759866926"},"aspect_ratio":0.558,"duration":84000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.SD-480p-1.5Mbps-59052434.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-1080p-7.2Mbps-59052434.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-720p-4.5Mbps-59052434.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CINNAMONBUN-TILE4.webp?v=1759866975","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CINNAMONBUN-TILE5.webp?v=1759866977","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE5.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE6.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CINNAMONBUN-TILE8.webp?v=1759866979","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CINNAMONBUN-TILE9.webp?v=1759866980","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CINNAMONBUN-TILE10.webp?v=1759866980","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CINNAMONBUN-TILE11.webp?v=1759866983","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE11.webp?v=1770025693","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSEPOWDER-CINNAMONBUN-TILE13.webp?v=1759866983"],
              "shortDescription": "Blurs, sets & locks in makeup for an all-day flawless finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573329694998,
          "title": "Coffee Cake",
          "available": true,
          "inventory": 402,
          "max_product_quantity": 5,
          "price": "€39,90",
          "save_price": "€-39,90",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE1.webp?v=1770025663","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE2.webp?v=1770025694",{"alt":"Easy Bake Loose Baking \u0026 Setting Powder - Huda product demo video applying the powder and showing texture","id":42387186188566,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/1d48014013dd489ba4e3577f132811b7.thumbnail.0000000000.jpg?v=1759866926"},"aspect_ratio":0.558,"duration":84000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.SD-480p-1.5Mbps-59052434.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-1080p-7.2Mbps-59052434.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.HD-720p-4.5Mbps-59052434.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/1d48014013dd489ba4e3577f132811b7\/1d48014013dd489ba4e3577f132811b7.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE4.webp?v=1770025700","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE5.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE6.webp?v=1770025694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE7.webp?v=1770025699","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE8.webp?v=1770025701","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE9.webp?v=1770025698","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE10.webp?v=1770025701","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBAKELOOSE-COFFEECAKE-TILE11.webp?v=1770025693"],
              "shortDescription": "Blurs, sets & locks in makeup for an all-day flawless finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        }
      
    ]
  }
</script>

          
          
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10234743849238"><div data-oke-reviews-version="0.87.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 4.9 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 98.3516%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 4.9 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">4.9</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"4.9","reviewCount":3336} </script></div></div>
    
        (3336)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB01080" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        











<div  class="back-in-stock-container" style="display: none;"><div class="product-back-in-stock-buttons">
    
    

    
    
  </div></div>

        

         
          
















<div
  
  class="waitlist-container"
  
    style="display: none;"
  
><div class="product-waitlist-buttons">
      
      
        <a href="/en-fr/products/easy-bake-loose-baking-setting-powder-hb00140m?variant=50573329400086" class="button button--primary notify-me-btn">Notify Me</a>
      
    </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="template--26760399323414__featured_collection_B3mC3V"
      data-form-id="product-form-template--26760399323414__featured_collection_B3mC3V"
      dl-product-id="HB01080"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-template--26760399323414__featured_collection_B3mC3V" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="50573329400086"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="202"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <button
              id="ProductSubmitButton-template--26760399323414__featured_collection_B3mC3V"
              data-dl-source="Collection"
              data-url="/en-fr/products/easy-bake-loose-baking-setting-powder-hb00140m"
              type="submit"
              name="add"
              class="product-form__submit button button--full-width button--primary"
              
              
            >
              <span>
                Add to Bag
              </span>
            </button></div><input type="hidden" name="product-id" value="10234743849238" /><input type="hidden" name="section-id" value="template--26760399323414__featured_collection_B3mC3V" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li><li
        id="Slide-template--26760399323414__featured_collection_B3mC3V-3"
        class="grid__item slider__slide"
        
      >
        



  







  























      
      
















  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  






























  
  

  
    
    




<section
  class="featured-card-product featured-card-product--new-design"
  
    data-card-design="new"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB01166"
    dl-product-name="Easy Blur Natural Airbrush Foundation with Niacinamide"
    dl-product-brand="Huda Beauty US"
    dl-product-category="Foundation"
    dl-product-category2="Face"
    dl-product-category3=""
    dl-product-variant="HB01166"
    dl-product-price="38,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/easy-blur-natural-airbrush-foundation-with-niacinamide-hb01166m?variant=50573350273302"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBLUR-400G_MACCHIATO-TILE1.webp?v=1759872228&width=630 1x,            //hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBLUR-400G_MACCHIATO-TILE1.webp?v=1759872228&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/easy-blur-natural-airbrush-foundation-with-niacinamide-hb01166m?variant=50573350273302"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBLUR-400G_MACCHIATO-TILE1.webp?v=1759872228&width=630"
          alt="Easy Blur Natural Airbrush Foundation with Niacinamide"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBLUR-400G_MACCHIATO-TILE2.webp?v=1759872230&width=630 1x,              //hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBLUR-400G_MACCHIATO-TILE2.webp?v=1759872230&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBLUR-400G_MACCHIATO-TILE2.webp?v=1759872230&width=630"
            alt=""
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">BEST SELLER</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-template--26760399323414__featured_collection_B3mC3V-10234752729366"
      class="product__info-container"
      data-section="template--26760399323414__featured_collection_B3mC3V"
      data-url="/en-fr/products/easy-blur-natural-airbrush-foundation-with-niacinamide-hb01166m?variant=50573350273302"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/easy-blur-natural-airbrush-foundation-with-niacinamide-hb01166m?variant=50573350273302">
          
            <h3 class="h6">Easy Blur Natural Airbrush Foundation with Niacinamide
</h3>
          
        </a>
      </div>
      
      

      <div
        class="product_card_price mb-xs"
        id="price-template--26760399323414__featured_collection_B3mC3V"
        data-url="/en-fr/products/easy-blur-natural-airbrush-foundation-with-niacinamide-hb01166m?variant=50573350273302"
        role="status"
        
      >


<div
    class="price      price-section-data price--large"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €38,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €38,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€-38,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker">
        
          


<div class="loading__spinner">
  <svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" class="spinner" viewbox="0 0 66 66"><circle stroke-width="6" cx="33" cy="33" r="30" fill="none" class="path"/></svg>

</div>


<link href="//hudabeauty.com/cdn/shop/t/162/assets/product-card-swatches.css?v=48729697193943970631775984107" rel="stylesheet" type="text/css" media="all" />





<div
  class="product-card-swatches featured-carousel"
  data-handle="easy-blur-natural-airbrush-foundation-with-niacinamide-hb01166m"
>

        

        
        
        
        
        

          <div
            data-id="50573349552406"
            class="product-swatch br-round"
            style="background-color: #FBE4D6; display: flex;"
            aria-label="Milkshake 100B"
            title="Milkshake 100B"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573349585174"
            class="product-swatch br-round"
            style="background-color: #FED7B4; display: flex;"
            aria-label="Angel Food 110N"
            title="Angel Food 110N"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573349617942"
            class="product-swatch br-round"
            style="background-color: #FDD4B4; display: flex;"
            aria-label="Vanilla 120B"
            title="Vanilla 120B"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573349650710"
            class="product-swatch br-round"
            style="background-color: #EDC3A3; display: flex;"
            aria-label="Cashew 140G"
            title="Cashew 140G"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573349683478"
            class="product-swatch br-round"
            style="background-color: #E3BB93; display: flex;"
            aria-label="Creme Brulee 150G"
            title="Creme Brulee 150G"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573349716246"
            class="product-swatch br-round"
            style="background-color: #E3BCA0; display: flex;"
            aria-label="Shortbread 200B"
            title="Shortbread 200B"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573349749014"
            class="product-swatch br-round"
            style="background-color: #D8AD8E; display: flex;"
            aria-label="Chai 210B"
            title="Chai 210B"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573349781782"
            class="product-swatch br-round"
            style="background-color: #D19F7E; display: flex;"
            aria-label="Custard 220N"
            title="Custard 220N"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573349814550"
            class="product-swatch br-round"
            style="background-color: #DBA78B; display: flex;"
            aria-label="Macaroon 230N"
            title="Macaroon 230N"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573349847318"
            class="product-swatch br-round"
            style="background-color: #D49F7D; display: flex;"
            aria-label="Toasted Coconut 240N"
            title="Toasted Coconut 240N"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573349880086"
            class="product-swatch br-round"
            style="background-color: #DEAC8E; display: flex;"
            aria-label="Cheesecake 250G"
            title="Cheesecake 250G"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573349912854"
            class="product-swatch br-round"
            style="background-color: #D19979; display: flex;"
            aria-label="Apple Pie 255B"
            title="Apple Pie 255B"
          ></div>
        





















































<div class="no-js-hidden quick-add"><modal-opener data-modal="#QuickAdd-10234752729366">
          <button
            id="-submit"
            type="button"
            name="add"
            class="color-swatch-item br-round featured-card_choose-more-colors"
            aria-haspopup="dialog"
            aria-labelledby="-submit title--10234752729366"
            data-product-url="/en-fr/products/easy-blur-natural-airbrush-foundation-with-niacinamide-hb01166m?view=quick-view"
            data-handle="easy-blur-natural-airbrush-foundation-with-niacinamide-hb01166m"
          ><svg aria-hidden="true" width="10" height="11" viewbox="0 0 10 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Plus">
<path id="Vector 4" d="M0 5.5H10" stroke="black"/>
<path id="Vector 3" d="M5 0.5V10.5" stroke="black"/>
</g>
</svg>
</button>
        </modal-opener>
        <quick-add-modal id="QuickAdd-10234752729366" class="quick-add-modal">
          <div
            role="dialog"
            aria-label="Choose options for Easy Blur Natural Airbrush Foundation with Niacinamide"
            aria-modal="true"
            class="quick-add-modal__content global-settings-popup"
            tabindex="-1"
          >
            <button
              id="ModalClose-10234752729366"
              type="button"
              class="popup__close"
              aria-label="Close"
            ><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewbox="0 0 20 19" fill="none">
  <path d="M18.9999 0.5L1.25488 18.245L18.9999 0.5Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
  <path d="M18.745 18.245L1 0.5L18.745 18.245Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
</svg></button>
            <div id="QuickAddInfo-10234752729366" class="quick-add-modal__content-info"></div>
          </div>
        </quick-add-modal></div></div><script type="application/json" data-selected-variant-meta>
  {
    "default_selected_variant": {"id":50573350273302,"title":"Macchiato 400G","option1":"Macchiato 400G","option2":null,"option3":null,"sku":"HB01166","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Macchiato 400G","public_title":"Macchiato 400G","options":["Macchiato 400G"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},
    "product": {"id":10234752729366,"title":"Easy Blur Natural Airbrush Foundation with Niacinamide","handle":"easy-blur-natural-airbrush-foundation-with-niacinamide-hb01166m","description":"","published_at":"2025-10-05T02:30:02+04:00","created_at":"2025-10-05T02:29:44+04:00","vendor":"Huda Beauty US","type":"","tags":["_okendo:syndication_key:easy-blur-natural-airbrush-foundation-with-niacinamide-hb01166m","HB","short_description","show-find-my-shade-button"],"price":3800,"price_min":3800,"price_max":3800,"available":true,"price_varies":false,"compare_at_price":null,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":50573349552406,"title":"Milkshake 100B","option1":"Milkshake 100B","option2":null,"option3":null,"sku":"HB01148","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Milkshake 100B","public_title":"Milkshake 100B","options":["Milkshake 100B"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573349585174,"title":"Angel Food 110N","option1":"Angel Food 110N","option2":null,"option3":null,"sku":"HB01149","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Angel Food 110N","public_title":"Angel Food 110N","options":["Angel Food 110N"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573349617942,"title":"Vanilla 120B","option1":"Vanilla 120B","option2":null,"option3":null,"sku":"HB01150","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Vanilla 120B","public_title":"Vanilla 120B","options":["Vanilla 120B"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573349650710,"title":"Cashew 140G","option1":"Cashew 140G","option2":null,"option3":null,"sku":"HB01151","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Cashew 140G","public_title":"Cashew 140G","options":["Cashew 140G"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573349683478,"title":"Creme Brulee 150G","option1":"Creme Brulee 150G","option2":null,"option3":null,"sku":"HB01152","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Creme Brulee 150G","public_title":"Creme Brulee 150G","options":["Creme Brulee 150G"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573349716246,"title":"Shortbread 200B","option1":"Shortbread 200B","option2":null,"option3":null,"sku":"HB01153","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Shortbread 200B","public_title":"Shortbread 200B","options":["Shortbread 200B"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573349749014,"title":"Chai 210B","option1":"Chai 210B","option2":null,"option3":null,"sku":"HB01154","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Chai 210B","public_title":"Chai 210B","options":["Chai 210B"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573349781782,"title":"Custard 220N","option1":"Custard 220N","option2":null,"option3":null,"sku":"HB01155","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Custard 220N","public_title":"Custard 220N","options":["Custard 220N"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573349814550,"title":"Macaroon 230N","option1":"Macaroon 230N","option2":null,"option3":null,"sku":"HB01156","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Macaroon 230N","public_title":"Macaroon 230N","options":["Macaroon 230N"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573349847318,"title":"Toasted Coconut 240N","option1":"Toasted Coconut 240N","option2":null,"option3":null,"sku":"HB01157","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Toasted Coconut 240N","public_title":"Toasted Coconut 240N","options":["Toasted Coconut 240N"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573349880086,"title":"Cheesecake 250G","option1":"Cheesecake 250G","option2":null,"option3":null,"sku":"HB01158","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Cheesecake 250G","public_title":"Cheesecake 250G","options":["Cheesecake 250G"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573349912854,"title":"Apple Pie 255B","option1":"Apple Pie 255B","option2":null,"option3":null,"sku":"HB01159","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Apple Pie 255B","public_title":"Apple Pie 255B","options":["Apple Pie 255B"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573349945622,"title":"Cream Puff 260W","option1":"Cream Puff 260W","option2":null,"option3":null,"sku":"HB01599","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Cream Puff 260W","public_title":"Cream Puff 260W","options":["Cream Puff 260W"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573349978390,"title":"Latte 300N","option1":"Latte 300N","option2":null,"option3":null,"sku":"HB01160","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Latte 300N","public_title":"Latte 300N","options":["Latte 300N"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573350011158,"title":"Iced Frappe 305C","option1":"Iced Frappe 305C","option2":null,"option3":null,"sku":"HB01600","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Iced Frappe 305C","public_title":"Iced Frappe 305C","options":["Iced Frappe 305C"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573350043926,"title":"Golden Milk 307N","option1":"Golden Milk 307N","option2":null,"option3":null,"sku":"HB01601","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Golden Milk 307N","public_title":"Golden Milk 307N","options":["Golden Milk 307N"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573350076694,"title":"Amaretti 310G","option1":"Amaretti 310G","option2":null,"option3":null,"sku":"HB01161","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Amaretti 310G","public_title":"Amaretti 310G","options":["Amaretti 310G"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573350109462,"title":"TresLeches 320G","option1":"TresLeches 320G","option2":null,"option3":null,"sku":"HB01162","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - TresLeches 320G","public_title":"TresLeches 320G","options":["TresLeches 320G"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573350142230,"title":"Butter Pecan 330N","option1":"Butter Pecan 330N","option2":null,"option3":null,"sku":"HB01163","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Butter Pecan 330N","public_title":"Butter Pecan 330N","options":["Butter Pecan 330N"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573350174998,"title":"Baklava 340G","option1":"Baklava 340G","option2":null,"option3":null,"sku":"HB01164","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Baklava 340G","public_title":"Baklava 340G","options":["Baklava 340G"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573350207766,"title":"Dulce De Leche 350G","option1":"Dulce De Leche 350G","option2":null,"option3":null,"sku":"HB01165","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Dulce De Leche 350G","public_title":"Dulce De Leche 350G","options":["Dulce De Leche 350G"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573350240534,"title":"Creme Caramel 355W","option1":"Creme Caramel 355W","option2":null,"option3":null,"sku":"HB01602","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Creme Caramel 355W","public_title":"Creme Caramel 355W","options":["Creme Caramel 355W"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573350273302,"title":"Macchiato 400G","option1":"Macchiato 400G","option2":null,"option3":null,"sku":"HB01166","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Macchiato 400G","public_title":"Macchiato 400G","options":["Macchiato 400G"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573350306070,"title":"Toffee 420G","option1":"Toffee 420G","option2":null,"option3":null,"sku":"HB01167","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Toffee 420G","public_title":"Toffee 420G","options":["Toffee 420G"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573350338838,"title":"Pistachio Cream 425N","option1":"Pistachio Cream 425N","option2":null,"option3":null,"sku":"HB01603","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Pistachio Cream 425N","public_title":"Pistachio Cream 425N","options":["Pistachio Cream 425N"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573350371606,"title":"Gingerbread 430N","option1":"Gingerbread 430N","option2":null,"option3":null,"sku":"HB01168","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Gingerbread 430N","public_title":"Gingerbread 430N","options":["Gingerbread 430N"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573350404374,"title":"Cinnamon 440G","option1":"Cinnamon 440G","option2":null,"option3":null,"sku":"HB01169","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Cinnamon 440G","public_title":"Cinnamon 440G","options":["Cinnamon 440G"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573350437142,"title":"Chocolate Mousse 450G","option1":"Chocolate Mousse 450G","option2":null,"option3":null,"sku":"HB01170","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Chocolate Mousse 450G","public_title":"Chocolate Mousse 450G","options":["Chocolate Mousse 450G"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573350469910,"title":"Peanut Butter 455R","option1":"Peanut Butter 455R","option2":null,"option3":null,"sku":"HB01171","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Peanut Butter 455R","public_title":"Peanut Butter 455R","options":["Peanut Butter 455R"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573350502678,"title":"Mocha 500G","option1":"Mocha 500G","option2":null,"option3":null,"sku":"HB01172","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Mocha 500G","public_title":"Mocha 500G","options":["Mocha 500G"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3800,"compare_at_price":null,"per_delivery_price":3800,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573350535446,"title":"Cocoa 510R","option1":"Cocoa 510R","option2":null,"option3":null,"sku":"HB01173","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Cocoa 510R","public_title":"Cocoa 510R","options":["Cocoa 510R"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573350568214,"title":"Hot Fudge 550R","option1":"Hot Fudge 550R","option2":null,"option3":null,"sku":"HB01174","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Hot Fudge 550R","public_title":"Hot Fudge 550R","options":["Hot Fudge 550R"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573350600982,"title":"Ganache 560R","option1":"Ganache 560R","option2":null,"option3":null,"sku":"HB01175","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Ganache 560R","public_title":"Ganache 560R","options":["Ganache 560R"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573350633750,"title":"Chocolate Swirl 570W","option1":"Chocolate Swirl 570W","option2":null,"option3":null,"sku":"HB01604","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Chocolate Swirl 570W","public_title":"Chocolate Swirl 570W","options":["Chocolate Swirl 570W"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573350666518,"title":"Truffle Cake 580N","option1":"Truffle Cake 580N","option2":null,"option3":null,"sku":"HB01605","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Truffle Cake 580N","public_title":"Truffle Cake 580N","options":["Truffle Cake 580N"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573350699286,"title":"True Lava Cake 590R","option1":"True Lava Cake 590R","option2":null,"option3":null,"sku":"HB01185","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - True Lava Cake 590R","public_title":"True Lava Cake 590R","options":["True Lava Cake 590R"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573350732054,"title":"Molten Cocoa 595N","option1":"Molten Cocoa 595N","option2":null,"option3":null,"sku":"HB01650","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Molten Cocoa 595N","public_title":"Molten Cocoa 595N","options":["Molten Cocoa 595N"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573350764822,"title":"Espresso 600N","option1":"Espresso 600N","option2":null,"option3":null,"sku":"HB01176","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Easy Blur Natural Airbrush Foundation with Niacinamide - Espresso 600N","public_title":"Espresso 600N","options":["Espresso 600N"],"price":3800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":null,"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}],"images":["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE1.webp?v=1759616929","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE2_7b23a8eb-a114-4d2f-8172-724fb05b6a70.webp?v=1759616930","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE4_5d8e93e8-0171-4ae8-833d-5afd53df9521.webp?v=1759616929","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE5_b8ad729f-5683-4c8a-ab8a-44289b42cf2a.webp?v=1759616930","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE7_3956ac81-599c-4b81-bd2a-edc9d7556a0a.webp?v=1759616929","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE8_7fa1c016-d725-483e-9848-757c6d57de26.webp?v=1759616931","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE9_4a3b0b47-5d50-4126-9a1f-b420eafbd21d.webp?v=1759616930","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE10_c3b56053-d55a-4b80-9476-4ba3efae568b.webp?v=1759616931","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE11_af1eee87-fb2f-4850-8a0e-66373ffde913.webp?v=1759616929","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE12_1c2e0698-e416-4b41-ad0c-c56c89f805cb.webp?v=1759616929","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE13_ddf6e346-c87c-4bb3-8d5b-f8cf572836ca.webp?v=1759616931"],"featured_image":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE1.webp?v=1759616929","options":["Shade"],"media":[{"alt":null,"id":42343338541334,"position":1,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE1.webp?v=1759616929"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE1.webp?v=1759616929","width":3001},{"alt":null,"id":42343339000086,"position":2,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE2_7b23a8eb-a114-4d2f-8172-724fb05b6a70.webp?v=1759616930"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE2_7b23a8eb-a114-4d2f-8172-724fb05b6a70.webp?v=1759616930","width":3000},{"alt":null,"id":42343339065622,"position":3,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE4_5d8e93e8-0171-4ae8-833d-5afd53df9521.webp?v=1759616929"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE4_5d8e93e8-0171-4ae8-833d-5afd53df9521.webp?v=1759616929","width":3000},{"alt":null,"id":42343339098390,"position":4,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE5_b8ad729f-5683-4c8a-ab8a-44289b42cf2a.webp?v=1759616930"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE5_b8ad729f-5683-4c8a-ab8a-44289b42cf2a.webp?v=1759616930","width":3000},{"alt":null,"id":42343339131158,"position":5,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE7_3956ac81-599c-4b81-bd2a-edc9d7556a0a.webp?v=1759616929"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE7_3956ac81-599c-4b81-bd2a-edc9d7556a0a.webp?v=1759616929","width":3000},{"alt":null,"id":42343339262230,"position":6,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE8_7fa1c016-d725-483e-9848-757c6d57de26.webp?v=1759616931"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE8_7fa1c016-d725-483e-9848-757c6d57de26.webp?v=1759616931","width":3000},{"alt":null,"id":42343339294998,"position":7,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE9_4a3b0b47-5d50-4126-9a1f-b420eafbd21d.webp?v=1759616930"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE9_4a3b0b47-5d50-4126-9a1f-b420eafbd21d.webp?v=1759616930","width":3000},{"alt":null,"id":42343338639638,"position":8,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE10_c3b56053-d55a-4b80-9476-4ba3efae568b.webp?v=1759616931"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE10_c3b56053-d55a-4b80-9476-4ba3efae568b.webp?v=1759616931","width":3000},{"alt":null,"id":42343338672406,"position":9,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE11_af1eee87-fb2f-4850-8a0e-66373ffde913.webp?v=1759616929"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE11_af1eee87-fb2f-4850-8a0e-66373ffde913.webp?v=1759616929","width":3001},{"alt":null,"id":42343338705174,"position":10,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE12_1c2e0698-e416-4b41-ad0c-c56c89f805cb.webp?v=1759616929"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE12_1c2e0698-e416-4b41-ad0c-c56c89f805cb.webp?v=1759616929","width":3000},{"alt":null,"id":42343338967318,"position":11,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE13_ddf6e346-c87c-4bb3-8d5b-f8cf572836ca.webp?v=1759616931"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400GMACCHIATO-TILE13_ddf6e346-c87c-4bb3-8d5b-f8cf572836ca.webp?v=1759616931","width":3000}],"requires_selling_plan":false,"selling_plan_groups":[{"id":"bc6478a662ffae32b3be35b3fe566fa707984433","name":"Subscribe and Save","options":[{"name":"Delivery every","position":1,"values":["month","2 months","12 months","3 months","6 months","9 months"]}],"selling_plans":[{"id":10626007318,"name":"Delivered every month and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"month"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10626040086,"name":"Delivered every 2 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"2 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10646061334,"name":"Delivered every 12 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"12 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10626072854,"name":"Delivered every 3 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"3 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10626105622,"name":"Delivered every 6 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"6 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10626138390,"name":"Delivered every 9 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"9 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}}],"app_id":"ordergroove-subscribe-and-save"}],"content":""},
    "variants": [
      
{
          "id": 50573349552406,
          "title": "Milkshake 100B",
          "available": true,
          "inventory": 14,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-100B-MILKSHAKE-TILE1.webp?v=1759871966","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-100B-MILKSHAKE-TILE2.webp?v=1759871968",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-100B-MILKSHAKE-TILE4.webp?v=1759871986","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-100B-MILKSHAKE-TILE5.webp?v=1759871987","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-100B-MILKSHAKE-TILE6.webp?v=1759871987","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-100B-MILKSHAKE-TILE7.webp?v=1759871989","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-100B-MILKSHAKE-TILE8.webp?v=1759871990","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-100B-MILKSHAKE-TILE9.webp?v=1759871991","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-100B-MILKSHAKE-TILE10.webp?v=1759871991","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-100B-MILKSHAKE-TILE11.webp?v=1759871992","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-100B-MILKSHAKE-TILE12.webp?v=1759871994"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573349585174,
          "title": "Angel Food 110N",
          "available": true,
          "inventory": 102,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-110N-ANGELFOOD-TILE1.webp?v=1759871993","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-110N-ANGELFOOD-TILE2.webp?v=1759871995",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-110N-ANGELFOOD-TILE4.webp?v=1759871997","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-110N-ANGELFOOD-TILE5.webp?v=1759871998","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-110N-ANGELFOOD-TILE6.webp?v=1759871999","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-110N-ANGELFOOD-TILE7.webp?v=1759872000","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-110N-ANGELFOOD-TILE8.webp?v=1759872001","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-110N-ANGELFOOD-TILE9.webp?v=1759872002","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-110N-ANGELFOOD-TILE10.webp?v=1759872002","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-110N-ANGELFOOD-TILE11.webp?v=1759872002","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-110N-ANGELFOOD-TILE12.webp?v=1759872005"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573349617942,
          "title": "Vanilla 120B",
          "available": true,
          "inventory": 59,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-120B-VANILLA-TILE1.webp?v=1759872005","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-120B-VANILLA-TILE2.webp?v=1759872007",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-120B-VANILLA-TILE4.webp?v=1759872009","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-120B-VANILLA-TILE5.webp?v=1759872010","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-120B-VANILLA-TILE6.webp?v=1759872010","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-120B-VANILLA-TILE7.webp?v=1759872011","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-120B-VANILLA-TILE8.webp?v=1759872010","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-120B-VANILLA-TILE9.webp?v=1759872014","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-120B-VANILLA-TILE10.webp?v=1759872012","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-120B-VANILLA-TILE11.webp?v=1759872015","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-120B-VANILLA-TILE12.webp?v=1759872017"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573349650710,
          "title": "Cashew 140G",
          "available": true,
          "inventory": 54,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-140G_CASHEW-TILE1.webp?v=1759872016","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-140G_CASHEW-TILE2.webp?v=1759872018",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-140G_CASHEW-TILE4.webp?v=1759872018","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-140G_CASHEW-TILE5.webp?v=1759872021","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-140G_CASHEW-TILE6.webp?v=1759872021","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-140G_CASHEW-TILE7.webp?v=1759872022","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-140G_CASHEW-TILE8.webp?v=1759872023","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-140G_CASHEW-TILE9.webp?v=1759872021","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-140G_CASHEW-TILE10.webp?v=1759872024","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-140G_CASHEW-TILE11.webp?v=1759872025","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-140G_CASHEW-TILE12.webp?v=1759872027"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573349683478,
          "title": "Creme Brulee 150G",
          "available": true,
          "inventory": 80,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-150G_CREME_BRULEE-TILE1.webp?v=1759872027","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-150G_CREME_BRULEE-TILE2.webp?v=1759872029",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-150G_CREME_BRULEE-TILE4.webp?v=1759872029","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-150G_CREME_BRULEE-TILE5.webp?v=1759872031","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-150G_CREME_BRULEE-TILE6.webp?v=1759872032","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-150G_CREME_BRULEE-TILE7.webp?v=1759872033","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-150G_CREME_BRULEE-TILE8.webp?v=1759872034","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-150G_CREME_BRULEE-TILE9.webp?v=1759872035","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-150G_CREME_BRULEE-TILE10.webp?v=1759872033","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-150G_CREME_BRULEE-TILE11.webp?v=1759872036","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-150G_CREME_BRULEE-TILE12.webp?v=1759872038"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573349716246,
          "title": "Shortbread 200B",
          "available": true,
          "inventory": 78,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-200B_SHORTBREAD-TILE1.webp?v=1759872037","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-200B_SHORTBREAD-TILE2.webp?v=1759872039",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-200B_SHORTBREAD-TILE4.webp?v=1759872040","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-200B_SHORTBREAD-TILE5.webp?v=1759872042","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-200B_SHORTBREAD-TILE6.webp?v=1759872043","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-200B_SHORTBREAD-TILE7.webp?v=1759872044","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-200B_SHORTBREAD-TILE8.webp?v=1759872045","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-200B_SHORTBREAD-TILE9.webp?v=1759872046","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-200B_SHORTBREAD-TILE10.webp?v=1759872045","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-200B_SHORTBREAD-TILE11.webp?v=1759872047","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-200B_SHORTBREAD-TILE12.webp?v=1759872049"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573349749014,
          "title": "Chai 210B",
          "available": true,
          "inventory": 101,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-210B_CHAI-TILE1.webp?v=1759872048","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-210B_CHAI-TILE2.webp?v=1759872050",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-210B_CHAI-TILE4.webp?v=1759872051","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-210B_CHAI-TILE5.webp?v=1759872054","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-210B_CHAI-TILE6.webp?v=1759872054","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-210B_CHAI-TILE7.webp?v=1759872053","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-210B_CHAI-TILE8.webp?v=1759872053","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-210B_CHAI-TILE9.webp?v=1759872054","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-210B_CHAI-TILE10.webp?v=1759872057","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-210B_CHAI-TILE11.webp?v=1759872058","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-210B_CHAI-TILE12.webp?v=1759872060"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573349781782,
          "title": "Custard 220N",
          "available": true,
          "inventory": 97,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-220N_CUSTARD-TILE1.webp?v=1759872060","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-220N_CUSTARD-TILE2.webp?v=1759872062",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-220N_CUSTARD-TILE4.webp?v=1759872062","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-220N_CUSTARD-TILE5.webp?v=1759872064","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-220N_CUSTARD-TILE6.webp?v=1759872065","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-220N_CUSTARD-TILE7.webp?v=1759872066","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-220N_CUSTARD-TILE8.webp?v=1759872067","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-220N_CUSTARD-TILE9.webp?v=1759872068","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-220N_CUSTARD-TILE10.webp?v=1759872067","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-220N_CUSTARD-TILE11.webp?v=1759872068","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-220N_CUSTARD-TILE12.webp?v=1759872069"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573349814550,
          "title": "Macaroon 230N",
          "available": true,
          "inventory": 68,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-230N_MACAROON-TILE1.webp?v=1759872071","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-230N_MACAROON-TILE2.webp?v=1759872073",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-230N_MACAROON-TILE4.webp?v=1759872072","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-230N_MACAROON-TILE5.webp?v=1759872076","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-230N_MACAROON-TILE6.webp?v=1759872074","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-230N_MACAROON-TILE8.webp?v=1759872079","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-230N_MACAROON-TILE9.webp?v=1759872080","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-230N_MACAROON-TILE10.webp?v=1759872079","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-230N_MACAROON-TILE11.webp?v=1759872081","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-230N_MACAROON-TILE12.webp?v=1759872082"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573349847318,
          "title": "Toasted Coconut 240N",
          "available": true,
          "inventory": 78,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-240N_TOASTED_COCONUT-TILE1.webp?v=1759872082","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-240N_TOASTED_COCONUT-TILE2.webp?v=1759872085",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-240N_TOASTED_COCONUT-TILE4.webp?v=1759872085","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-240N_TOASTED_COCONUT-TILE5.webp?v=1759872087","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-240N_TOASTED_COCONUT-TILE6.webp?v=1759872088","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-240N_TOASTED_COCONUT-TILE7.webp?v=1759872088","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-240N_TOASTED_COCONUT-TILE8.webp?v=1759872089","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-240N_TOASTED_COCONUT-TILE9.webp?v=1759872091","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-220N_CUSTARD-TILE8.webp?v=1759872067","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-240N_TOASTED_COCONUT-TILE10.webp?v=1759872091","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-240N_TOASTED_COCONUT-TILE11.webp?v=1759872090","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-240N_TOASTED_COCONUT-TILE12.webp?v=1759872094"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573349880086,
          "title": "Cheesecake 250G",
          "available": true,
          "inventory": 41,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-250G_CHEESECAKE-TILE1.webp?v=1759872092","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-250G_CHEESECAKE-TILE2.webp?v=1759872095",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-250G_CHEESECAKE-TILE4.webp?v=1759872096","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-250G_CHEESECAKE-TILE5.webp?v=1759872095","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-250G_CHEESECAKE-TILE6.webp?v=1759872099","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-250G_CHEESECAKE-TILE7.webp?v=1759872099","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-250G_CHEESECAKE-TILE8.webp?v=1759872098","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-250G_CHEESECAKE-TILE9.webp?v=1759872102","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-250G_CHEESECAKE-TILE10.webp?v=1759872102","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-250G_CHEESECAKE-TILE11.webp?v=1759872103"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573349912854,
          "title": "Apple Pie 255B",
          "available": true,
          "inventory": 10,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-255B_APPLE_PIE-TILE1.webp?v=1759872103","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-255B_APPLE_PIE-TILE2.webp?v=1759872105",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-255B_APPLE_PIE-TILE4.webp?v=1759872106","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-255B_APPLE_PIE-TILE5.webp?v=1759872108","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-255B_APPLE_PIE-TILE6.webp?v=1759872109","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-255B_APPLE_PIE-TILE7.webp?v=1759872108","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-255B_APPLE_PIE-TILE8.webp?v=1759872112","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-255B_APPLE_PIE-TILE9.webp?v=1759872113","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-255B_APPLE_PIE-TILE10.webp?v=1759872113","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-255B_APPLE_PIE-TILE11.webp?v=1759872114","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-255B_APPLE_PIE-TILE12.webp?v=1759872115"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573349945622,
          "title": "Cream Puff 260W",
          "available": true,
          "inventory": 593,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-260W_CREAM_PUFF-TILE1.webp?v=1759872115","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-260W_CREAM_PUFF-TILE2.webp?v=1759872117",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-260W_CREAM_PUFF-TILE4.webp?v=1759872117","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-260W_CREAM_PUFF-TILE5.webp?v=1759872118","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-260W_CREAM_PUFF-TILE6.webp?v=1759872121","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-260W_CREAM_PUFF-TILE7.webp?v=1759872122","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-260W_CREAM_PUFF-TILE8.webp?v=1759872123","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-260W_CREAM_PUFF-TILE9.webp?v=1759872124","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-260W_CREAM_PUFF-TILE10.webp?v=1759872125","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-260W_CREAM_PUFF-TILE11.webp?v=1759872126","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-260W_CREAM_PUFF-TILE12.webp?v=1759872127"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573349978390,
          "title": "Latte 300N",
          "available": true,
          "inventory": 67,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-300N_LATTE-TILE1.webp?v=1759872127","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-300N_LATTE-TILE2.webp?v=1759872129",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-300N_LATTE-TILE4_a7914f95-0526-4f53-8ab6-1cdd037f647a.webp?v=1759872127","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-300N_LATTE-TILE5_23b9d9a2-db15-44e4-bd84-8510e0705c1e.webp?v=1759872131","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-300N_LATTE-TILE6_3c52499e-58f6-4303-8f5b-8c754970a214.webp?v=1759872130","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-300N_LATTE-TILE7_1e63e62a-dde4-4a0e-9162-10678dc60b3c.webp?v=1759872133","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-300N_LATTE-TILE8_a86caf16-0a6d-429f-9ad3-d5db5dc91058.webp?v=1759872131","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-300N_LATTE-TILE9_747d0311-7050-495c-aad1-616708ae5c48.webp?v=1759872132","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-300N_LATTE-TILE10_e8029e5d-93db-4cea-a1f7-b6872d0b5b3f.webp?v=1759872135","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-300N_LATTE-TILE11_5c0826e3-fd6c-458a-a387-a4e0d661944a.webp?v=1759872136","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-300N_LATTE-TILE12.webp?v=1759872138"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573350011158,
          "title": "Iced Frappe 305C",
          "available": true,
          "inventory": 854,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-305C_ICED_FRAPPE-TILE1.webp?v=1759872137","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-305C_ICED_FRAPPE-TILE2.webp?v=1759872140",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-305C_ICED_FRAPPE-TILE4.webp?v=1759872140","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-305C_ICED_FRAPPE-TILE5.webp?v=1759872142","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-305C_ICED_FRAPPE-TILE6.webp?v=1759872143","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-305C_ICED_FRAPPE-TILE7.webp?v=1759872144","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-305C_ICED_FRAPPE-TILE8.webp?v=1759872145","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-305C_ICED_FRAPPE-TILE9.webp?v=1759872145","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-305C_ICED_FRAPPE-TILE10.webp?v=1759872146","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-305C_ICED_FRAPPE-TILE11.webp?v=1759872147","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-305C_ICED_FRAPPE-TILE12.webp?v=1759872147"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573350043926,
          "title": "Golden Milk 307N",
          "available": true,
          "inventory": 210,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-307N_GOLDEN_MILK-TILE1.webp?v=1759872148","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-307N_GOLDEN_MILK-TILE2.webp?v=1759872150",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-307N_GOLDEN_MILK-TILE4.webp?v=1759872150","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-307N_GOLDEN_MILK-TILE5.webp?v=1759872152","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-307N_GOLDEN_MILK-TILE6.webp?v=1759872154","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-307N_GOLDEN_MILK-TILE7.webp?v=1759872154","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-307N_GOLDEN_MILK-TILE8.webp?v=1759872155","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-307N_GOLDEN_MILK-TILE9.webp?v=1759872156","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-307N_GOLDEN_MILK-TILE10.webp?v=1759872156","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-307N_GOLDEN_MILK-TILE11.webp?v=1759872158","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-307N_GOLDEN_MILK-TILE12.webp?v=1759872157"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573350076694,
          "title": "Amaretti 310G",
          "available": true,
          "inventory": 16,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-310G-AMARETTI-TILE1.webp?v=1759872159","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-310G-AMARETTI-TILE2.webp?v=1759872161",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-310G-AMARETTI-TILE4.webp?v=1759872160","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-310G-AMARETTI-TILE5.webp?v=1759872164","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-310G-AMARETTI-TILE6.webp?v=1759872165","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-310G-AMARETTI-TILE7.webp?v=1759872166","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-310G-AMARETTI-TILE8.webp?v=1759872169","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-310G-AMARETTI-TILE9.webp?v=1759872170","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-310G-AMARETTI-TILE10.webp?v=1759872170","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-310G-AMARETTI-TILE11.webp?v=1759872171","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-310G-AMARETTI-TILE12.webp?v=1759872173"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573350109462,
          "title": "TresLeches 320G",
          "available": true,
          "inventory": 51,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-320G_TRES_LECHES-TILE1.webp?v=1759872173","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-320G_TRES_LECHES-TILE2.webp?v=1759872175",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-320G_TRES_LECHES-TILE4.webp?v=1759872175","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-320G_TRES_LECHES-TILE5.webp?v=1759872178","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-320G_TRES_LECHES-TILE6.webp?v=1759872178","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-320G_TRES_LECHES-TILE7.webp?v=1759872179","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-320G_TRES_LECHES-TILE8.webp?v=1759872180","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-320G_TRES_LECHES-TILE9.webp?v=1759872182","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-320G_TRES_LECHES-TILE10.webp?v=1759872181","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-320G_TRES_LECHES-TILE11.webp?v=1759872183","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-320G_TRES_LECHES-TILE12.webp?v=1759872183"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573350142230,
          "title": "Butter Pecan 330N",
          "available": true,
          "inventory": 4182,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-330N_BUTTER_PECAN-TILE1.webp?v=1759872183","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-330N_BUTTER_PECAN-TILE2.webp?v=1759872186",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-330N_BUTTER_PECAN-TILE4.webp?v=1759872187","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-330N_BUTTER_PECAN-TILE5.webp?v=1759872189","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-330N_BUTTER_PECAN-TILE6.webp?v=1759872189","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-330N_BUTTER_PECAN-TILE7.webp?v=1759872191","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-330N_BUTTER_PECAN-TILE8.webp?v=1759872192","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-330N_BUTTER_PECAN-TILE9.webp?v=1759872192","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-330N_BUTTER_PECAN-TILE10.webp?v=1759872192","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-330N_BUTTER_PECAN-TILE11.webp?v=1759872194","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-330N_BUTTER_PECAN-TILE12.webp?v=1759872195"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573350174998,
          "title": "Baklava 340G",
          "available": true,
          "inventory": 61,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-340G-BAKLAVA-TILE1.webp?v=1759872195","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-340G-BAKLAVA-TILE2.webp?v=1759872197",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-340G-BAKLAVA-TILE4.webp?v=1759872198","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-340G-BAKLAVA-TILE5.webp?v=1759872200","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-340G-BAKLAVA-TILE6.webp?v=1759872200","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-340G-BAKLAVA-TILE7.webp?v=1759872199","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-340G-BAKLAVA-TILE8.webp?v=1759872203","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-340G-BAKLAVA-TILE9.webp?v=1759872203","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-340G-BAKLAVA-TILE10.webp?v=1759872203","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-340G-BAKLAVA-TILE11.webp?v=1759872205","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-340G-BAKLAVA-TILE12.webp?v=1759872206"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573350207766,
          "title": "Dulce De Leche 350G",
          "available": true,
          "inventory": 300,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-350G_DULCE_DE_LECHE-TILE1.webp?v=1759872205","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-350G_DULCE_DE_LECHE-TILE2.webp?v=1759872206",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-350G_DULCE_DE_LECHE-TILE4.webp?v=1759872209","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-350G_DULCE_DE_LECHE-TILE5.webp?v=1759872208","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-350G_DULCE_DE_LECHE-TILE6.webp?v=1759872211","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-350G_DULCE_DE_LECHE-TILE7.webp?v=1759872212","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-350G_DULCE_DE_LECHE-TILE8.webp?v=1759872211","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-350G_DULCE_DE_LECHE-TILE9.webp?v=1759872214","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-350G_DULCE_DE_LECHE-TILE10.webp?v=1759872214","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-350G_DULCE_DE_LECHE-TILE11.webp?v=1759872216","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-350G_DULCE_DE_LECHE-TILE12.webp?v=1759872217"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573350240534,
          "title": "Creme Caramel 355W",
          "available": true,
          "inventory": 633,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-355W_CREME_CARAMEL-TILE1.webp?v=1759872217","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-355W_CREME_CARAMEL-TILE2.webp?v=1759872219",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-355W_CREME_CARAMEL-TILE4.webp?v=1759872219","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-355W_CREME_CARAMEL-TILE5.webp?v=1759872222","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-355W_CREME_CARAMEL-TILE6.webp?v=1759872223","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-355W_CREME_CARAMEL-TILE7.webp?v=1759872224","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-355W_CREME_CARAMEL-TILE8.webp?v=1759872222","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-355W_CREME_CARAMEL-TILE9.webp?v=1759872226","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-355W_CREME_CARAMEL-TILE10.webp?v=1759872224","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-355W_CREME_CARAMEL-TILE11.webp?v=1759872227","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-355W_CREME_CARAMEL-TILE12.webp?v=1759872226"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573350273302,
          "title": "Macchiato 400G",
          "available": true,
          "inventory": 69,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400G_MACCHIATO-TILE1.webp?v=1759872228","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400G_MACCHIATO-TILE2.webp?v=1759872230",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400G_MACCHIATO-TILE4.webp?v=1759872231","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400G_MACCHIATO-TILE5.webp?v=1759872233","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400G_MACCHIATO-TILE6.webp?v=1759872233","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400G_MACCHIATO-TILE7.webp?v=1759872235","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400G_MACCHIATO-TILE8.webp?v=1759872235","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400G_MACCHIATO-TILE9.webp?v=1759872237","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400G_MACCHIATO-TILE10.webp?v=1759872236","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-400G_MACCHIATO-TILE11.webp?v=1759872238"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573350306070,
          "title": "Toffee 420G",
          "available": true,
          "inventory": 48,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-420G_TOFFEE-TILE1.webp?v=1759872238","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-420G_TOFFEE-TILE2.webp?v=1759872240",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-420G_TOFFEE-TILE4.webp?v=1759872241","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-420G_TOFFEE-TILE5.webp?v=1759872240","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-420G_TOFFEE-TILE6.webp?v=1759872243","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-420G_TOFFEE-TILE7.webp?v=1759872244","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-420G_TOFFEE-TILE8.webp?v=1759872245","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-420G_TOFFEE-TILE9.webp?v=1759872244","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-420G_TOFFEE-TILE10.webp?v=1759872246","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-420G_TOFFEE-TILE11.webp?v=1759872248","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-420G_TOFFEE-TILE12.webp?v=1759872249"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573350338838,
          "title": "Pistachio Cream 425N",
          "available": true,
          "inventory": 336,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-425N_PISTACHIO_CREAM-TILE1.webp?v=1759872249","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-425N_PISTACHIO_CREAM-TILE2.webp?v=1759872251",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-425N_PISTACHIO_CREAM-TILE4.webp?v=1759872250","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-425N_PISTACHIO_CREAM-TILE5.webp?v=1759872253","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-425N_PISTACHIO_CREAM-TILE6.webp?v=1759872254","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-425N_PISTACHIO_CREAM-TILE7.webp?v=1759872255","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-425N_PISTACHIO_CREAM-TILE8.webp?v=1759872257","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-425N_PISTACHIO_CREAM-TILE9.webp?v=1759872257","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-425N_PISTACHIO_CREAM-TILE10.webp?v=1759872256","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-425N_PISTACHIO_CREAM-TILE11.webp?v=1759872257","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-425N_PISTACHIO_CREAM-TILE12.webp?v=1759872258"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573350371606,
          "title": "Gingerbread 430N",
          "available": true,
          "inventory": 6,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-430N_GINGERBREAD-TILE1.webp?v=1759872260","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-430N_GINGERBREAD-TILE2.webp?v=1759872262",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-430N_GINGERBREAD-TILE4.webp?v=1759872262","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-430N_GINGERBREAD-TILE5.webp?v=1759872265","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-430N_GINGERBREAD-TILE6.webp?v=1759872265","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-430N_GINGERBREAD-TILE7.webp?v=1759872266","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-430N_GINGERBREAD-TILE8.webp?v=1759872267","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-430N_GINGERBREAD-TILE9.webp?v=1759872268","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-430N_GINGERBREAD-TILE10.webp?v=1759872268","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-430N_GINGERBREAD-TILE11.webp?v=1759872270","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-430N_GINGERBREAD-TILE12.webp?v=1759872269"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573350404374,
          "title": "Cinnamon 440G",
          "available": true,
          "inventory": 180,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-440G_CINNAMON-TILE1.webp?v=1759872271","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-440G_CINNAMON-TILE2.webp?v=1759872273",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-440G_CINNAMON-TILE4.webp?v=1759872273","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-440G_CINNAMON-TILE5.webp?v=1759872276","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-440G_CINNAMON-TILE6.webp?v=1759872277","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-440G_CINNAMON-TILE7.webp?v=1759872276","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-440G_CINNAMON-TILE8.webp?v=1759872279","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-440G_CINNAMON-TILE9.webp?v=1759872280","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-440G_CINNAMON-TILE10.webp?v=1759872280","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-440G_CINNAMON-TILE11.webp?v=1759872282","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-440G_CINNAMON-TILE12.webp?v=1759872283"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573350437142,
          "title": "Chocolate Mousse 450G",
          "available": true,
          "inventory": 127,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-450G_CHOCOLATE_MOUSSE-TILE1.webp?v=1759872281","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-450G_CHOCOLATE_MOUSSE-TILE2.webp?v=1759872285",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-450G_CHOCOLATE_MOUSSE-TILE4.webp?v=1759872284","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-450G_CHOCOLATE_MOUSSE-TILE5.webp?v=1759872288","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-450G_CHOCOLATE_MOUSSE-TILE6.webp?v=1759872286","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-450G_CHOCOLATE_MOUSSE-TILE7.webp?v=1759872287","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-450G_CHOCOLATE_MOUSSE-TILE8.webp?v=1759872290","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-450G_CHOCOLATE_MOUSSE-TILE9.webp?v=1759872292","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-450G_CHOCOLATE_MOUSSE-TILE10.webp?v=1759872291","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-450G_CHOCOLATE_MOUSSE-TILE11.webp?v=1759872292","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-450G_CHOCOLATE_MOUSSE-TILE12.webp?v=1759872295"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573350469910,
          "title": "Peanut Butter 455R",
          "available": true,
          "inventory": 20,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-455R_PEANUT_BUTTER_CUP-TILE1.webp?v=1759872296","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-455R_PEANUT_BUTTER_CUP-TILE2.webp?v=1759872297",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-455R_PEANUT_BUTTER_CUP-TILE4.webp?v=1759872298","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-455R_PEANUT_BUTTER_CUP-TILE5.webp?v=1759872297","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-455R_PEANUT_BUTTER_CUP-TILE6.webp?v=1759872302","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-455R_PEANUT_BUTTER_CUP-TILE7.webp?v=1759872302","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-455R_PEANUT_BUTTER_CUP-TILE8.webp?v=1759872303","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-455R_PEANUT_BUTTER_CUP-TILE9.webp?v=1759872304","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-455R_PEANUT_BUTTER_CUP-TILE10.webp?v=1759872302","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-455R_PEANUT_BUTTER_CUP-TILE11.webp?v=1759872305","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-455R_PEANUT_BUTTER_CUP-TILE12.webp?v=1759872307"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573350502678,
          "title": "Mocha 500G",
          "available": true,
          "inventory": 97,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-500G_MOCHA-TILE1.webp?v=1759872306","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-500G_MOCHA-TILE2.webp?v=1759872308",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-500G_MOCHA-TILE4.webp?v=1759872310","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-500G_MOCHA-TILE5.webp?v=1759872311","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-500G_MOCHA-TILE6.webp?v=1759872311","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-500G_MOCHA-TILE7.webp?v=1759872312","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-500G_MOCHA-TILE8.webp?v=1759872314","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-500G_MOCHA-TILE9.webp?v=1759872315","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-500G_MOCHA-TILE10.webp?v=1759872315","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-500G_MOCHA-TILE11.webp?v=1759872314","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-500G_MOCHA-TILE12.webp?v=1759872318"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573350535446,
          "title": "Cocoa 510R",
          "available": true,
          "inventory": 73,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-510R_COCOA-TILE1.webp?v=1759872317","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-510R_COCOA-TILE2.webp?v=1759872319",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-510R_COCOA-TILE4.webp?v=1759872320","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-510R_COCOA-TILE5.webp?v=1759872322","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-510R_COCOA-TILE6.webp?v=1759872323","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-510R_COCOA-TILE7.webp?v=1759872327","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-510R_COCOA-TILE8.webp?v=1759872325","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-510R_COCOA-TILE9.webp?v=1759872326","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-510R_COCOA-TILE10.webp?v=1759872326","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-510R_COCOA-TILE11.webp?v=1759872325","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-510R_COCOA-TILE12.webp?v=1759872328"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573350568214,
          "title": "Hot Fudge 550R",
          "available": true,
          "inventory": 85,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-550R_HOT_FUDGE-TILE1.webp?v=1759872328","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-550R_HOT_FUDGE-TILE2.webp?v=1759872330",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-550R_HOT_FUDGE-TILE4.webp?v=1759872329","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-550R_HOT_FUDGE-TILE5.webp?v=1759872332","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-550R_HOT_FUDGE-TILE6.webp?v=1759872333","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-550R_HOT_FUDGE-TILE7.webp?v=1759872334","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-550R_HOT_FUDGE-TILE8.webp?v=1759872335","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-550R_HOT_FUDGE-TILE9.webp?v=1759872336","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-550R_HOT_FUDGE-TILE10.webp?v=1759872336","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-550R_HOT_FUDGE-TILE11.webp?v=1759872338","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-550R_HOT_FUDGE-TILE12.webp?v=1759872339"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573350600982,
          "title": "Ganache 560R",
          "available": true,
          "inventory": 102,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-560R_GANACHE-TILE1.webp?v=1759872339","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-560R_GANACHE-TILE2.webp?v=1759872341",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-560R_GANACHE-TILE4.webp?v=1759872341","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-560R_GANACHE-TILE5.webp?v=1759872343","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-560R_GANACHE-TILE6.webp?v=1759872345","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-560R_GANACHE-TILE7.webp?v=1759872345","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-560R_GANACHE-TILE8.webp?v=1759872346","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-560R_GANACHE-TILE10.webp?v=1759872346","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-560R_GANACHE-TILE11.webp?v=1759872346","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-560R_GANACHE-TILE12.webp?v=1759872347"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573350633750,
          "title": "Chocolate Swirl 570W",
          "available": true,
          "inventory": 98,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-570W_CHOCOLATE_SWIRL-TILE1.webp?v=1759872349","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-570W_CHOCOLATE_SWIRL-TILE2.webp?v=1759872352",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-570W_CHOCOLATE_SWIRL-TILE4.webp?v=1759872351","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-570W_CHOCOLATE_SWIRL-TILE5.webp?v=1759872354","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-570W_CHOCOLATE_SWIRL-TILE6.webp?v=1759872354","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-570W_CHOCOLATE_SWIRL-TILE7.webp?v=1759872355","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-570W_CHOCOLATE_SWIRL-TILE8.webp?v=1759872356","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-570W_CHOCOLATE_SWIRL-TILE9.webp?v=1759872358","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-570W_CHOCOLATE_SWIRL-TILE10.webp?v=1759872357","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-570W_CHOCOLATE_SWIRL-TILE11.webp?v=1759872359","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-570W_CHOCOLATE_SWIRL-TILE12.webp?v=1759872360"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573350666518,
          "title": "Truffle Cake 580N",
          "available": true,
          "inventory": 102,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-580N_TRUFFLE_CAKE-TILE1.webp?v=1759872359","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-580N_TRUFFLE_CAKE-TILE2.webp?v=1759872362",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-580N_TRUFFLE_CAKE-TILE4.webp?v=1759872362","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-580N_TRUFFLE_CAKE-TILE5.webp?v=1759872364","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-580N_TRUFFLE_CAKE-TILE6.webp?v=1759872365","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-580N_TRUFFLE_CAKE-TILE7.webp?v=1759872366","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-580N_TRUFFLE_CAKE-TILE8.webp?v=1759872367","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-580N_TRUFFLE_CAKE-TILE9.webp?v=1759872369","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-580N_TRUFFLE_CAKE-TILE10.webp?v=1759872367","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-580N_TRUFFLE_CAKE-TILE11.webp?v=1759872372","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-580N_TRUFFLE_CAKE-TILE12.webp?v=1759872371"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573350699286,
          "title": "True Lava Cake 590R",
          "available": false,
          "inventory": 0,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-590R_TRUE_LAVA_CAKE-TILE1.webp?v=1759872370","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-590R_TRUE_LAVA_CAKE-TILE2.webp?v=1759872372",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-590R_TRUE_LAVA_CAKE-TILE4.webp?v=1759872373","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-590R_TRUE_LAVA_CAKE-TILE5.webp?v=1759872372","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-590R_TRUE_LAVA_CAKE-TILE6.webp?v=1759872375","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-590R_TRUE_LAVA_CAKE-TILE7.webp?v=1759872376","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-590R_TRUE_LAVA_CAKE-TILE8.webp?v=1759872377","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-590R_TRUE_LAVA_CAKE-TILE9.webp?v=1759872378","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-590R_TRUE_LAVA_CAKE-TILE10.webp?v=1759872378","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-590R_TRUE_LAVA_CAKE-TILE11.webp?v=1759872380","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-590R_TRUE_LAVA_CAKE-TILE12.webp?v=1759872381"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573350732054,
          "title": "Molten Cocoa 595N",
          "available": true,
          "inventory": 96,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-595N_MOLTEN_COCOA-TILE1_dbda19a7-c8af-4f97-8328-ab7199971080.webp?v=1759872381","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-595N_MOLTEN_COCOA-TILE2_ae86f811-69f5-4762-8dd1-988669a284db.webp?v=1759872381",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-595N_MOLTEN_COCOA-TILE4_14cec0e8-70b4-46cc-8569-142471bbfa44.webp?v=1759872384","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-595N_MOLTEN_COCOA-TILE5_212b94cc-8ece-43fa-a0cd-518593d44942.webp?v=1759872385","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-595N_MOLTEN_COCOA-TILE6_80cd18aa-958f-4cbb-8a57-e3bdc7690435.webp?v=1759872387","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-595N_MOLTEN_COCOA-TILE7_062e0c7b-45c0-4705-99ee-72e4d26b9d3e.webp?v=1759872387","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-595N_MOLTEN_COCOA-TILE8_fa6c910d-ad08-4c09-bda9-82316be67716.webp?v=1759872388","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-595N_MOLTEN_COCOA-TILE9_83bb33b7-36d1-4e25-8af9-0cd179b64e5d.webp?v=1759872389","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-595N_MOLTEN_COCOA-TILE11_ffdd5004-1578-48b9-91ea-746d655b0294.webp?v=1759872388","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-595N_MOLTEN_COCOA-TILE12_7bde3ac2-b19c-4479-8d83-a16a981a5a64.webp?v=1759872389"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573350764822,
          "title": "Espresso 600N",
          "available": true,
          "inventory": 89,
          "max_product_quantity": 5,
          "price": "€38,00",
          "save_price": "€-38,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-600N-ESPRESSO-TILE1_07837e9b-3999-4a20-a67a-ab7be2e9d1c3.webp?v=1759872391","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-600N-ESPRESSO-TILE2_68bb4110-551c-455a-ad03-762ea702afb1.webp?v=1759872394",{"alt":null,"id":42389450686742,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/15365cd368ee4cf9a29f93c6e64c17ac.thumbnail.0000000000.jpg?v=1759872037"},"aspect_ratio":0.558,"duration":80000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.SD-480p-1.5Mbps-59057496.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-1080p-7.2Mbps-59057496.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.HD-720p-4.5Mbps-59057496.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/15365cd368ee4cf9a29f93c6e64c17ac\/15365cd368ee4cf9a29f93c6e64c17ac.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-600N-ESPRESSO-TILE4_f4abb31f-a4d9-41ca-a251-2dc77b32b60e.webp?v=1759872393","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-600N-ESPRESSO-TILE5_0ad53e04-0ea7-4185-9064-32a652337839.webp?v=1759872396","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-600N-ESPRESSO-TILE6_c47fd2e9-6ecb-44d8-8386-7549e922df5e.webp?v=1759872397","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-600N-ESPRESSO-TILE7_9db4f40f-5752-456f-b5ff-c4e9237daa54.webp?v=1759872397","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-600N-ESPRESSO-TILE8_a934d515-d5d6-46d7-9884-adfb42d5541e.webp?v=1759872398","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-600N-ESPRESSO-TILE9_6141488b-615a-4b5e-9514-6b9161d3bb30.webp?v=1759872399","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-595N_MOLTEN_COCOA-TILE8_fa6c910d-ad08-4c09-bda9-82316be67716.webp?v=1759872388","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-600N-ESPRESSO-TILE11_c8084db3-c48e-476e-a650-2bc8e8a17675.webp?v=1759872398","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-EASYBLUR-600N-ESPRESSO-TILE12_7c0b7f84-d71f-4c51-bdc8-26fd1159cfb7.webp?v=1759872399"],
              "shortDescription": "Ultra-blurring & smoothing with a real-life filter effect and airbrushed finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        }
      
    ]
  }
</script>

          
          
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10234752729366"><div data-oke-reviews-version="0.87.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 4.9 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 98.3516%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 4.9 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">4.9</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"4.9","reviewCount":1214} </script></div></div>
    
        (1214)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB01166" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        











<div  class="back-in-stock-container" style="display: none;"><div class="product-back-in-stock-buttons">
    
    

    
    
  </div></div>

        

         
          
















<div
  
  class="waitlist-container"
  
    style="display: none;"
  
><div class="product-waitlist-buttons">
      
      
        <a href="/en-fr/products/easy-blur-natural-airbrush-foundation-with-niacinamide-hb01166m?variant=50573350273302" class="button button--primary notify-me-btn">Notify Me</a>
      
    </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="template--26760399323414__featured_collection_B3mC3V"
      data-form-id="product-form-template--26760399323414__featured_collection_B3mC3V"
      dl-product-id="HB01166"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-template--26760399323414__featured_collection_B3mC3V" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="50573350273302"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="69"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <button
              id="ProductSubmitButton-template--26760399323414__featured_collection_B3mC3V"
              data-dl-source="Collection"
              data-url="/en-fr/products/easy-blur-natural-airbrush-foundation-with-niacinamide-hb01166m"
              type="submit"
              name="add"
              class="product-form__submit button button--full-width button--primary"
              
              
            >
              <span>
                Add to Bag
              </span>
            </button></div><input type="hidden" name="product-id" value="10234752729366" /><input type="hidden" name="section-id" value="template--26760399323414__featured_collection_B3mC3V" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li><li
        id="Slide-template--26760399323414__featured_collection_B3mC3V-4"
        class="grid__item slider__slide"
        
      >
        



  







  








      
      
















  

  

  

  

  

  

  

  

  






























  
  

  
    
    




<section
  class="featured-card-product featured-card-product--new-design"
  
    data-card-design="new"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB01250"
    dl-product-name="#FAUXFILTER Under Eye Color Corrector"
    dl-product-brand="Huda Beauty US"
    dl-product-category="Color Corrector"
    dl-product-category2=""
    dl-product-category3=""
    dl-product-variant="HB01250"
    dl-product-price="32,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/fauxfilter-under-eye-color-corrector-hb01025m?variant=50573420069142"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE1.webp?v=1759870811&width=630 1x,            //hudabeauty.com/cdn/shop/files/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE1.webp?v=1759870811&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/fauxfilter-under-eye-color-corrector-hb01025m?variant=50573420069142"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE1.webp?v=1759870811&width=630"
          alt="#FAUXFILTER Under Eye Color Corrector"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE2.webp?v=1759870815&width=630 1x,              //hudabeauty.com/cdn/shop/files/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE2.webp?v=1759870815&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE2.webp?v=1759870815&width=630"
            alt=""
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">BEST SELLER</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
<img
            data-src="//hudabeauty.com/cdn/shop/t/162/assets/vegan-friendly.svg?v=95865949212260522311775984105"
            loading="lazy"
            width="60"
            height="60"
            alt="Vegan Friendly Badge"
          ></div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-template--26760399323414__featured_collection_B3mC3V-10234759741718"
      class="product__info-container"
      data-section="template--26760399323414__featured_collection_B3mC3V"
      data-url="/en-fr/products/fauxfilter-under-eye-color-corrector-hb01025m?variant=50573420069142"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/fauxfilter-under-eye-color-corrector-hb01025m?variant=50573420069142">
          
            <h3 class="h6">#FAUXFILTER Under Eye Color Corrector
</h3>
          
        </a>
      </div>
      
      

      <div
        class="product_card_price mb-xs"
        id="price-template--26760399323414__featured_collection_B3mC3V"
        data-url="/en-fr/products/fauxfilter-under-eye-color-corrector-hb01025m?variant=50573420069142"
        role="status"
        
      >


<div
    class="price      price-section-data price--large"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €32,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €32,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€-32,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker">
        
          


<div class="loading__spinner">
  <svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" class="spinner" viewbox="0 0 66 66"><circle stroke-width="6" cx="33" cy="33" r="30" fill="none" class="path"/></svg>

</div>


<link href="//hudabeauty.com/cdn/shop/t/162/assets/product-card-swatches.css?v=48729697193943970631775984107" rel="stylesheet" type="text/css" media="all" />





<div
  class="product-card-swatches featured-carousel"
  data-handle="fauxfilter-under-eye-color-corrector-hb01025m"
>

        

        
        
        
        
        

          <div
            data-id="50573419839766"
            class="product-swatch br-round"
            style="background-color: #E3B9B3; display: flex;"
            aria-label="Cherry Light"
            title="Cherry Light"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573419872534"
            class="product-swatch br-round"
            style="background-color: #E6BBAB; display: flex;"
            aria-label="Peach Light"
            title="Peach Light"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573419905302"
            class="product-swatch br-round"
            style="background-color: #f6a39e; display: flex;"
            aria-label="Pink Pomelo"
            title="Pink Pomelo"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573419938070"
            class="product-swatch br-round"
            style="background-color: #f5957f; display: flex;"
            aria-label="Peach"
            title="Peach"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573419970838"
            class="product-swatch br-round"
            style="background-color: #F37A54; display: flex;"
            aria-label="Mango"
            title="Mango"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573420003606"
            class="product-swatch br-round"
            style="background-color: #CF6138; display: flex;"
            aria-label="Papaya"
            title="Papaya"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573420036374"
            class="product-swatch br-round disabled-swatch"
            style="background-color: #CA4C32; display: flex;"
            aria-label="Blood Orange"
            title="Blood Orange"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573420069142"
            class="product-swatch br-round"
            style="background-color: #ef9c92; display: flex;"
            aria-label="Cherry Blossom"
            title="Cherry Blossom"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573420101910"
            class="product-swatch br-round"
            style="background-color: #d46357; display: flex;"
            aria-label="Lychee"
            title="Lychee"
          ></div>
        

<div class="no-js-hidden quick-add"><modal-opener data-modal="#QuickAdd-10234759741718">
          <button
            id="-submit"
            type="button"
            name="add"
            class="color-swatch-item br-round featured-card_choose-more-colors"
            aria-haspopup="dialog"
            aria-labelledby="-submit title--10234759741718"
            data-product-url="/en-fr/products/fauxfilter-under-eye-color-corrector-hb01025m?view=quick-view"
            data-handle="fauxfilter-under-eye-color-corrector-hb01025m"
          ><svg aria-hidden="true" width="10" height="11" viewbox="0 0 10 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Plus">
<path id="Vector 4" d="M0 5.5H10" stroke="black"/>
<path id="Vector 3" d="M5 0.5V10.5" stroke="black"/>
</g>
</svg>
</button>
        </modal-opener>
        <quick-add-modal id="QuickAdd-10234759741718" class="quick-add-modal">
          <div
            role="dialog"
            aria-label="Choose options for #FAUXFILTER Under Eye Color Corrector"
            aria-modal="true"
            class="quick-add-modal__content global-settings-popup"
            tabindex="-1"
          >
            <button
              id="ModalClose-10234759741718"
              type="button"
              class="popup__close"
              aria-label="Close"
            ><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewbox="0 0 20 19" fill="none">
  <path d="M18.9999 0.5L1.25488 18.245L18.9999 0.5Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
  <path d="M18.745 18.245L1 0.5L18.745 18.245Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
</svg></button>
            <div id="QuickAddInfo-10234759741718" class="quick-add-modal__content-info"></div>
          </div>
        </quick-add-modal></div></div><script type="application/json" data-selected-variant-meta>
  {
    "default_selected_variant": {"id":50573420069142,"title":"Cherry Blossom","option1":"Cherry Blossom","option2":null,"option3":null,"sku":"HB01250","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FAUXFILTER Under Eye Color Corrector - Cherry Blossom","public_title":"Cherry Blossom","options":["Cherry Blossom"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},
    "product": {"id":10234759741718,"title":"#FAUXFILTER Under Eye Color Corrector","handle":"fauxfilter-under-eye-color-corrector-hb01025m","description":"","published_at":"2025-10-05T02:30:04+04:00","created_at":"2025-10-05T02:29:51+04:00","vendor":"Huda Beauty US","type":"","tags":["_okendo:syndication_key:fauxfilter-under-eye-color-corrector-hb01025m","HB"],"price":3200,"price_min":3200,"price_max":3200,"available":true,"price_varies":false,"compare_at_price":null,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":50573419839766,"title":"Cherry Light","option1":"Cherry Light","option2":null,"option3":null,"sku":"HB01395","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FAUXFILTER Under Eye Color Corrector - Cherry Light","public_title":"Cherry Light","options":["Cherry Light"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573419872534,"title":"Peach Light","option1":"Peach Light","option2":null,"option3":null,"sku":"HB01394","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FAUXFILTER Under Eye Color Corrector - Peach Light","public_title":"Peach Light","options":["Peach Light"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573419905302,"title":"Pink Pomelo","option1":"Pink Pomelo","option2":null,"option3":null,"sku":"HB01023","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FAUXFILTER Under Eye Color Corrector - Pink Pomelo","public_title":"Pink Pomelo","options":["Pink Pomelo"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573419938070,"title":"Peach","option1":"Peach","option2":null,"option3":null,"sku":"HB01024","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FAUXFILTER Under Eye Color Corrector - Peach","public_title":"Peach","options":["Peach"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573419970838,"title":"Mango","option1":"Mango","option2":null,"option3":null,"sku":"HB01025","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FAUXFILTER Under Eye Color Corrector - Mango","public_title":"Mango","options":["Mango"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573420003606,"title":"Papaya","option1":"Papaya","option2":null,"option3":null,"sku":"HB01026","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FAUXFILTER Under Eye Color Corrector - Papaya","public_title":"Papaya","options":["Papaya"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573420036374,"title":"Blood Orange","option1":"Blood Orange","option2":null,"option3":null,"sku":"HB01027","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"#FAUXFILTER Under Eye Color Corrector - Blood Orange","public_title":"Blood Orange","options":["Blood Orange"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573420069142,"title":"Cherry Blossom","option1":"Cherry Blossom","option2":null,"option3":null,"sku":"HB01250","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FAUXFILTER Under Eye Color Corrector - Cherry Blossom","public_title":"Cherry Blossom","options":["Cherry Blossom"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573420101910,"title":"Lychee","option1":"Lychee","option2":null,"option3":null,"sku":"HB01309","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FAUXFILTER Under Eye Color Corrector - Lychee","public_title":"Lychee","options":["Lychee"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}],"images":["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE1_06f3a03e-068b-43a1-ab8c-167c0a93cae6.webp?v=1759616954","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE2_6643f615-6080-4c95-b744-120e9b5fac32.webp?v=1759616954","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE4_6df99944-2d63-4411-befe-e1765dd16b7d.webp?v=1759616954","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE5_0ecd23fa-3c00-4214-936b-393dc548e22f.webp?v=1759616954","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE6_6d0ae2ab-d1f1-4b95-9703-09cae42dc93c.webp?v=1759616954","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE7_b1854823-b2e5-4aa8-b0fe-5d686757f522.webp?v=1759616955","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE8_a977a7d8-ce92-4a7b-a1d2-a63ea1e5f7e6.webp?v=1759616954","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE9_7b044361-7753-47d8-a58a-33fad090c04d.webp?v=1759616954","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE10_5c093c82-4ba1-4549-919e-f14f9c94e324.webp?v=1759616954","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE11_117411b5-f651-4112-8982-a0f03a90c3e3.webp?v=1759616954","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE12_db8c8e20-9253-4576-b795-d65cf9b25ea0.webp?v=1759616954"],"featured_image":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE1_06f3a03e-068b-43a1-ab8c-167c0a93cae6.webp?v=1759616954","options":["Shade"],"media":[{"alt":null,"id":42343544553750,"position":1,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE1_06f3a03e-068b-43a1-ab8c-167c0a93cae6.webp?v=1759616954"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE1_06f3a03e-068b-43a1-ab8c-167c0a93cae6.webp?v=1759616954","width":3001},{"alt":null,"id":42343545864470,"position":2,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE2_6643f615-6080-4c95-b744-120e9b5fac32.webp?v=1759616954"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE2_6643f615-6080-4c95-b744-120e9b5fac32.webp?v=1759616954","width":3000},{"alt":null,"id":42343548485910,"position":3,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE4_6df99944-2d63-4411-befe-e1765dd16b7d.webp?v=1759616954"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE4_6df99944-2d63-4411-befe-e1765dd16b7d.webp?v=1759616954","width":3001},{"alt":null,"id":42343550288150,"position":4,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE5_0ecd23fa-3c00-4214-936b-393dc548e22f.webp?v=1759616954"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE5_0ecd23fa-3c00-4214-936b-393dc548e22f.webp?v=1759616954","width":3001},{"alt":null,"id":42343550550294,"position":5,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE6_6d0ae2ab-d1f1-4b95-9703-09cae42dc93c.webp?v=1759616954"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE6_6d0ae2ab-d1f1-4b95-9703-09cae42dc93c.webp?v=1759616954","width":3001},{"alt":null,"id":42343550648598,"position":6,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE7_b1854823-b2e5-4aa8-b0fe-5d686757f522.webp?v=1759616955"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE7_b1854823-b2e5-4aa8-b0fe-5d686757f522.webp?v=1759616955","width":3001},{"alt":null,"id":42343550910742,"position":7,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE8_a977a7d8-ce92-4a7b-a1d2-a63ea1e5f7e6.webp?v=1759616954"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE8_a977a7d8-ce92-4a7b-a1d2-a63ea1e5f7e6.webp?v=1759616954","width":3001},{"alt":null,"id":42343551140118,"position":8,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE9_7b044361-7753-47d8-a58a-33fad090c04d.webp?v=1759616954"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE9_7b044361-7753-47d8-a58a-33fad090c04d.webp?v=1759616954","width":3001},{"alt":null,"id":42343542096150,"position":9,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE10_5c093c82-4ba1-4549-919e-f14f9c94e324.webp?v=1759616954"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE10_5c093c82-4ba1-4549-919e-f14f9c94e324.webp?v=1759616954","width":3001},{"alt":null,"id":42343542554902,"position":10,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE11_117411b5-f651-4112-8982-a0f03a90c3e3.webp?v=1759616954"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE11_117411b5-f651-4112-8982-a0f03a90c3e3.webp?v=1759616954","width":3001},{"alt":null,"id":42343542882582,"position":11,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE12_db8c8e20-9253-4576-b795-d65cf9b25ea0.webp?v=1759616954"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE12_db8c8e20-9253-4576-b795-d65cf9b25ea0.webp?v=1759616954","width":3001}],"requires_selling_plan":false,"selling_plan_groups":[{"id":"bc6478a662ffae32b3be35b3fe566fa707984433","name":"Subscribe and Save","options":[{"name":"Delivery every","position":1,"values":["month","2 months","12 months","3 months","6 months","9 months"]}],"selling_plans":[{"id":10626007318,"name":"Delivered every month and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"month"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10626040086,"name":"Delivered every 2 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"2 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10646061334,"name":"Delivered every 12 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"12 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10626072854,"name":"Delivered every 3 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"3 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10626105622,"name":"Delivered every 6 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"6 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10626138390,"name":"Delivered every 9 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"9 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}}],"app_id":"ordergroove-subscribe-and-save"}],"content":""},
    "variants": [
      
{
          "id": 50573419839766,
          "title": "Cherry Light",
          "available": true,
          "inventory": 263,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYLIGHT-TILE1.webp?v=1759870739","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYLIGHT-TILE2.webp?v=1759870741",{"alt":null,"id":42389056258326,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/8d4804f9248c47a2a9b417947c3662cb.thumbnail.0000000000.jpg?v=1759870787"},"aspect_ratio":0.558,"duration":90000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.SD-480p-1.5Mbps-59056234.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.HD-1080p-7.2Mbps-59056234.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.HD-720p-4.5Mbps-59056234.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYLIGHT-TILE4.webp?v=1759870742","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYLIGHT-TILE5.webp?v=1759870743","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYLIGHT-TILE6.webp?v=1759870744","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYLIGHT-TILE7.webp?v=1759870746","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYLIGHT-TILE8.webp?v=1759870747","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYLIGHT-TILE9.webp?v=1759870751","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYLIGHT-TILE10.webp?v=1759870750","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYLIGHT-TILE11.webp?v=1759870752","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYLIGHT-TILE12.webp?v=1759870754","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYLIGHT-TILE13.webp?v=1759870753"],
              "shortDescription": "Brightens, evens & corrects pigmentation with a long-lasting finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573419872534,
          "title": "Peach Light",
          "available": true,
          "inventory": 269,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PEACHLIGHT-TILE1.webp?v=1759870706","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PEACHLIGHT-TILE2.webp?v=1759870706",{"alt":null,"id":42389056258326,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/8d4804f9248c47a2a9b417947c3662cb.thumbnail.0000000000.jpg?v=1759870787"},"aspect_ratio":0.558,"duration":90000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.SD-480p-1.5Mbps-59056234.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.HD-1080p-7.2Mbps-59056234.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.HD-720p-4.5Mbps-59056234.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PEACHLIGHT-TILE4.webp?v=1759870729","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PEACHLIGHT-TILE5.webp?v=1759870730","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PEACHLIGHT-TILE6.webp?v=1759870730","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PEACHLIGHT-TILE7.webp?v=1759870731","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PEACHLIGHT-TILE8.webp?v=1759870731","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PEACHLIGHT-TILE9.webp?v=1759870733","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PEACHLIGHT-TILE10.webp?v=1759870733","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PEACHLIGHT-TILE11.webp?v=1759870737","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PEACHLIGHT-TILE12.webp?v=1759870738","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PEACHLIGHT-TILE13.webp?v=1759870737"],
              "shortDescription": "Brightens, evens & corrects pigmentation with a long-lasting finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573419905302,
          "title": "Pink Pomelo",
          "available": true,
          "inventory": 1194,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PINKPOMELO-TILE1.webp?v=1771451065","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PINKPOMELO-TILE2.webp?v=1771451072",{"alt":null,"id":42389056258326,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/8d4804f9248c47a2a9b417947c3662cb.thumbnail.0000000000.jpg?v=1759870787"},"aspect_ratio":0.558,"duration":90000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.SD-480p-1.5Mbps-59056234.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.HD-1080p-7.2Mbps-59056234.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.HD-720p-4.5Mbps-59056234.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PINKPOMELO-TILE4.webp?v=1771451072","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PINKPOMELO-TILE5.webp?v=1771451075","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PINKPOMELO-TILE6.webp?v=1771451073","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PINKPOMELO-TILE7.webp?v=1771451074","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PINKPOMELO-TILE8.webp?v=1771451066","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PINKPOMELO-TILE9.webp?v=1771451075","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PINKPOMELO-TILE10.webp?v=1771451066","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PINKPOMELO-TILE11.webp?v=1771451074","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PINKPOMELO-TILE12.webp?v=1771451075","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PINKPOMELO-TILE13.webp?v=1771451066"],
              "shortDescription": "Brightens, evens & corrects pigmentation with a long-lasting finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573419938070,
          "title": "Peach",
          "available": true,
          "inventory": 147,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PEACH-TILE1.webp?v=1759870766","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PEACH-TILE2.webp?v=1759870767",{"alt":null,"id":42389056258326,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/8d4804f9248c47a2a9b417947c3662cb.thumbnail.0000000000.jpg?v=1759870787"},"aspect_ratio":0.558,"duration":90000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.SD-480p-1.5Mbps-59056234.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.HD-1080p-7.2Mbps-59056234.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.HD-720p-4.5Mbps-59056234.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PEACH-TILE4.webp?v=1759870771","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PEACH-TILE5.webp?v=1759870772","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PEACH-TILE6.webp?v=1759870773","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PEACH-TILE7.webp?v=1759870771","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PEACH-TILE8.webp?v=1759870772","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PEACH-TILE9.webp?v=1759870773","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PEACH-TILE10.webp?v=1759870776","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PEACH-TILE11.webp?v=1759870779","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PEACH-TILE12.webp?v=1759870779","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PEACH-TILE13.webp?v=1759870779"],
              "shortDescription": "Brightens, evens & corrects pigmentation with a long-lasting finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573419970838,
          "title": "Mango",
          "available": true,
          "inventory": 822,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-MANGO-TILE1.webp?v=1759870778","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-MANGO-TILE2.webp?v=1759870782",{"alt":null,"id":42389056258326,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/8d4804f9248c47a2a9b417947c3662cb.thumbnail.0000000000.jpg?v=1759870787"},"aspect_ratio":0.558,"duration":90000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.SD-480p-1.5Mbps-59056234.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.HD-1080p-7.2Mbps-59056234.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.HD-720p-4.5Mbps-59056234.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-MANGO-TILE4.webp?v=1759870782","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-MANGO-TILE5.webp?v=1759870785","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-MANGO-TILE6.webp?v=1759870784","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-MANGO-TILE7.webp?v=1759870785","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-MANGO-TILE8.webp?v=1759870785","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-MANGO-TILE9.webp?v=1759870788","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-MANGO-TILE10.webp?v=1759870787","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-MANGO-TILE11.webp?v=1759870789","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-MANGO-TILE12.webp?v=1759870791","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-MANGO-TILE13.webp?v=1759870790"],
              "shortDescription": "Brightens, evens & corrects pigmentation with a long-lasting finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573420003606,
          "title": "Papaya",
          "available": true,
          "inventory": 178,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PAPAYA-TILE1.webp?v=1759870791","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PAPAYA-TILE2.webp?v=1759870794",{"alt":null,"id":42389056258326,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/8d4804f9248c47a2a9b417947c3662cb.thumbnail.0000000000.jpg?v=1759870787"},"aspect_ratio":0.558,"duration":90000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.SD-480p-1.5Mbps-59056234.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.HD-1080p-7.2Mbps-59056234.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.HD-720p-4.5Mbps-59056234.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PAPAYA-TILE4.webp?v=1759870795","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PAPAYA-TILE5.webp?v=1759870796","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PAPAYA-TILE6.webp?v=1759870796","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PAPAYA-TILE7.webp?v=1759870797","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PAPAYA-TILE8.webp?v=1759870797","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PAPAYA-TILE10.webp?v=1759870797","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PAPAYA-TILE11.webp?v=1759870801","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PAPAYA-TILE12.webp?v=1759870803","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-PAPAYA-TILE13.webp?v=1759870801"],
              "shortDescription": "Brightens, evens & corrects pigmentation with a long-lasting finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573420036374,
          "title": "Blood Orange",
          "available": false,
          "inventory": 0,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-BLOODORANGE-TILE1_c5bb70ce-8903-40e6-8b7d-1b3ca2dd82d0.webp?v=1759870803","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-BLOODORANGE-TILE2_f6f16441-9f4a-491c-b978-b05d2f2756c6.webp?v=1759870804",{"alt":null,"id":42389056258326,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/8d4804f9248c47a2a9b417947c3662cb.thumbnail.0000000000.jpg?v=1759870787"},"aspect_ratio":0.558,"duration":90000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.SD-480p-1.5Mbps-59056234.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.HD-1080p-7.2Mbps-59056234.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.HD-720p-4.5Mbps-59056234.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-BLOODORANGE-TILE4_8754f82e-25cc-4913-8aa0-3d458bce024c.webp?v=1759870805","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-BLOODORANGE-TILE5_c666ba80-5be8-4ac9-8225-4684c9233376.webp?v=1759870808","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-BLOODORANGE-TILE6_cf56c738-0307-42d9-bd26-e1ffd2cb0b00.webp?v=1759870807","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-BLOODORANGE-TILE7_04ccd6eb-d87f-4b25-87be-7a52b4a6a5c0.webp?v=1759870808","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-BLOODORANGE-TILE8_7a504d46-2b16-4465-a1ae-fd93b214840e.webp?v=1759870809","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-BLOODORANGE-TILE9_9c9411ae-b68d-4542-a410-ff1b28e105f1.webp?v=1759870810","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-BLOODORANGE-TILE10_3de1545f-b1f1-4cdf-ba1b-b5a1d65e4c3e.webp?v=1759870809","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-BLOODORANGE-TILE11_9f69a1f1-4670-4f4f-941b-4d460baf77d7.webp?v=1759870812"],
              "shortDescription": "Brightens, evens & corrects pigmentation with a long-lasting finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573420069142,
          "title": "Cherry Blossom",
          "available": true,
          "inventory": 1444,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE1.webp?v=1759870811","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE2.webp?v=1759870815",{"alt":null,"id":42389056258326,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/8d4804f9248c47a2a9b417947c3662cb.thumbnail.0000000000.jpg?v=1759870787"},"aspect_ratio":0.558,"duration":90000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.SD-480p-1.5Mbps-59056234.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.HD-1080p-7.2Mbps-59056234.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.HD-720p-4.5Mbps-59056234.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE4.webp?v=1759870815","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE5.webp?v=1759870817","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE6.webp?v=1759870815","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE7.webp?v=1759870816","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE8.webp?v=1759870818","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE9.webp?v=1759870821","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE10.webp?v=1759870820","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE11.webp?v=1759870822","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE12.webp?v=1759870824","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-CHERRYBLOSSOM-TILE13.webp?v=1759870825"],
              "shortDescription": "Brightens, evens & corrects pigmentation with a long-lasting finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        },
      
{
          "id": 50573420101910,
          "title": "Lychee",
          "available": true,
          "inventory": 162,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-LYCHEE-TILE1_f9219551-4d35-4d3e-bc75-a04e2a7d3486.webp?v=1759870827","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-LYCHEE-TILE2_fafe435f-3bae-46de-b346-0ff99544a515.webp?v=1759870828",{"alt":null,"id":42389056258326,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/8d4804f9248c47a2a9b417947c3662cb.thumbnail.0000000000.jpg?v=1759870787"},"aspect_ratio":0.558,"duration":90000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.SD-480p-1.5Mbps-59056234.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.HD-1080p-7.2Mbps-59056234.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.HD-720p-4.5Mbps-59056234.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/8d4804f9248c47a2a9b417947c3662cb\/8d4804f9248c47a2a9b417947c3662cb.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-LYCHEE-TILE4_7b14e4f5-f45c-4084-aa7c-11229706cb54.webp?v=1759870831","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-LYCHEE-TILE5_56d56ed5-6487-43f3-b890-0f4742bf91d9.webp?v=1759870832","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-LYCHEE-TILE6_4cf75f35-8293-479a-a58e-63c5861a8434.webp?v=1759870832","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-LYCHEE-TILE7_f7111f80-6536-4e0a-b516-bd139500f690.webp?v=1759870834","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-LYCHEE-TILE8_3fcc7fdb-28b8-4327-809d-adf576b2f5d4.webp?v=1759870832","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-LYCHEE-TILE9_5419e9c5-3673-4df9-ad2b-797b8ce1a2a9.webp?v=1759870834","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-LYCHEE-TILE10_b85a1dee-4318-45b1-a7df-15e969e69195.webp?v=1759870836","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-LYCHEE-TILE11_eac3e00d-7b25-462b-a4bd-55bf406ba533.webp?v=1759870838","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-LYCHEE-TILE12_5f88e616-2013-493e-856b-56f9a2615cf4.webp?v=1759870839","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCOLORCORRECTOR-LYCHEE-TILE13_721b0e25-0bca-483b-a3b0-c02b1bb7095c.webp?v=1759870838"],
              "shortDescription": "Brightens, evens & corrects pigmentation with a long-lasting finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        }
      
    ]
  }
</script>

          
          
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10234759741718"><div data-oke-reviews-version="0.86.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 4.8 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 96.7033%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 4.8 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">4.8</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"4.8","reviewCount":1466} </script></div></div>
    
        (1466)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB01250" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        











<div  class="back-in-stock-container" style="display: none;"><div class="product-back-in-stock-buttons">
    
    

    
    
  </div></div>

        

         
          
















<div
  
  class="waitlist-container"
  
    style="display: none;"
  
><div class="product-waitlist-buttons">
      
      
        <a href="/en-fr/products/fauxfilter-under-eye-color-corrector-hb01025m?variant=50573420069142" class="button button--primary notify-me-btn">Notify Me</a>
      
    </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="template--26760399323414__featured_collection_B3mC3V"
      data-form-id="product-form-template--26760399323414__featured_collection_B3mC3V"
      dl-product-id="HB01250"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-template--26760399323414__featured_collection_B3mC3V" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="50573420069142"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="1444"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <button
              id="ProductSubmitButton-template--26760399323414__featured_collection_B3mC3V"
              data-dl-source="Collection"
              data-url="/en-fr/products/fauxfilter-under-eye-color-corrector-hb01025m"
              type="submit"
              name="add"
              class="product-form__submit button button--full-width button--primary"
              
              
            >
              <span>
                Add to Bag
              </span>
            </button></div><input type="hidden" name="product-id" value="10234759741718" /><input type="hidden" name="section-id" value="template--26760399323414__featured_collection_B3mC3V" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li><li
        id="Slide-template--26760399323414__featured_collection_B3mC3V-5"
        class="grid__item slider__slide"
        
      >
        



  























  


































<section
  class="featured-card-product featured-card-product--new-design"
  
    data-card-design="new"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB01342"
    dl-product-name="Easy Blur Silicone-Free Smoothing & Pore-Minimizing Primer"
    dl-product-brand="Huda Beauty US"
    dl-product-category="Primer"
    dl-product-category2="Face"
    dl-product-category3=""
    dl-product-variant="HB01342"
    dl-product-price="36,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/easy-blur-silicone-free-smoothing-pore-minimizing-primer-hb01342?variant=50573349454102"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBLURPRIMER-TILE1_02d0bb5c-4096-42bb-9403-007bda7fbede.webp?v=1759671934&width=630 1x,            //hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBLURPRIMER-TILE1_02d0bb5c-4096-42bb-9403-007bda7fbede.webp?v=1759671934&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/easy-blur-silicone-free-smoothing-pore-minimizing-primer-hb01342?variant=50573349454102"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBLURPRIMER-TILE1_02d0bb5c-4096-42bb-9403-007bda7fbede.webp?v=1759671934&width=630"
          alt="Huda Beauty Easy Blur Primer"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBLURPRIMER-TILE2_67543ff8-05cd-4462-b386-8585f54a9cbd.webp?v=1759671934&width=630 1x,              //hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBLURPRIMER-TILE2_67543ff8-05cd-4462-b386-8585f54a9cbd.webp?v=1759671934&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/PDP-SECTION1-EASYBLURPRIMER-TILE2_67543ff8-05cd-4462-b386-8585f54a9cbd.webp?v=1759671934&width=630"
            alt="Before and after of Easy Blur Primer on skin, no retouching."
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">BEST SELLER</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-template--26760399323414__featured_collection_B3mC3V-10234752762134"
      class="product__info-container"
      data-section="template--26760399323414__featured_collection_B3mC3V"
      data-url="/en-fr/products/easy-blur-silicone-free-smoothing-pore-minimizing-primer-hb01342?variant=50573349454102"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/easy-blur-silicone-free-smoothing-pore-minimizing-primer-hb01342?variant=50573349454102">
          
            <h3 class="h6">Easy Blur Silicone-Free Smoothing &amp; Pore-Minimizing Primer
</h3>
          
        </a>
      </div>
      
      

      <div
        class="product_card_price mb-xs"
        id="price-template--26760399323414__featured_collection_B3mC3V"
        data-url="/en-fr/products/easy-blur-silicone-free-smoothing-pore-minimizing-primer-hb01342?variant=50573349454102"
        role="status"
        
      >


<div
    class="price      price-section-data price--large"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €36,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €36,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€-36,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker">
        
          
          
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10234752762134"><div data-oke-reviews-version="0.87.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 4.9 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 98.3516%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 4.9 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">4.9</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"4.9","reviewCount":579} </script></div></div>
    
        (579)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB01342" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        











<div  class="back-in-stock-container" style="display: none;"><div class="product-back-in-stock-buttons">
    
    

    
    
  </div></div>

        

         
          
















<div
  
  class="waitlist-container"
  
    style="display: none;"
  
><div class="product-waitlist-buttons">
      
      
        <a href="/en-fr/products/easy-blur-silicone-free-smoothing-pore-minimizing-primer-hb01342?variant=50573349454102" class="button button--primary notify-me-btn">Notify Me</a>
      
    </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="template--26760399323414__featured_collection_B3mC3V"
      data-form-id="product-form-template--26760399323414__featured_collection_B3mC3V"
      dl-product-id="HB01342"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-template--26760399323414__featured_collection_B3mC3V" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="50573349454102"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="1419"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <button
              id="ProductSubmitButton-template--26760399323414__featured_collection_B3mC3V"
              data-dl-source="Collection"
              data-url="/en-fr/products/easy-blur-silicone-free-smoothing-pore-minimizing-primer-hb01342"
              type="submit"
              name="add"
              class="product-form__submit button button--full-width button--primary"
              
              
            >
              <span>
                Add to Bag
              </span>
            </button></div><input type="hidden" name="product-id" value="10234752762134" /><input type="hidden" name="section-id" value="template--26760399323414__featured_collection_B3mC3V" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li><li
        id="Slide-template--26760399323414__featured_collection_B3mC3V-6"
        class="grid__item slider__slide"
        
      >
        



  























  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  






























  
  

  
    
    




<section
  class="featured-card-product featured-card-product--new-design"
  
    data-card-design="new"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB00855"
    dl-product-name="#FauxFilter Luminous Matte Concealer"
    dl-product-brand="Huda Beauty US"
    dl-product-category="Concealer & Corrector"
    dl-product-category2="Face"
    dl-product-category3=""
    dl-product-variant="HB00855"
    dl-product-price="32,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/fauxfilter-luminous-matte-concealer-hb00855m?variant=50573414007062"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/PDP-SECTION1-FFCONCEALER-WHIPPEDCREAM-TILE1_5942bef6-3b5c-498d-a70d-246dfc360369.webp?v=1762684538&width=630 1x,            //hudabeauty.com/cdn/shop/files/PDP-SECTION1-FFCONCEALER-WHIPPEDCREAM-TILE1_5942bef6-3b5c-498d-a70d-246dfc360369.webp?v=1762684538&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/fauxfilter-luminous-matte-concealer-hb00855m?variant=50573414007062"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/PDP-SECTION1-FFCONCEALER-WHIPPEDCREAM-TILE1_5942bef6-3b5c-498d-a70d-246dfc360369.webp?v=1762684538&width=630"
          alt="#FauxFilter Luminous Matte Concealer"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/PDP-SECTION1-FFCONCEALER-WHIPPEDCREAM-TILE2.webp?v=1759869563&width=630 1x,              //hudabeauty.com/cdn/shop/files/PDP-SECTION1-FFCONCEALER-WHIPPEDCREAM-TILE2.webp?v=1759869563&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/PDP-SECTION1-FFCONCEALER-WHIPPEDCREAM-TILE2.webp?v=1759869563&width=630"
            alt=""
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">BEST SELLER</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
<img
            data-src="//hudabeauty.com/cdn/shop/t/162/assets/award-winner-24.svg?v=82752593704286466411775984105"
            loading="lazy"
            width="60"
            height="60"
            alt="Award Winner Badge"
          ></div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-template--26760399323414__featured_collection_B3mC3V-10234756628758"
      class="product__info-container"
      data-section="template--26760399323414__featured_collection_B3mC3V"
      data-url="/en-fr/products/fauxfilter-luminous-matte-concealer-hb00855m?variant=50573414007062"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/fauxfilter-luminous-matte-concealer-hb00855m?variant=50573414007062">
          
            <h3 class="h6">#FauxFilter Luminous Matte Concealer
</h3>
          
        </a>
      </div>
      
      

      <div
        class="product_card_price mb-xs"
        id="price-template--26760399323414__featured_collection_B3mC3V"
        data-url="/en-fr/products/fauxfilter-luminous-matte-concealer-hb00855m?variant=50573414007062"
        role="status"
        
      >


<div
    class="price      price-section-data price--large"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €32,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €32,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€-32,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker">
        
          


<div class="loading__spinner">
  <svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" class="spinner" viewbox="0 0 66 66"><circle stroke-width="6" cx="33" cy="33" r="30" fill="none" class="path"/></svg>

</div>


<link href="//hudabeauty.com/cdn/shop/t/162/assets/product-card-swatches.css?v=48729697193943970631775984107" rel="stylesheet" type="text/css" media="all" />





<div
  class="product-card-swatches featured-carousel"
  data-handle="fauxfilter-luminous-matte-concealer-hb00855m"
>

        

        
        
        
        
        

          <div
            data-id="50573414007062"
            class="product-swatch br-round"
            style="background-color: #feebd5; display: flex;"
            aria-label="Whipped Cream 0.1"
            title="Whipped Cream 0.1"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573414039830"
            class="product-swatch br-round"
            style="background-color: #fce0c6; display: flex;"
            aria-label="Royal Icing 1.1"
            title="Royal Icing 1.1"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573414072598"
            class="product-swatch br-round"
            style="background-color: #f8d7c3; display: flex;"
            aria-label="Marshmallow 1.3"
            title="Marshmallow 1.3"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573414105366"
            class="product-swatch br-round"
            style="background-color: #f6cabb; display: flex;"
            aria-label="Yogurt Drops 1.5"
            title="Yogurt Drops 1.5"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573414138134"
            class="product-swatch br-round"
            style="background-color: #f9ceb7; display: flex;"
            aria-label="Honey 1.7"
            title="Honey 1.7"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573414170902"
            class="product-swatch br-round"
            style="background-color: #f0cbb0; display: flex;"
            aria-label="Meringue 2.1"
            title="Meringue 2.1"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573414203670"
            class="product-swatch br-round"
            style="background-color: #f5c5a4; display: flex;"
            aria-label="Cotton Candy 2.3"
            title="Cotton Candy 2.3"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573414236438"
            class="product-swatch br-round"
            style="background-color: #efc89e; display: flex;"
            aria-label="Nougat 2.5"
            title="Nougat 2.5"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573414269206"
            class="product-swatch br-round"
            style="background-color: #edbf9d; display: flex;"
            aria-label="Coconut Flakes 2.7"
            title="Coconut Flakes 2.7"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573414301974"
            class="product-swatch br-round"
            style="background-color: #e3b398; display: flex;"
            aria-label="Vanilla Swirl 3.1"
            title="Vanilla Swirl 3.1"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573414334742"
            class="product-swatch br-round"
            style="background-color: #dda487; display: flex;"
            aria-label="Marmalade 3.3"
            title="Marmalade 3.3"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573414367510"
            class="product-swatch br-round"
            style="background-color: #d8a181; display: flex;"
            aria-label="Sugar Biscuit 3.5"
            title="Sugar Biscuit 3.5"
          ></div>
        



































<div class="no-js-hidden quick-add"><modal-opener data-modal="#QuickAdd-10234756628758">
          <button
            id="-submit"
            type="button"
            name="add"
            class="color-swatch-item br-round featured-card_choose-more-colors"
            aria-haspopup="dialog"
            aria-labelledby="-submit title--10234756628758"
            data-product-url="/en-fr/products/fauxfilter-luminous-matte-concealer-hb00855m?view=quick-view"
            data-handle="fauxfilter-luminous-matte-concealer-hb00855m"
          ><svg aria-hidden="true" width="10" height="11" viewbox="0 0 10 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Plus">
<path id="Vector 4" d="M0 5.5H10" stroke="black"/>
<path id="Vector 3" d="M5 0.5V10.5" stroke="black"/>
</g>
</svg>
</button>
        </modal-opener>
        <quick-add-modal id="QuickAdd-10234756628758" class="quick-add-modal">
          <div
            role="dialog"
            aria-label="Choose options for #FauxFilter Luminous Matte Concealer"
            aria-modal="true"
            class="quick-add-modal__content global-settings-popup"
            tabindex="-1"
          >
            <button
              id="ModalClose-10234756628758"
              type="button"
              class="popup__close"
              aria-label="Close"
            ><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewbox="0 0 20 19" fill="none">
  <path d="M18.9999 0.5L1.25488 18.245L18.9999 0.5Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
  <path d="M18.745 18.245L1 0.5L18.745 18.245Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
</svg></button>
            <div id="QuickAddInfo-10234756628758" class="quick-add-modal__content-info"></div>
          </div>
        </quick-add-modal></div></div><script type="application/json" data-selected-variant-meta>
  {
    "default_selected_variant": {"id":50573414007062,"title":"Whipped Cream 0.1","option1":"Whipped Cream 0.1","option2":null,"option3":null,"sku":"HB00855","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Whipped Cream 0.1","public_title":"Whipped Cream 0.1","options":["Whipped Cream 0.1"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},
    "product": {"id":10234756628758,"title":"#FauxFilter Luminous Matte Concealer","handle":"fauxfilter-luminous-matte-concealer-hb00855m","description":"","published_at":"2025-10-05T02:30:02+04:00","created_at":"2025-10-05T02:29:48+04:00","vendor":"Huda Beauty US","type":"","tags":["_okendo:syndication_key:fauxfilter-luminous-matte-concealer-hb00855m","HB","show-find-my-shade-button"],"price":3200,"price_min":3200,"price_max":3200,"available":true,"price_varies":false,"compare_at_price":null,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":50573414007062,"title":"Whipped Cream 0.1","option1":"Whipped Cream 0.1","option2":null,"option3":null,"sku":"HB00855","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Whipped Cream 0.1","public_title":"Whipped Cream 0.1","options":["Whipped Cream 0.1"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414039830,"title":"Royal Icing 1.1","option1":"Royal Icing 1.1","option2":null,"option3":null,"sku":"HB00856","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Royal Icing 1.1","public_title":"Royal Icing 1.1","options":["Royal Icing 1.1"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414072598,"title":"Marshmallow 1.3","option1":"Marshmallow 1.3","option2":null,"option3":null,"sku":"HB00857","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Marshmallow 1.3","public_title":"Marshmallow 1.3","options":["Marshmallow 1.3"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414105366,"title":"Yogurt Drops 1.5","option1":"Yogurt Drops 1.5","option2":null,"option3":null,"sku":"HB00858","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Yogurt Drops 1.5","public_title":"Yogurt Drops 1.5","options":["Yogurt Drops 1.5"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414138134,"title":"Honey 1.7","option1":"Honey 1.7","option2":null,"option3":null,"sku":"HB00859","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Honey 1.7","public_title":"Honey 1.7","options":["Honey 1.7"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414170902,"title":"Meringue 2.1","option1":"Meringue 2.1","option2":null,"option3":null,"sku":"HB00860","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Meringue 2.1","public_title":"Meringue 2.1","options":["Meringue 2.1"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414203670,"title":"Cotton Candy 2.3","option1":"Cotton Candy 2.3","option2":null,"option3":null,"sku":"HB00861","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Cotton Candy 2.3","public_title":"Cotton Candy 2.3","options":["Cotton Candy 2.3"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414236438,"title":"Nougat 2.5","option1":"Nougat 2.5","option2":null,"option3":null,"sku":"HB00862","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Nougat 2.5","public_title":"Nougat 2.5","options":["Nougat 2.5"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414269206,"title":"Coconut Flakes 2.7","option1":"Coconut Flakes 2.7","option2":null,"option3":null,"sku":"HB00863","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Coconut Flakes 2.7","public_title":"Coconut Flakes 2.7","options":["Coconut Flakes 2.7"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414301974,"title":"Vanilla Swirl 3.1","option1":"Vanilla Swirl 3.1","option2":null,"option3":null,"sku":"HB00864","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Vanilla Swirl 3.1","public_title":"Vanilla Swirl 3.1","options":["Vanilla Swirl 3.1"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414334742,"title":"Marmalade 3.3","option1":"Marmalade 3.3","option2":null,"option3":null,"sku":"HB00865","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Marmalade 3.3","public_title":"Marmalade 3.3","options":["Marmalade 3.3"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414367510,"title":"Sugar Biscuit 3.5","option1":"Sugar Biscuit 3.5","option2":null,"option3":null,"sku":"HB00866","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Sugar Biscuit 3.5","public_title":"Sugar Biscuit 3.5","options":["Sugar Biscuit 3.5"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414400278,"title":"Graham Cracker 4.1","option1":"Graham Cracker 4.1","option2":null,"option3":null,"sku":"HB00867","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Graham Cracker 4.1","public_title":"Graham Cracker 4.1","options":["Graham Cracker 4.1"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414433046,"title":"Cookie Dough 4.3","option1":"Cookie Dough 4.3","option2":null,"option3":null,"sku":"HB00868","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Cookie Dough 4.3","public_title":"Cookie Dough 4.3","options":["Cookie Dough 4.3"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414465814,"title":"Granola 4.5","option1":"Granola 4.5","option2":null,"option3":null,"sku":"HB00869","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Granola 4.5","public_title":"Granola 4.5","options":["Granola 4.5"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414498582,"title":"Caramel Corn 5.1","option1":"Caramel Corn 5.1","option2":null,"option3":null,"sku":"HB00870","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Caramel Corn 5.1","public_title":"Caramel Corn 5.1","options":["Caramel Corn 5.1"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414531350,"title":"Toasted Almond 5.3","option1":"Toasted Almond 5.3","option2":null,"option3":null,"sku":"HB00871","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Toasted Almond 5.3","public_title":"Toasted Almond 5.3","options":["Toasted Almond 5.3"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414564118,"title":"Candied Ginger 6.1","option1":"Candied Ginger 6.1","option2":null,"option3":null,"sku":"HB00872","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Candied Ginger 6.1","public_title":"Candied Ginger 6.1","options":["Candied Ginger 6.1"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414596886,"title":"Praline 6.3","option1":"Praline 6.3","option2":null,"option3":null,"sku":"HB00873","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Praline 6.3","public_title":"Praline 6.3","options":["Praline 6.3"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414629654,"title":"Brittle 6.5","option1":"Brittle 6.5","option2":null,"option3":null,"sku":"HB00874","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Brittle 6.5","public_title":"Brittle 6.5","options":["Brittle 6.5"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414662422,"title":"Peanut Butter 6.7","option1":"Peanut Butter 6.7","option2":null,"option3":null,"sku":"HB00875","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"#FauxFilter Luminous Matte Concealer - Peanut Butter 6.7","public_title":"Peanut Butter 6.7","options":["Peanut Butter 6.7"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414695190,"title":"Crumble 7.1","option1":"Crumble 7.1","option2":null,"option3":null,"sku":"HB00876","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Crumble 7.1","public_title":"Crumble 7.1","options":["Crumble 7.1"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414727958,"title":"Salted Caramel 7.3","option1":"Salted Caramel 7.3","option2":null,"option3":null,"sku":"HB00877","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Salted Caramel 7.3","public_title":"Salted Caramel 7.3","options":["Salted Caramel 7.3"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414760726,"title":"Butterscotch 7.5","option1":"Butterscotch 7.5","option2":null,"option3":null,"sku":"HB00878","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Butterscotch 7.5","public_title":"Butterscotch 7.5","options":["Butterscotch 7.5"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414793494,"title":"Honeycomb 7.7","option1":"Honeycomb 7.7","option2":null,"option3":null,"sku":"HB00879","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Honeycomb 7.7","public_title":"Honeycomb 7.7","options":["Honeycomb 7.7"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414826262,"title":"Hazelnut 8.1","option1":"Hazelnut 8.1","option2":null,"option3":null,"sku":"HB00880","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Hazelnut 8.1","public_title":"Hazelnut 8.1","options":["Hazelnut 8.1"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626007318,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626040086,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10646061334,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626072854,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626105622,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"},{"price_adjustments":[],"price":3200,"compare_at_price":null,"per_delivery_price":3200,"selling_plan_id":10626138390,"selling_plan_group_id":"bc6478a662ffae32b3be35b3fe566fa707984433"}],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414859030,"title":"Maple Syrup 8.3","option1":"Maple Syrup 8.3","option2":null,"option3":null,"sku":"HB00881","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Maple Syrup 8.3","public_title":"Maple Syrup 8.3","options":["Maple Syrup 8.3"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414891798,"title":"Brownie 8.5","option1":"Brownie 8.5","option2":null,"option3":null,"sku":"HB00882","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"#FauxFilter Luminous Matte Concealer - Brownie 8.5","public_title":"Brownie 8.5","options":["Brownie 8.5"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573414924566,"title":"Chocolate Chip 8.7","option1":"Chocolate Chip 8.7","option2":null,"option3":null,"sku":"HB00883","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"#FauxFilter Luminous Matte Concealer - Chocolate Chip 8.7","public_title":"Chocolate Chip 8.7","options":["Chocolate Chip 8.7"],"price":3200,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}],"images":["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE1_dbf38229-faea-48e6-bf08-76fb7fd7c070.webp?v=1759671989","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE2_08aba969-b366-4561-a0c2-9d3407fe4123.webp?v=1759671989","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE3_4393a5e7-9462-473d-88bf-b49a2dab4227.webp?v=1759671989","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE5_b9c4f0cc-c3ac-4659-887d-61e8c0ca6267.webp?v=1759671989","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE6_61ffcaf9-f792-4c58-ac6d-b04b97f2ae0b.webp?v=1759671989","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE7_a090e6dc-4968-451f-bfb8-c20ef7711aff.webp?v=1759671989","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE8_d895858b-c80f-4fd8-b0fa-b51657d75443.webp?v=1759671989","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE9_01f354a7-bdd9-449c-87a2-f874dbd3396d.webp?v=1759671989","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE10_d09d23a2-f6a0-44f2-954a-99a00c3351b4.webp?v=1759671989","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE11_0722efac-4f31-408a-b132-557e5589fb05.webp?v=1759671989","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE12_5d21233d-f06f-410e-8a68-e2d4a34ce383.webp?v=1759671989"],"featured_image":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE1_dbf38229-faea-48e6-bf08-76fb7fd7c070.webp?v=1759671989","options":["Shade"],"media":[{"alt":null,"id":42343671267606,"position":1,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE1_dbf38229-faea-48e6-bf08-76fb7fd7c070.webp?v=1759671989"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE1_dbf38229-faea-48e6-bf08-76fb7fd7c070.webp?v=1759671989","width":3000},{"alt":null,"id":42343672348950,"position":2,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE2_08aba969-b366-4561-a0c2-9d3407fe4123.webp?v=1759671989"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE2_08aba969-b366-4561-a0c2-9d3407fe4123.webp?v=1759671989","width":3000},{"alt":null,"id":42343673397526,"position":3,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE3_4393a5e7-9462-473d-88bf-b49a2dab4227.webp?v=1759671989"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE3_4393a5e7-9462-473d-88bf-b49a2dab4227.webp?v=1759671989","width":3001},{"alt":"Uploaded video","id":42350023934230,"position":4,"preview_image":{"aspect_ratio":0.563,"height":1920,"width":1080,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/93aaac66b926490ca87404722bf6571f.thumbnail.0000000000.jpg?v=1759671988"},"aspect_ratio":0.563,"duration":119000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/93aaac66b926490ca87404722bf6571f\/93aaac66b926490ca87404722bf6571f.SD-480p-1.5Mbps-58899728.mp4?v=0","width":270},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/93aaac66b926490ca87404722bf6571f\/93aaac66b926490ca87404722bf6571f.HD-1080p-7.2Mbps-58899728.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/93aaac66b926490ca87404722bf6571f\/93aaac66b926490ca87404722bf6571f.HD-720p-4.5Mbps-58899728.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/93aaac66b926490ca87404722bf6571f\/93aaac66b926490ca87404722bf6571f.m3u8?v=0","width":606}]},{"alt":null,"id":42343674937622,"position":5,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE5_b9c4f0cc-c3ac-4659-887d-61e8c0ca6267.webp?v=1759671989"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE5_b9c4f0cc-c3ac-4659-887d-61e8c0ca6267.webp?v=1759671989","width":3001},{"alt":null,"id":42343676477718,"position":6,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE6_61ffcaf9-f792-4c58-ac6d-b04b97f2ae0b.webp?v=1759671989"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE6_61ffcaf9-f792-4c58-ac6d-b04b97f2ae0b.webp?v=1759671989","width":3001},{"alt":null,"id":42343678312726,"position":7,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE7_a090e6dc-4968-451f-bfb8-c20ef7711aff.webp?v=1759671989"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE7_a090e6dc-4968-451f-bfb8-c20ef7711aff.webp?v=1759671989","width":3001},{"alt":null,"id":42343679787286,"position":8,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE8_d895858b-c80f-4fd8-b0fa-b51657d75443.webp?v=1759671989"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE8_d895858b-c80f-4fd8-b0fa-b51657d75443.webp?v=1759671989","width":3001},{"alt":null,"id":42343680213270,"position":9,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE9_01f354a7-bdd9-449c-87a2-f874dbd3396d.webp?v=1759671989"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE9_01f354a7-bdd9-449c-87a2-f874dbd3396d.webp?v=1759671989","width":3001},{"alt":null,"id":42343668023574,"position":10,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE10_d09d23a2-f6a0-44f2-954a-99a00c3351b4.webp?v=1759671989"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE10_d09d23a2-f6a0-44f2-954a-99a00c3351b4.webp?v=1759671989","width":3001},{"alt":null,"id":42343669170454,"position":11,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE11_0722efac-4f31-408a-b132-557e5589fb05.webp?v=1759671989"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE11_0722efac-4f31-408a-b132-557e5589fb05.webp?v=1759671989","width":3001},{"alt":null,"id":42343670284566,"position":12,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE12_5d21233d-f06f-410e-8a68-e2d4a34ce383.webp?v=1759671989"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE12_5d21233d-f06f-410e-8a68-e2d4a34ce383.webp?v=1759671989","width":3001}],"requires_selling_plan":false,"selling_plan_groups":[{"id":"bc6478a662ffae32b3be35b3fe566fa707984433","name":"Subscribe and Save","options":[{"name":"Delivery every","position":1,"values":["month","2 months","12 months","3 months","6 months","9 months"]}],"selling_plans":[{"id":10626007318,"name":"Delivered every month and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"month"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10626040086,"name":"Delivered every 2 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"2 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10646061334,"name":"Delivered every 12 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"12 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10626072854,"name":"Delivered every 3 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"3 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10626105622,"name":"Delivered every 6 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"6 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}},{"id":10626138390,"name":"Delivered every 9 months and get 10% off future orders.","description":null,"options":[{"name":"Delivery every","position":1,"value":"9 months"}],"recurring_deliveries":true,"price_adjustments":[],"checkout_charge":{"value_type":"percentage","value":100}}],"app_id":"ordergroove-subscribe-and-save"}],"content":""},
    "variants": [
      
{
          "id": 50573414007062,
          "title": "Whipped Cream 0.1",
          "available": true,
          "inventory": 110,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-WHIPPEDCREAM-TILE1_5942bef6-3b5c-498d-a70d-246dfc360369.webp?v=1762684538","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-WHIPPEDCREAM-TILE2.webp?v=1759869563","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-WHIPPEDCREAM-TILE3.webp?v=1759869562",{"alt":null,"id":42388719501590,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/fce6a5353cae4cee9da967be106bcea6.thumbnail.0000000000.jpg?v=1759869656"},"aspect_ratio":0.558,"duration":119000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/fce6a5353cae4cee9da967be106bcea6\/fce6a5353cae4cee9da967be106bcea6.SD-480p-1.5Mbps-59055072.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/fce6a5353cae4cee9da967be106bcea6\/fce6a5353cae4cee9da967be106bcea6.HD-1080p-7.2Mbps-59055072.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/fce6a5353cae4cee9da967be106bcea6\/fce6a5353cae4cee9da967be106bcea6.HD-720p-4.5Mbps-59055072.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/fce6a5353cae4cee9da967be106bcea6\/fce6a5353cae4cee9da967be106bcea6.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-WHIPPEDCREAM-TILE5.webp?v=1759869591","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-WHIPPEDCREAM-TILE6.webp?v=1759869593","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-WHIPPEDCREAM-TILE7.webp?v=1759869592","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-WHIPPEDCREAM-TILE8.webp?v=1759869592","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-WHIPPEDCREAM-TILE9.webp?v=1759869595","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-WHIPPEDCREAM-TILE10.webp?v=1759869596","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-WHIPPEDCREAM-TILE11.webp?v=1759869596","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-WHIPPEDCREAM-TILE12.webp?v=1759869597"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414039830,
          "title": "Royal Icing 1.1",
          "available": true,
          "inventory": 220,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-ROYALICING-TILE1_42ed3b76-1ee9-47a6-b135-20a05525d2db.webp?v=1762684580","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-ROYALICING-TILE2.webp?v=1759869601","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-ROYALICING-TILE3.webp?v=1759869602","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-ROYALICING-TILE5.webp?v=1759869603","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-ROYALICING-TILE6.webp?v=1759869604","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-ROYALICING-TILE7.webp?v=1759869604","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-ROYALICING-TILE8.webp?v=1759869606","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-ROYALICING-TILE9.webp?v=1759869607","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-ROYALICING-TILE10.webp?v=1759869605","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-ROYALICING-TILE11.webp?v=1759869608","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-ROYALICING-TILE12.webp?v=1759869609"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414072598,
          "title": "Marshmallow 1.3",
          "available": true,
          "inventory": 192,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MARSHMALLOW-TILE1_a8756d00-5223-47a7-8c17-672ddf3761b7.webp?v=1762684621","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MARSHMALLOW-TILE2.webp?v=1759869611","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MARSHMALLOW-TILE3.webp?v=1759869612","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MARSHMALLOW-TILE5.webp?v=1759869614","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MARSHMALLOW-TILE6.webp?v=1759869615","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MARSHMALLOW-TILE7.webp?v=1759869614","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MARSHMALLOW-TILE8.webp?v=1759869616","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MARSHMALLOW-TILE9.webp?v=1759869617","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MARSHMALLOW-TILE10.webp?v=1759869618","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MARSHMALLOW-TILE11.webp?v=1759869618","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MARSHMALLOW-TILE12.webp?v=1759869620"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414105366,
          "title": "Yogurt Drops 1.5",
          "available": true,
          "inventory": 92,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-YOGHURTDROPS-TILE1.webp?v=1762684659","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-YOGURTDROPS-TILE2.webp?v=1759869622","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-YOGURTDROPS-TILE3.webp?v=1759869623","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-YOGURTDROPS-TILE5.webp?v=1759869624","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-YOGURTDROPS-TILE6.webp?v=1759869626","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-YOGURTDROPS-TILE7.webp?v=1759869626","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-YOGURTDROPS-TILE8.webp?v=1759869627","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-YOGURTDROPS-TILE9.webp?v=1759869628","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-YOGURTDROPS-TILE10.webp?v=1759869629","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-YOGURTDROPS-TILE11.webp?v=1759869629","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-YOGURTDROPS-TILE12.webp?v=1759869630"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414138134,
          "title": "Honey 1.7",
          "available": true,
          "inventory": 169,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HONEY-TILE1_c060120a-95eb-4dc4-b785-d3b96fc40d87.webp?v=1762684694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HONEY-TILE3.webp?v=1759869635","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HONEY-TILE5.webp?v=1759869635","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HONEY-TILE6.webp?v=1759869637","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HONEY-TILE7.webp?v=1759869636","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HONEY-TILE8.webp?v=1759869636","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HONEY-TILE9.webp?v=1759869640","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HONEY-TILE10.webp?v=1759869640","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HONEY-TILE11.webp?v=1759869640","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HONEY-TILE12.webp?v=1759869641"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414170902,
          "title": "Meringue 2.1",
          "available": true,
          "inventory": 191,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MERINGUE-TILE1_437eb0f1-b5a5-449e-bf9f-0920b0b67956.webp?v=1762684744","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MERINGUE-TILE2.webp?v=1759869644","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MERINGUE-TILE3.webp?v=1759869646","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MERINGUE-TILE5.webp?v=1759869644","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MERINGUE-TILE6.webp?v=1759869648","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MERINGUE-TILE7.webp?v=1759869647","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MERINGUE-TILE8.webp?v=1759869647","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MERINGUE-TILE9.webp?v=1759869650","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MERINGUE-TILE10.webp?v=1759869652","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MERINGUE-TILE11.webp?v=1759869651","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MERINGUE-TILE12.webp?v=1759869653"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414203670,
          "title": "Cotton Candy 2.3",
          "available": true,
          "inventory": 122,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COTTONCANDY-TILE1_71427326-5359-444a-b7a6-1487cbba7168.webp?v=1762684784","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COTTONCANDY-TILE2.webp?v=1759869655","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COTTONCANDY-TILE3.webp?v=1759869657","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COTTONCANDY-TILE5.webp?v=1759869658","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COTTONCANDY-TILE6.webp?v=1759869660","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COTTONCANDY-TILE7.webp?v=1759869659","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COTTONCANDY-TILE8.webp?v=1759869661","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COTTONCANDY-TILE9.webp?v=1759869662","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COTTONCANDY-TILE10.webp?v=1759869663","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COTTONCANDY-TILE11.webp?v=1759869662","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COTTONCANDY-TILE12.webp?v=1759869662"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414236438,
          "title": "Nougat 2.5",
          "available": true,
          "inventory": 196,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-NOUGAT-TILE1_35057458-cc5e-4690-aa1c-2b3348ab0264.webp?v=1762684845","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-NOUGAT-TILE2.webp?v=1759869664","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-NOUGAT-TILE3.webp?v=1759869666","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-NOUGAT-TILE5.webp?v=1759869670","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-NOUGAT-TILE6.webp?v=1759869670","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-NOUGAT-TILE7.webp?v=1759869671","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-NOUGAT-TILE8.webp?v=1759869670","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-NOUGAT-TILE9.webp?v=1759869674","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-NOUGAT-TILE10.webp?v=1759869675","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-NOUGAT-TILE11.webp?v=1759869674","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-NOUGAT-TILE12.webp?v=1759869676"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414269206,
          "title": "Coconut Flakes 2.7",
          "available": true,
          "inventory": 222,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COCONUTFLAKES-TILE1_7fa77d06-b581-4992-8c7b-820a72590d09.webp?v=1762684936","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COCONUTFLAKES-TILE2.webp?v=1759869678","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COCONUTFLAKES-TILE3.webp?v=1759869680","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COCONUTFLAKES-TILE5.webp?v=1759869681","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COCONUTFLAKES-TILE6.webp?v=1759869682","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COCONUTFLAKES-TILE7.webp?v=1759869682","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COCONUTFLAKES-TILE8.webp?v=1759869685","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COCONUTFLAKES-TILE9.webp?v=1759869684","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COCONUTFLAKES-TILE10.webp?v=1759869685","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COCONUTFLAKES-TILE11.webp?v=1759869685","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COCONUTFLAKES-TILE12.webp?v=1759869687"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414301974,
          "title": "Vanilla Swirl 3.1",
          "available": true,
          "inventory": 85,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-VANILLASWIRL-TILE1_1af898bd-8975-4ebc-a6e2-974c1afd9269.webp?v=1762684984","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-VANILLASWIRL-TILE2.webp?v=1759869690","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-VANILLASWIRL-TILE3.webp?v=1759869688","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-VANILLASWIRL-TILE5.webp?v=1759869691","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-VANILLASWIRL-TILE6.webp?v=1759869690","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-VANILLASWIRL-TILE7.webp?v=1759869693","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-VANILLASWIRL-TILE8.webp?v=1759869694","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-VANILLASWIRL-TILE9.webp?v=1759869695","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-VANILLASWIRL-TILE10.webp?v=1759869696","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-VANILLASWIRL-TILE11.webp?v=1759869696","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-VANILLASWIRL-TILE12.webp?v=1759869697"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414334742,
          "title": "Marmalade 3.3",
          "available": true,
          "inventory": 69,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MARMALADE-TILE1_ff4cf75b-c198-416d-9efe-35e9a2280316.webp?v=1762685019","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MARMALADE-TILE2.webp?v=1759869700","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MARMALADE-TILE3.webp?v=1759869701","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MARMALADE-TILE5.webp?v=1759869702","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MARMALADE-TILE6.webp?v=1759869704","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MARMALADE-TILE7.webp?v=1759869703","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MARMALADE-TILE8.webp?v=1759869705","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MARMALADE-TILE9.webp?v=1759869706","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MARMALADE-TILE10.webp?v=1759869705","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MARMALADE-TILE11.webp?v=1759869707","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MARMALADE-TILE12.webp?v=1759869707"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414367510,
          "title": "Sugar Biscuit 3.5",
          "available": true,
          "inventory": 87,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-SUGARBISCUIT-TILE1_cb2c045a-66a3-4573-9d42-be49d0177d90.webp?v=1762685067","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-SUGARBISCUIT-TILE2.webp?v=1759869711","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-SUGARBISCUIT-TILE3.webp?v=1759869713","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-SUGARBISCUIT-TILE5.webp?v=1759869711","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-SUGARBISCUIT-TILE6.webp?v=1759869715","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-SUGARBISCUIT-TILE7.webp?v=1759869714","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-SUGARBISCUIT-TILE8.webp?v=1759869716","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-SUGARBISCUIT-TILE9.webp?v=1759869717","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-SUGARBISCUIT-TILE10.webp?v=1759869718","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-SUGARBISCUIT-TILE11.webp?v=1759869718","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-SUGARBISCUIT-TILE12.webp?v=1759869719"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414400278,
          "title": "Graham Cracker 4.1",
          "available": true,
          "inventory": 115,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE1_a3e6fd5f-6e4a-4ca8-a9be-6a7fd29956e0.webp?v=1762685099","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE2.webp?v=1759869722","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE3.webp?v=1759869724","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE5.webp?v=1759869724","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE6.webp?v=1759869726","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE7.webp?v=1759869725","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE8.webp?v=1759869727","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE9.webp?v=1759869727","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE10.webp?v=1759869729","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE11.webp?v=1759869730","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRAHAMCRACKER-TILE12.webp?v=1759869730"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414433046,
          "title": "Cookie Dough 4.3",
          "available": true,
          "inventory": 80,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COOKIEDOUGH-TILE1_d3dd7d25-0b5b-4aee-9ebf-6596f15f49d0.webp?v=1762685201","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COOKIEDOUGH-TILE2.webp?v=1759869733","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COOKIEDOUGH-TILE3.webp?v=1759869735","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COOKIEDOUGH-TILE5.webp?v=1759869736","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COOKIEDOUGH-TILE6.webp?v=1759869738","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COOKIEDOUGH-TILE7.webp?v=1759869737","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COOKIEDOUGH-TILE8.webp?v=1759869739","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COOKIEDOUGH-TILE9.webp?v=1759869740","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COOKIEDOUGH-TILE10.webp?v=1759869741","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COOKIEDOUGH-TILE11.webp?v=1759869741","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-COOKIEDOUGH-TILE12.webp?v=1759869742"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414465814,
          "title": "Granola 4.5",
          "available": true,
          "inventory": 53,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRANOLA-TILE1_d85981b5-14bd-4cdc-95d7-89eaaeff0944.webp?v=1762685238","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRANOLA-TILE2.webp?v=1759869744","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRANOLA-TILE3.webp?v=1759869746","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRANOLA-TILE5.webp?v=1759869747","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRANOLA-TILE6.webp?v=1759869748","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRANOLA-TILE7.webp?v=1759869748","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRANOLA-TILE8.webp?v=1759869749","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRANOLA-TILE9.webp?v=1759869751","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRANOLA-TILE10.webp?v=1759869752","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRANOLA-TILE11.webp?v=1759869752","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-GRANOLA-TILE12.webp?v=1759869753"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414498582,
          "title": "Caramel Corn 5.1",
          "available": true,
          "inventory": 49,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CARAMELCORN-TILE1_810505f1-d674-4ee9-962a-8fca7febebb8.webp?v=1762685794","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CARAMELCORN-TILE2.webp?v=1759869755","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CARAMELCORN-TILE3.webp?v=1759869756","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CARAMELCORN-TILE5.webp?v=1759869755","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CARAMELCORN-TILE6.webp?v=1759869760","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CARAMELCORN-TILE7.webp?v=1759869758","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CARAMELCORN-TILE8.webp?v=1759869760","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CARAMELCORN-TILE9.webp?v=1759869761","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CARAMELCORN-TILE10.webp?v=1759869762","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CARAMELCORN-TILE11.webp?v=1759869761","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CARAMELCORN-TILE12.webp?v=1759869763"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414531350,
          "title": "Toasted Almond 5.3",
          "available": true,
          "inventory": 67,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-TOASTEDALMOND-TILE1_6a8966b7-6bc9-478d-af1c-b389a0ce104a.webp?v=1762685290","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-TOASTEDALMOND-TILE2.webp?v=1759869766","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-TOASTEDALMOND-TILE3.webp?v=1759869768","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-TOASTEDALMOND-TILE5.webp?v=1759869769","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-TOASTEDALMOND-TILE6.webp?v=1759869770","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-TOASTEDALMOND-TILE7.webp?v=1759869769","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-TOASTEDALMOND-TILE8.webp?v=1759869771","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-TOASTEDALMOND-TILE9.webp?v=1759869770","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-TOASTEDALMOND-TILE10.webp?v=1759869771","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-TOASTEDALMOND-TILE11.webp?v=1759869773","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-TOASTEDALMOND-TILE12.webp?v=1759869774"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414564118,
          "title": "Candied Ginger 6.1",
          "available": true,
          "inventory": 50,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CANDIEDGINGER-TILE1_65a9c8f1-cfa0-431d-868b-389b7284466f.webp?v=1762685327","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CANDIEDGINGER-TILE2.webp?v=1759869777","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CANDIEDGINGER-TILE3.webp?v=1759869778","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CANDIEDGINGER-TILE5.webp?v=1759869779","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CANDIEDGINGER-TILE6.webp?v=1759869781","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CANDIEDGINGER-TILE7.webp?v=1759869781","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CANDIEDGINGER-TILE8.webp?v=1759869783","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CANDIEDGINGER-TILE9.webp?v=1759869783","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CANDIEDGINGER-TILE10.webp?v=1759869782","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CANDIEDGINGER-TILE11.webp?v=1759869783","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CANDIEDGINGER-TILE12.webp?v=1759869784"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414596886,
          "title": "Praline 6.3",
          "available": true,
          "inventory": 63,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-PRALINE-TILE1_dbe48d6e-9b61-48a8-9d4c-f72b11475dd6.webp?v=1762685363","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-PRALINE-TILE2.webp?v=1759869789","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-PRALINE-TILE3.webp?v=1759869789","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-PRALINE-TILE5.webp?v=1759869791","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-PRALINE-TILE6.webp?v=1759869792","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-PRALINE-TILE7.webp?v=1759869791","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-PRALINE-TILE8.webp?v=1759869793","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-PRALINE-TILE9.webp?v=1759869794","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-PRALINE-TILE10.webp?v=1759869795","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-PRALINE-TILE11.webp?v=1759869795","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-PRALINE-TILE12.webp?v=1759869796"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414629654,
          "title": "Brittle 6.5",
          "available": true,
          "inventory": 71,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BRITTLE-TILE1_6b1b3861-fb3e-458b-b14a-f66835f7e2d8.webp?v=1762685390","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BRITTLE-TILE2.webp?v=1759869798","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BRITTLE-TILE3.webp?v=1759869800","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BRITTLE-TILE5.webp?v=1759869801","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BRITTLE-TILE6.webp?v=1759869803","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BRITTLE-TILE7.webp?v=1759869802","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BRITTLE-TILE8.webp?v=1759869803","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BRITTLE-TILE9.webp?v=1759869804","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BRITTLE-TILE10.webp?v=1759869803","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BRITTLE-TILE11.webp?v=1759869804","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BRITTLE-TILE12.webp?v=1759869807"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414662422,
          "title": "Peanut Butter 6.7",
          "available": false,
          "inventory": 0,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-PEANUTBUTTER-TILE1_01929956-4e06-48bd-a79a-0a742b3a74ac.webp?v=1762685425","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-PEANUTBUTTER-TILE2.webp?v=1759869807","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-PEANUTBUTTER-TILE3.webp?v=1759869811","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-PEANUTBUTTER-TILE5.webp?v=1759869813","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-PEANUTBUTTER-TILE6.webp?v=1759869814","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-PEANUTBUTTER-TILE7.webp?v=1759869813","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-PEANUTBUTTER-TILE8.webp?v=1759869815","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-PEANUTBUTTER-TILE9.webp?v=1759869816","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-PEANUTBUTTER-TILE10.webp?v=1759869817","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-PEANUTBUTTER-TILE11.webp?v=1759869818","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-PEANUTBUTTER-TILE12.webp?v=1759869819"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414695190,
          "title": "Crumble 7.1",
          "available": true,
          "inventory": 105,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CRUMBLE-TILE1_c217b65c-2b91-44a1-9049-8a3b3f727246.webp?v=1762685471","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CRUMBLE-TILE2.webp?v=1759869821","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CRUMBLE-TILE3.webp?v=1759869820","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CRUMBLE-TILE5.webp?v=1759869824","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CRUMBLE-TILE6.webp?v=1759869826","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CRUMBLE-TILE7.webp?v=1759869825","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CRUMBLE-TILE8.webp?v=1759869827","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CRUMBLE-TILE9.webp?v=1759869828","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CRUMBLE-TILE10.webp?v=1759869829","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CRUMBLE-TILE11.webp?v=1759869829","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CRUMBLE-TILE12.webp?v=1759869831"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414727958,
          "title": "Salted Caramel 7.3",
          "available": true,
          "inventory": 90,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-SALTEDCARAMEL-TILE1_7893aef8-537e-43cb-ae3c-b9b6d15dfa95.webp?v=1762685510","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-SALTEDCARAMEL-TILE2.webp?v=1759869834","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-SALTEDCARAMEL-TILE3.webp?v=1759869835","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-SALTEDCARAMEL-TILE5.webp?v=1759869837","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-SALTEDCARAMEL-TILE6.webp?v=1759869838","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-SALTEDCARAMEL-TILE7.webp?v=1759869837","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-SALTEDCARAMEL-TILE8.webp?v=1759869838","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-SALTEDCARAMEL-TILE9.webp?v=1759869840","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-SALTEDCARAMEL-TILE10.webp?v=1759869841","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-SALTEDCARAMEL-TILE11.webp?v=1759869841","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-SALTEDCARAMEL-TILE12.webp?v=1759869842"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414760726,
          "title": "Butterscotch 7.5",
          "available": true,
          "inventory": 95,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BUTTERSCOTCH-TILE1_df037911-6731-473e-a980-32426f90b1e0.webp?v=1762685545","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BUTTERSCOTCH-TILE2.webp?v=1759869845","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BUTTERSCOTCH-TILE3.webp?v=1759869847","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BUTTERSCOTCH-TILE5.webp?v=1759869847","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BUTTERSCOTCH-TILE6.webp?v=1759869849","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BUTTERSCOTCH-TILE7.webp?v=1759869848","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BUTTERSCOTCH-TILE8.webp?v=1759869848","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BUTTERSCOTCH-TILE9.webp?v=1759869851","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BUTTERSCOTCH-TILE10.webp?v=1759869852","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BUTTERSCOTCH-TILE11.webp?v=1759869853","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BUTTERSCOTCH-TILE12.webp?v=1759869854"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414793494,
          "title": "Honeycomb 7.7",
          "available": true,
          "inventory": 46,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HONEYCOMB-TILE1_2e76503e-dd52-4cbe-b6e1-f1b596ffbaec.webp?v=1762685577","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HONEYCOMB-TILE2.webp?v=1759869857","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HONEYCOMB-TILE3.webp?v=1759869857","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HONEYCOMB-TILE5.webp?v=1759869859","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HONEYCOMB-TILE6.webp?v=1759869860","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HONEYCOMB-TILE7.webp?v=1759869859","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HONEYCOMB-TILE8.webp?v=1759869861","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HONEYCOMB-TILE9.webp?v=1759869862","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HONEYCOMB-TILE10.webp?v=1759869863","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HONEYCOMB-TILE11.webp?v=1759869864","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HONEYCOMB-TILE12.webp?v=1759869864"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414826262,
          "title": "Hazelnut 8.1",
          "available": true,
          "inventory": 49,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HAZELNUT-TILE1_24fc6ee9-270a-424e-a7c0-62b83ee57800.webp?v=1762685617","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HAZELNUT-TILE2.webp?v=1759869867","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HAZELNUT-TILE3.webp?v=1759869869","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HAZELNUT-TILE5.webp?v=1759869867","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HAZELNUT-TILE6.webp?v=1759869871","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HAZELNUT-TILE7.webp?v=1759869869","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HAZELNUT-TILE8.webp?v=1759869872","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HAZELNUT-TILE9.webp?v=1759869873","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HAZELNUT-TILE10.webp?v=1759869874","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HAZELNUT-TILE11.webp?v=1759869874","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-HAZELNUT-TILE12.webp?v=1759869875"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414859030,
          "title": "Maple Syrup 8.3",
          "available": true,
          "inventory": 105,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MAPLESYRUP-TILE1_7f5ead1b-0eab-4e49-b788-a670006eeb41.webp?v=1762685658","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MAPLESYRUP-TILE2.webp?v=1759869878","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MAPLESYRUP-TILE3.webp?v=1759869880","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MAPLESYRUP-TILE5.webp?v=1759869881","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MAPLESYRUP-TILE6.webp?v=1759869883","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MAPLESYRUP-TILE7.webp?v=1759869882","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MAPLESYRUP-TILE8.webp?v=1759869881","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MAPLESYRUP-TILE9.webp?v=1759869885","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MAPLESYRUP-TILE10.webp?v=1759869886","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MAPLESYRUP-TILE11.webp?v=1759869884","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-MAPLESYRUP-TILE12.webp?v=1759869887"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414891798,
          "title": "Brownie 8.5",
          "available": true,
          "inventory": 11,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BROWNIE-TILE1_74f299a7-ced0-49f4-b7c0-9ef37075b0e9.webp?v=1762685691","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BROWNIE-TILE2.webp?v=1759869889","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BROWNIE-TILE3.webp?v=1759869891","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BROWNIE-TILE5.webp?v=1759869892","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BROWNIE-TILE6.webp?v=1759869893","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BROWNIE-TILE7.webp?v=1759869893","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BROWNIE-TILE8.webp?v=1759869894","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BROWNIE-TILE9.webp?v=1759869895","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BROWNIE-TILE10.webp?v=1759869897","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BROWNIE-TILE11.webp?v=1759869897","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-BROWNIE-TILE12.webp?v=1759869896"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573414924566,
          "title": "Chocolate Chip 8.7",
          "available": false,
          "inventory": 0,
          "max_product_quantity": 5,
          "price": "€32,00",
          "save_price": "€-32,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CHOCOLATECHIP-TILE1_33a885d4-97b1-4bed-9c3b-bf19bcdffc86.webp?v=1762685724","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CHOCOLATECHIP-TILE2.webp?v=1759869900","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CHOCOLATECHIP-TILE3.webp?v=1759869902","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CHOCOLATECHIP-TILE5.webp?v=1759869903","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CHOCOLATECHIP-TILE6.webp?v=1759869904","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CHOCOLATECHIP-TILE7.webp?v=1759869904","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CHOCOLATECHIP-TILE8.webp?v=1759869905","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CHOCOLATECHIP-TILE9.webp?v=1759869907","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CHOCOLATECHIP-TILE10.webp?v=1759869905","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CHOCOLATECHIP-TILE11.webp?v=1759869906","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-FFCONCEALER-CHOCOLATECHIP-TILE12.webp?v=1759869909"],
              "shortDescription": "A brightening, creamy, blendable concealer with a skin-like finish. ",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        }
      
    ]
  }
</script>

          
          
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10234756628758"><div data-oke-reviews-version="0.87.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 4.8 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 96.7033%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 4.8 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">4.8</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"4.8","reviewCount":1895} </script></div></div>
    
        (1895)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB00855" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        











<div  class="back-in-stock-container" style="display: none;"><div class="product-back-in-stock-buttons">
    
    

    
    
  </div></div>

        

         
          
















<div
  
  class="waitlist-container"
  
    style="display: none;"
  
><div class="product-waitlist-buttons">
      
      
        <a href="/en-fr/products/fauxfilter-luminous-matte-concealer-hb00855m?variant=50573414007062" class="button button--primary notify-me-btn">Notify Me</a>
      
    </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="template--26760399323414__featured_collection_B3mC3V"
      data-form-id="product-form-template--26760399323414__featured_collection_B3mC3V"
      dl-product-id="HB00855"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-template--26760399323414__featured_collection_B3mC3V" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="50573414007062"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="110"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <button
              id="ProductSubmitButton-template--26760399323414__featured_collection_B3mC3V"
              data-dl-source="Collection"
              data-url="/en-fr/products/fauxfilter-luminous-matte-concealer-hb00855m"
              type="submit"
              name="add"
              class="product-form__submit button button--full-width button--primary"
              
              
            >
              <span>
                Add to Bag
              </span>
            </button></div><input type="hidden" name="product-id" value="10234756628758" /><input type="hidden" name="section-id" value="template--26760399323414__featured_collection_B3mC3V" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li><li
        id="Slide-template--26760399323414__featured_collection_B3mC3V-7"
        class="grid__item slider__slide"
        
      >
        



  























  


































<section
  class="featured-card-product featured-card-product--new-design"
  
    data-card-design="new"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB01028"
    dl-product-name="Easy Bake Setting Spray with 16-Hour Wear"
    dl-product-brand="Huda Beauty US"
    dl-product-category="Powder & Setting Spray"
    dl-product-category2="Face"
    dl-product-category3=""
    dl-product-variant="HB01028"
    dl-product-price="34,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/easy-bake-setting-spray-with-16-hour-wear-hb01028?variant=50573354107158"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/EASYBAKE-SETTINGSPRAY-PDP-FINAL-ECOMM-PACK-2.webp?v=1759671975&width=630 1x,            //hudabeauty.com/cdn/shop/files/EASYBAKE-SETTINGSPRAY-PDP-FINAL-ECOMM-PACK-2.webp?v=1759671975&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/easy-bake-setting-spray-with-16-hour-wear-hb01028?variant=50573354107158"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/EASYBAKE-SETTINGSPRAY-PDP-FINAL-ECOMM-PACK-2.webp?v=1759671975&width=630"
          alt="Easy Bake Setting Spray with 16-Hour Wear"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/EASYBAKE-SETTING_SPRAY-PDP-FINAL-ECOMM_2-B_A_e617be37-a902-49f3-a782-220498ece802.jpg?v=1759671978&width=630 1x,              //hudabeauty.com/cdn/shop/files/EASYBAKE-SETTING_SPRAY-PDP-FINAL-ECOMM_2-B_A_e617be37-a902-49f3-a782-220498ece802.jpg?v=1759671978&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/EASYBAKE-SETTING_SPRAY-PDP-FINAL-ECOMM_2-B_A_e617be37-a902-49f3-a782-220498ece802.jpg?v=1759671978&width=630"
            alt="Easy Bake Setting Spray with 16-Hour Wear"
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">BEST SELLER</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-template--26760399323414__featured_collection_B3mC3V-10234754629910"
      class="product__info-container"
      data-section="template--26760399323414__featured_collection_B3mC3V"
      data-url="/en-fr/products/easy-bake-setting-spray-with-16-hour-wear-hb01028?variant=50573354107158"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/easy-bake-setting-spray-with-16-hour-wear-hb01028?variant=50573354107158">
          
            <h3 class="h6">Easy Bake Setting Spray with 16-Hour Wear
</h3>
          
        </a>
      </div>
      
      

      <div
        class="product_card_price mb-xs"
        id="price-template--26760399323414__featured_collection_B3mC3V"
        data-url="/en-fr/products/easy-bake-setting-spray-with-16-hour-wear-hb01028?variant=50573354107158"
        role="status"
        
      >


<div
    class="price      price-section-data price--large"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €34,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €34,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€-34,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker">
        
          
          
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10234754629910"><div data-oke-reviews-version="0.87.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 4.7 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 95.0549%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 4.7 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">4.7</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"4.7","reviewCount":388} </script></div></div>
    
        (388)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB01028" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        











<div  class="back-in-stock-container" style="display: none;"><div class="product-back-in-stock-buttons">
    
    

    
    
  </div></div>

        

         
          
















<div
  
  class="waitlist-container"
  
    style="display: none;"
  
><div class="product-waitlist-buttons">
      
      
        <a href="/en-fr/products/easy-bake-setting-spray-with-16-hour-wear-hb01028?variant=50573354107158" class="button button--primary notify-me-btn">Notify Me</a>
      
    </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="template--26760399323414__featured_collection_B3mC3V"
      data-form-id="product-form-template--26760399323414__featured_collection_B3mC3V"
      dl-product-id="HB01028"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-template--26760399323414__featured_collection_B3mC3V" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="50573354107158"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="1035"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <button
              id="ProductSubmitButton-template--26760399323414__featured_collection_B3mC3V"
              data-dl-source="Collection"
              data-url="/en-fr/products/easy-bake-setting-spray-with-16-hour-wear-hb01028"
              type="submit"
              name="add"
              class="product-form__submit button button--full-width button--primary"
              
              
            >
              <span>
                Add to Bag
              </span>
            </button></div><input type="hidden" name="product-id" value="10234754629910" /><input type="hidden" name="section-id" value="template--26760399323414__featured_collection_B3mC3V" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li><li
        id="Slide-template--26760399323414__featured_collection_B3mC3V-8"
        class="grid__item slider__slide"
        
      >
        



  







  

      
      
















  

  

  

  

  

  

  

  

  

  

  

  

  

  






























  
  

  
    
    




<section
  class="featured-card-product featured-card-product--new-design"
  
    data-card-design="new"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB01731"
    dl-product-name="Blush Filter Liquid Blush"
    dl-product-brand="Huda Beauty US"
    dl-product-category="Blush"
    dl-product-category2="Cheek"
    dl-product-category3=""
    dl-product-variant="HB01731"
    dl-product-price="28,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/blush-filter-liquid-blush-hb01345m?variant=51161393529110"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494&width=630 1x,            //hudabeauty.com/cdn/shop/files/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/blush-filter-liquid-blush-hb01345m?variant=51161393529110"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494&width=630"
          alt="Blush Filter Liquid Blush -  Strawberry Latte"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/Artboard_140_3_1.webp?v=1774424665&width=630 1x,              //hudabeauty.com/cdn/shop/files/Artboard_140_3_1.webp?v=1774424665&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/Artboard_140_3_1.webp?v=1774424665&width=630"
            alt="Blush Filter Liquid Blush -  Strawberry Latte Before and After "
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">NEW</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-template--26760399323414__featured_collection_B3mC3V-10234761937174"
      class="product__info-container"
      data-section="template--26760399323414__featured_collection_B3mC3V"
      data-url="/en-fr/products/blush-filter-liquid-blush-hb01345m?variant=51161393529110"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/blush-filter-liquid-blush-hb01345m?variant=51161393529110">
          
            <h3 class="h6">Blush Filter Liquid Blush
</h3>
          
        </a>
      </div>
      
      

      <div
        class="product_card_price mb-xs"
        id="price-template--26760399323414__featured_collection_B3mC3V"
        data-url="/en-fr/products/blush-filter-liquid-blush-hb01345m?variant=51161393529110"
        role="status"
        
      >


<div
    class="price      price-section-data price--large"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €28,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €28,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€-28,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker">
        
          


<div class="loading__spinner">
  <svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" class="spinner" viewbox="0 0 66 66"><circle stroke-width="6" cx="33" cy="33" r="30" fill="none" class="path"/></svg>

</div>


<link href="//hudabeauty.com/cdn/shop/t/162/assets/product-card-swatches.css?v=48729697193943970631775984107" rel="stylesheet" type="text/css" media="all" />





<div
  class="product-card-swatches featured-carousel"
  data-handle="blush-filter-liquid-blush-hb01345m"
>

        

        
        
        
        
        
<div class="product-swatch-new-wrapper">
            <span class="swatch-new-badge">NEW</span>
          <div
            data-id="51161393529110"
            class="product-swatch br-round"
            style="background-color: #AE4C4A; display: flex;"
            aria-label="Strawberry Latte"
            title="Strawberry Latte"
          ></div>
        
</div>


        

        
        
        
        
        
<div class="product-swatch-new-wrapper">
            <span class="swatch-new-badge">NEW</span>
          <div
            data-id="51161394774294"
            class="product-swatch br-round"
            style="background-color: #ba548a ; display: flex;"
            aria-label="Ube Berry"
            title="Ube Berry"
          ></div>
        
</div>


        

        
        
        
        
        
<div class="product-swatch-new-wrapper">
            <span class="swatch-new-badge">NEW</span>
          <div
            data-id="51161397625110"
            class="product-swatch br-round"
            style="background-color: #9A2439; display: flex;"
            aria-label="Berry Fever"
            title="Berry Fever"
          ></div>
        
</div>


        

        
        
        
        
        

          <div
            data-id="50573490979094"
            class="product-swatch br-round"
            style="background-color: #BF7184; display: flex;"
            aria-label="Strawberry Cream"
            title="Strawberry Cream"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573490848022"
            class="product-swatch br-round"
            style="background-color: #F6A3BB; display: flex;"
            aria-label="Cotton Candy"
            title="Cotton Candy"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573491011862"
            class="product-swatch br-round"
            style="background-color: #F79FAF; display: flex;"
            aria-label="Bubble Gum"
            title="Bubble Gum"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="51053742162198"
            class="product-swatch br-round"
            style="background-color: #EBB9D6; display: flex;"
            aria-label="Ube Cream"
            title="Ube Cream"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573491077398"
            class="product-swatch br-round"
            style="background-color: #F23F6D; display: flex;"
            aria-label="Intense Guava"
            title="Intense Guava"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573490946326"
            class="product-swatch br-round"
            style="background-color: #8D2153; display: flex;"
            aria-label="Black Cherry"
            title="Black Cherry"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573491142934"
            class="product-swatch br-round"
            style="background-color: #523234; display: flex;"
            aria-label="Coco Loco"
            title="Coco Loco"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573491110166"
            class="product-swatch br-round"
            style="background-color: #743B3A; display: flex;"
            aria-label="Latte"
            title="Latte"
          ></div>
        



        

        
        
        
        
        

          <div
            data-id="50573491044630"
            class="product-swatch br-round"
            style="background-color: #DA6350; display: flex;"
            aria-label="Sunset Lychee"
            title="Sunset Lychee"
          ></div>
        





<div class="no-js-hidden quick-add"><modal-opener data-modal="#QuickAdd-10234761937174">
          <button
            id="-submit"
            type="button"
            name="add"
            class="color-swatch-item br-round featured-card_choose-more-colors"
            aria-haspopup="dialog"
            aria-labelledby="-submit title--10234761937174"
            data-product-url="/en-fr/products/blush-filter-liquid-blush-hb01345m?view=quick-view"
            data-handle="blush-filter-liquid-blush-hb01345m"
          ><svg aria-hidden="true" width="10" height="11" viewbox="0 0 10 11" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Plus">
<path id="Vector 4" d="M0 5.5H10" stroke="black"/>
<path id="Vector 3" d="M5 0.5V10.5" stroke="black"/>
</g>
</svg>
</button>
        </modal-opener>
        <quick-add-modal id="QuickAdd-10234761937174" class="quick-add-modal">
          <div
            role="dialog"
            aria-label="Choose options for Blush Filter Liquid Blush"
            aria-modal="true"
            class="quick-add-modal__content global-settings-popup"
            tabindex="-1"
          >
            <button
              id="ModalClose-10234761937174"
              type="button"
              class="popup__close"
              aria-label="Close"
            ><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewbox="0 0 20 19" fill="none">
  <path d="M18.9999 0.5L1.25488 18.245L18.9999 0.5Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
  <path d="M18.745 18.245L1 0.5L18.745 18.245Z" stroke="black" stroke-miterlimit="10" stroke-linecap="round"/>
</svg></button>
            <div id="QuickAddInfo-10234761937174" class="quick-add-modal__content-info"></div>
          </div>
        </quick-add-modal></div></div><script type="application/json" data-selected-variant-meta>
  {
    "default_selected_variant": {"id":51161393529110,"title":"Strawberry Latte","option1":"Strawberry Latte","option2":null,"option3":null,"sku":"HB01731","requires_shipping":true,"taxable":true,"featured_image":{"id":54844838052118,"product_id":10234761937174,"position":21,"created_at":"2026-03-25T11:41:32+04:00","updated_at":"2026-03-25T11:41:34+04:00","alt":"Blush Filter Liquid Blush -  Strawberry Latte","width":4167,"height":5209,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494","variant_ids":[51161393529110]},"available":true,"name":"Blush Filter Liquid Blush - Strawberry Latte","public_title":"Strawberry Latte","options":["Strawberry Latte"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408802","featured_media":{"alt":"Blush Filter Liquid Blush -  Strawberry Latte","id":44655810838806,"position":21,"preview_image":{"aspect_ratio":0.8,"height":5209,"width":4167,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},
    "product": {"id":10234761937174,"title":"Blush Filter Liquid Blush","handle":"blush-filter-liquid-blush-hb01345m","description":"","published_at":"2025-10-05T02:30:04+04:00","created_at":"2025-10-05T02:29:53+04:00","vendor":"Huda Beauty US","type":"","tags":["_okendo:syndication_key:blush-filter-liquid-blush-hb01345m","HB","short_description"],"price":2800,"price_min":2800,"price_max":2800,"available":true,"price_varies":false,"compare_at_price":null,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":51161393529110,"title":"Strawberry Latte","option1":"Strawberry Latte","option2":null,"option3":null,"sku":"HB01731","requires_shipping":true,"taxable":true,"featured_image":{"id":54844838052118,"product_id":10234761937174,"position":21,"created_at":"2026-03-25T11:41:32+04:00","updated_at":"2026-03-25T11:41:34+04:00","alt":"Blush Filter Liquid Blush -  Strawberry Latte","width":4167,"height":5209,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494","variant_ids":[51161393529110]},"available":true,"name":"Blush Filter Liquid Blush - Strawberry Latte","public_title":"Strawberry Latte","options":["Strawberry Latte"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408802","featured_media":{"alt":"Blush Filter Liquid Blush -  Strawberry Latte","id":44655810838806,"position":21,"preview_image":{"aspect_ratio":0.8,"height":5209,"width":4167,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":51161394774294,"title":"Ube Berry","option1":"Ube Berry","option2":null,"option3":null,"sku":"HB01737","requires_shipping":true,"taxable":true,"featured_image":{"id":54844837986582,"product_id":10234761937174,"position":22,"created_at":"2026-03-25T11:41:32+04:00","updated_at":"2026-03-25T11:41:34+04:00","alt":"Blush Filter Liquid Blush - Ube Berry","width":4167,"height":5209,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_8-UBE-BERRY.webp?v=1774424494","variant_ids":[51161394774294]},"available":true,"name":"Blush Filter Liquid Blush - Ube Berry","public_title":"Ube Berry","options":["Ube Berry"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018408963","featured_media":{"alt":"Blush Filter Liquid Blush - Ube Berry","id":44655810773270,"position":22,"preview_image":{"aspect_ratio":0.8,"height":5209,"width":4167,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_8-UBE-BERRY.webp?v=1774424494"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":51161397625110,"title":"Berry Fever","option1":"Berry Fever","option2":null,"option3":null,"sku":"HB01771","requires_shipping":true,"taxable":true,"featured_image":{"id":54844838019350,"product_id":10234761937174,"position":23,"created_at":"2026-03-25T11:41:32+04:00","updated_at":"2026-03-25T11:41:34+04:00","alt":"Blush Filter Liquid Blush - Berry Fever","width":4167,"height":5209,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_10-BERRY-FEVER.webp?v=1774424494","variant_ids":[51161397625110]},"available":true,"name":"Blush Filter Liquid Blush - Berry Fever","public_title":"Berry Fever","options":["Berry Fever"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"6294018409168","featured_media":{"alt":"Blush Filter Liquid Blush - Berry Fever","id":44655810806038,"position":23,"preview_image":{"aspect_ratio":0.8,"height":5209,"width":4167,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_10-BERRY-FEVER.webp?v=1774424494"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573490979094,"title":"Strawberry Cream","option1":"Strawberry Cream","option2":null,"option3":null,"sku":"HB01349","requires_shipping":true,"taxable":true,"featured_image":{"id":54912976650518,"product_id":10234761937174,"position":24,"created_at":"2026-03-31T13:38:18+04:00","updated_at":"2026-03-31T13:38:20+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_5-STRAWBERRY-CREAM.webp?v=1774949900","variant_ids":[50573490979094]},"available":true,"name":"Blush Filter Liquid Blush - Strawberry Cream","public_title":"Strawberry Cream","options":["Strawberry Cream"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713326313750,"position":24,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_5-STRAWBERRY-CREAM.webp?v=1774949900"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573490848022,"title":"Cotton Candy","option1":"Cotton Candy","option2":null,"option3":null,"sku":"HB01345","requires_shipping":true,"taxable":true,"featured_image":{"id":54912993067286,"product_id":10234761937174,"position":25,"created_at":"2026-03-31T13:43:11+04:00","updated_at":"2026-03-31T13:43:13+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_3-COTTON-CANDY.webp?v=1774950193","variant_ids":[50573490848022]},"available":true,"name":"Blush Filter Liquid Blush - Cotton Candy","public_title":"Cotton Candy","options":["Cotton Candy"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713339846934,"position":25,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_3-COTTON-CANDY.webp?v=1774950193"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573491011862,"title":"Bubble Gum","option1":"Bubble Gum","option2":null,"option3":null,"sku":"HB01531","requires_shipping":true,"taxable":true,"featured_image":{"id":54913002144022,"product_id":10234761937174,"position":26,"created_at":"2026-03-31T13:46:20+04:00","updated_at":"2026-03-31T13:46:21+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_1-BUBBLEGUM.webp?v=1774950381","variant_ids":[50573491011862]},"available":true,"name":"Blush Filter Liquid Blush - Bubble Gum","public_title":"Bubble Gum","options":["Bubble Gum"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713348923670,"position":26,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_1-BUBBLEGUM.webp?v=1774950381"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":51053742162198,"title":"Ube Cream","option1":"Ube Cream","option2":null,"option3":null,"sku":"HB01491","requires_shipping":true,"taxable":true,"featured_image":{"id":54913004470550,"product_id":10234761937174,"position":27,"created_at":"2026-03-31T13:47:19+04:00","updated_at":"2026-03-31T13:47:21+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_2-UBE-CREAM.webp?v=1774950441","variant_ids":[51053742162198]},"available":true,"name":"Blush Filter Liquid Blush - Ube Cream","public_title":"Ube Cream","options":["Ube Cream"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713351250198,"position":27,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_2-UBE-CREAM.webp?v=1774950441"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573491077398,"title":"Intense Guava","option1":"Intense Guava","option2":null,"option3":null,"sku":"HB01532","requires_shipping":true,"taxable":true,"featured_image":{"id":54913007485206,"product_id":10234761937174,"position":28,"created_at":"2026-03-31T13:48:30+04:00","updated_at":"2026-03-31T13:48:32+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_9-INTENSE-GUAVA.webp?v=1774950512","variant_ids":[50573491077398]},"available":true,"name":"Blush Filter Liquid Blush - Intense Guava","public_title":"Intense Guava","options":["Intense Guava"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713354264854,"position":28,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_9-INTENSE-GUAVA.webp?v=1774950512"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573490946326,"title":"Black Cherry","option1":"Black Cherry","option2":null,"option3":null,"sku":"HB01348","requires_shipping":true,"taxable":true,"featured_image":{"id":54913009975574,"product_id":10234761937174,"position":29,"created_at":"2026-03-31T13:49:32+04:00","updated_at":"2026-03-31T13:49:33+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_11-BLACK-CHERRY.webp?v=1774950573","variant_ids":[50573490946326]},"available":true,"name":"Blush Filter Liquid Blush - Black Cherry","public_title":"Black Cherry","options":["Black Cherry"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713356722454,"position":29,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_11-BLACK-CHERRY.webp?v=1774950573"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573491142934,"title":"Coco Loco","option1":"Coco Loco","option2":null,"option3":null,"sku":"HB01376","requires_shipping":true,"taxable":true,"featured_image":{"id":54913013088534,"product_id":10234761937174,"position":30,"created_at":"2026-03-31T13:50:59+04:00","updated_at":"2026-03-31T13:51:00+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_12-COCO-LOCO.webp?v=1774950660","variant_ids":[50573491142934]},"available":true,"name":"Blush Filter Liquid Blush - Coco Loco","public_title":"Coco Loco","options":["Coco Loco"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713359868182,"position":30,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_12-COCO-LOCO.webp?v=1774950660"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573491110166,"title":"Latte","option1":"Latte","option2":null,"option3":null,"sku":"HB01375","requires_shipping":true,"taxable":true,"featured_image":{"id":54913018691862,"product_id":10234761937174,"position":31,"created_at":"2026-03-31T13:53:35+04:00","updated_at":"2026-03-31T13:53:37+04:00","alt":null,"width":3000,"height":3501,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_7-LATTE.webp?v=1774950817","variant_ids":[50573491110166]},"available":true,"name":"Blush Filter Liquid Blush - Latte","public_title":"Latte","options":["Latte"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713365438742,"position":31,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_7-LATTE.webp?v=1774950817"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573491044630,"title":"Sunset Lychee","option1":"Sunset Lychee","option2":null,"option3":null,"sku":"HB01533","requires_shipping":true,"taxable":true,"featured_image":{"id":54913020002582,"product_id":10234761937174,"position":32,"created_at":"2026-03-31T13:55:05+04:00","updated_at":"2026-03-31T13:55:07+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_4-SUNSET-LYCHEE.webp?v=1774950907","variant_ids":[50573491044630]},"available":true,"name":"Blush Filter Liquid Blush - Sunset Lychee","public_title":"Sunset Lychee","options":["Sunset Lychee"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":44713366749462,"position":32,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_4-SUNSET-LYCHEE.webp?v=1774950907"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573490880790,"title":"Peach Sorbet","option1":"Peach Sorbet","option2":null,"option3":null,"sku":"HB01346","requires_shipping":true,"taxable":true,"featured_image":{"id":52288302645526,"product_id":10234761937174,"position":33,"created_at":"2025-10-08T01:16:12+04:00","updated_at":"2025-10-08T01:16:15+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE1.webp?v=1759871775","variant_ids":[50573490880790]},"available":true,"name":"Blush Filter Liquid Blush - Peach Sorbet","public_title":"Peach Sorbet","options":["Peach Sorbet"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":42389379809558,"position":33,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE1.webp?v=1759871775"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}},{"id":50573490913558,"title":"Watermelon Pop","option1":"Watermelon Pop","option2":null,"option3":null,"sku":"HB01347","requires_shipping":true,"taxable":true,"featured_image":{"id":52232112898326,"product_id":10234761937174,"position":20,"created_at":"2025-10-04T21:37:38+04:00","updated_at":"2025-10-05T02:29:02+04:00","alt":null,"width":3000,"height":3500,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE1_ed1f90cf-f983-42d2-826b-c0e13a11f594.webp?v=1759616942","variant_ids":[50573490913558]},"available":true,"name":"Blush Filter Liquid Blush - Watermelon Pop","public_title":"Watermelon Pop","options":["Watermelon Pop"],"price":2800,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","featured_media":{"alt":null,"id":42342415761686,"position":20,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE1_ed1f90cf-f983-42d2-826b-c0e13a11f594.webp?v=1759616942"}},"requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}],"images":["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE1_ded21597-e66d-4e97-afa5-e814766cdd67.webp?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE2.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE4.jpg?v=1759616941","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE5.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE6.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE7.jpg?v=1759616941","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE9.jpg?v=1759616941","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE10.jpg?v=1759616941","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE11.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE12.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE8.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE2.jpg?v=1759616941","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE4.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-STRAWBERRYCREAM-TILE2.jpg?v=1759616943","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-STRAWBERRYCREAM-TILE4.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE2.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE4.jpg?v=1759616941","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-BLACKCHERRY-TILE2.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-BLACKCHERRY-TILE4.jpg?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE1_ed1f90cf-f983-42d2-826b-c0e13a11f594.webp?v=1759616942","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_8-UBE-BERRY.webp?v=1774424494","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_10-BERRY-FEVER.webp?v=1774424494","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_5-STRAWBERRY-CREAM.webp?v=1774949900","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_3-COTTON-CANDY.webp?v=1774950193","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_1-BUBBLEGUM.webp?v=1774950381","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_2-UBE-CREAM.webp?v=1774950441","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_9-INTENSE-GUAVA.webp?v=1774950512","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_11-BLACK-CHERRY.webp?v=1774950573","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_12-COCO-LOCO.webp?v=1774950660","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_7-LATTE.webp?v=1774950817","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_4-SUNSET-LYCHEE.webp?v=1774950907","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE1.webp?v=1759871775"],"featured_image":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE1_ded21597-e66d-4e97-afa5-e814766cdd67.webp?v=1759616942","options":["Shade"],"media":[{"alt":null,"id":42342351503638,"position":1,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE1_ded21597-e66d-4e97-afa5-e814766cdd67.webp?v=1759616942"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE1_ded21597-e66d-4e97-afa5-e814766cdd67.webp?v=1759616942","width":3000},{"alt":null,"id":42342351634710,"position":2,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE2.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE2.jpg?v=1759616942","width":3000},{"alt":null,"id":42342352126230,"position":3,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE4.jpg?v=1759616941"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE4.jpg?v=1759616941","width":3000},{"alt":null,"id":42342353273110,"position":4,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE5.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE5.jpg?v=1759616942","width":3001},{"alt":null,"id":42342353568022,"position":5,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE6.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE6.jpg?v=1759616942","width":3001},{"alt":null,"id":42342353731862,"position":6,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE7.jpg?v=1759616941"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE7.jpg?v=1759616941","width":3001},{"alt":null,"id":42342354813206,"position":7,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE9.jpg?v=1759616941"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE9.jpg?v=1759616941","width":3001},{"alt":null,"id":42342350422294,"position":8,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE10.jpg?v=1759616941"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE10.jpg?v=1759616941","width":3001},{"alt":null,"id":42342350586134,"position":9,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE11.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE11.jpg?v=1759616942","width":3001},{"alt":null,"id":42342351012118,"position":10,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE12.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE12.jpg?v=1759616942","width":3001},{"alt":null,"id":42342354551062,"position":11,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3001,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE8.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-COTTONCANDY-TILE8.jpg?v=1759616942","width":3001},{"alt":null,"id":42342359073046,"position":12,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE2.jpg?v=1759616941"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE2.jpg?v=1759616941","width":3000},{"alt":null,"id":42342359171350,"position":13,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE4.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE4.jpg?v=1759616942","width":3000},{"alt":null,"id":42342360776982,"position":14,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-STRAWBERRYCREAM-TILE2.jpg?v=1759616943"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-STRAWBERRYCREAM-TILE2.jpg?v=1759616943","width":3000},{"alt":null,"id":42342360973590,"position":15,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-STRAWBERRYCREAM-TILE4.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-STRAWBERRYCREAM-TILE4.jpg?v=1759616942","width":3000},{"alt":null,"id":42342416875798,"position":16,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE2.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE2.jpg?v=1759616942","width":3000},{"alt":null,"id":42342420087062,"position":17,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE4.jpg?v=1759616941"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE4.jpg?v=1759616941","width":3000},{"alt":null,"id":42342333350166,"position":18,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-BLACKCHERRY-TILE2.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-BLACKCHERRY-TILE2.jpg?v=1759616942","width":3000},{"alt":null,"id":42342333448470,"position":19,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-BLACKCHERRY-TILE4.jpg?v=1759616942"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-BLACKCHERRY-TILE4.jpg?v=1759616942","width":3000},{"alt":null,"id":42342415761686,"position":20,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE1_ed1f90cf-f983-42d2-826b-c0e13a11f594.webp?v=1759616942"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE1_ed1f90cf-f983-42d2-826b-c0e13a11f594.webp?v=1759616942","width":3000},{"alt":"Blush Filter Liquid Blush -  Strawberry Latte","id":44655810838806,"position":21,"preview_image":{"aspect_ratio":0.8,"height":5209,"width":4167,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494"},"aspect_ratio":0.8,"height":5209,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494","width":4167},{"alt":"Blush Filter Liquid Blush - Ube Berry","id":44655810773270,"position":22,"preview_image":{"aspect_ratio":0.8,"height":5209,"width":4167,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_8-UBE-BERRY.webp?v=1774424494"},"aspect_ratio":0.8,"height":5209,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_8-UBE-BERRY.webp?v=1774424494","width":4167},{"alt":"Blush Filter Liquid Blush - Berry Fever","id":44655810806038,"position":23,"preview_image":{"aspect_ratio":0.8,"height":5209,"width":4167,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_10-BERRY-FEVER.webp?v=1774424494"},"aspect_ratio":0.8,"height":5209,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_10-BERRY-FEVER.webp?v=1774424494","width":4167},{"alt":null,"id":44713326313750,"position":24,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_5-STRAWBERRY-CREAM.webp?v=1774949900"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_5-STRAWBERRY-CREAM.webp?v=1774949900","width":3000},{"alt":null,"id":44713339846934,"position":25,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_3-COTTON-CANDY.webp?v=1774950193"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_3-COTTON-CANDY.webp?v=1774950193","width":3000},{"alt":null,"id":44713348923670,"position":26,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_1-BUBBLEGUM.webp?v=1774950381"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_1-BUBBLEGUM.webp?v=1774950381","width":3000},{"alt":null,"id":44713351250198,"position":27,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_2-UBE-CREAM.webp?v=1774950441"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_2-UBE-CREAM.webp?v=1774950441","width":3000},{"alt":null,"id":44713354264854,"position":28,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_9-INTENSE-GUAVA.webp?v=1774950512"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_9-INTENSE-GUAVA.webp?v=1774950512","width":3000},{"alt":null,"id":44713356722454,"position":29,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_11-BLACK-CHERRY.webp?v=1774950573"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_11-BLACK-CHERRY.webp?v=1774950573","width":3000},{"alt":null,"id":44713359868182,"position":30,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_12-COCO-LOCO.webp?v=1774950660"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_12-COCO-LOCO.webp?v=1774950660","width":3000},{"alt":null,"id":44713365438742,"position":31,"preview_image":{"aspect_ratio":0.857,"height":3501,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_7-LATTE.webp?v=1774950817"},"aspect_ratio":0.857,"height":3501,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_7-LATTE.webp?v=1774950817","width":3000},{"alt":null,"id":44713366749462,"position":32,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_4-SUNSET-LYCHEE.webp?v=1774950907"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_4-SUNSET-LYCHEE.webp?v=1774950907","width":3000},{"alt":null,"id":42389379809558,"position":33,"preview_image":{"aspect_ratio":0.857,"height":3500,"width":3000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE1.webp?v=1759871775"},"aspect_ratio":0.857,"height":3500,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE1.webp?v=1759871775","width":3000}],"requires_selling_plan":false,"selling_plan_groups":[],"content":""},
    "variants": [
      
{
          "id": 51161393529110,
          "title": "Strawberry Latte",
          "available": true,
          "inventory": 1120,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_6-STRAWBERRY-LATTE.webp?v=1774424494","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_3_1.webp?v=1774424665","\/\/hudabeauty.com\/cdn\/shop\/files\/Strawberry_Latte_Shade.webp?v=1774424789","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_4.webp?v=1774424949"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 51161394774294,
          "title": "Ube Berry",
          "available": true,
          "inventory": 1166,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_8-UBE-BERRY.webp?v=1774424494","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_5.webp?v=1774424694","\/\/hudabeauty.com\/cdn\/shop\/files\/Ube_Berry_Shade.webp?v=1774424789","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_4.webp?v=1774424949"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 51161397625110,
          "title": "Berry Fever",
          "available": true,
          "inventory": 491,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_10-BERRY-FEVER.webp?v=1774424494","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_7.webp?v=1774424726","\/\/hudabeauty.com\/cdn\/shop\/files\/Berry_Fever_Shade.webp?v=1774424789","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_4.webp?v=1774424949"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573490979094,
          "title": "Strawberry Cream",
          "available": true,
          "inventory": 96,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_5-STRAWBERRY-CREAM.webp?v=1774949900","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_2.webp?v=1774949903","\/\/hudabeauty.com\/cdn\/shop\/files\/Strawberry_Cream_Shade.webp?v=1774949903","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        },
      
{
          "id": 50573490848022,
          "title": "Cotton Candy",
          "available": true,
          "inventory": 110,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_3-COTTON-CANDY.webp?v=1774950193","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140.webp?v=1774950196","\/\/hudabeauty.com\/cdn\/shop\/files\/Cotton_Candy_Shade.webp?v=1774950197","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        },
      
{
          "id": 50573491011862,
          "title": "Bubble Gum",
          "available": true,
          "inventory": 135,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_1-BUBBLEGUM.webp?v=1774950381","\/\/hudabeauty.com\/cdn\/shop\/files\/BUBBLEGUM.webp?v=1774950384","\/\/hudabeauty.com\/cdn\/shop\/files\/Bubblegum_shade.webp?v=1774950385","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        },
      
{
          "id": 51053742162198,
          "title": "Ube Cream",
          "available": true,
          "inventory": 303,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_2-UBE-CREAM.webp?v=1774950441","\/\/hudabeauty.com\/cdn\/shop\/files\/UBE-CREAM.webp?v=1774950444","\/\/hudabeauty.com\/cdn\/shop\/files\/Ube_Cream_Shade.webp?v=1774950444","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "2-in-1 hybrid blush with buildable pigment & micro-pearls that melts into skin for a soft-focus, luminous glow.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573491077398,
          "title": "Intense Guava",
          "available": true,
          "inventory": 178,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_9-INTENSE-GUAVA.webp?v=1774950512","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_6.webp?v=1774950514","\/\/hudabeauty.com\/cdn\/shop\/files\/Intense_Guava_Shade.webp?v=1774950514","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        },
      
{
          "id": 50573490946326,
          "title": "Black Cherry",
          "available": true,
          "inventory": 95,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_11-BLACK-CHERRY.webp?v=1774950573","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_8.webp?v=1774950576","\/\/hudabeauty.com\/cdn\/shop\/files\/Black_Cherry_Shade.webp?v=1774950577","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        },
      
{
          "id": 50573491142934,
          "title": "Coco Loco",
          "available": true,
          "inventory": 80,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_12-COCO-LOCO.webp?v=1774950660","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_9.webp?v=1774950662","\/\/hudabeauty.com\/cdn\/shop\/files\/Chocoloco_Shade.webp?v=1774950664","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573491110166,
          "title": "Latte",
          "available": true,
          "inventory": 107,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_7-LATTE.webp?v=1774950817","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_4.webp?v=1774950819","\/\/hudabeauty.com\/cdn\/shop\/files\/Latte_Shade.webp?v=1774950819","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "false"
            }
          }
        },
      
{
          "id": 50573491044630,
          "title": "Sunset Lychee",
          "available": true,
          "inventory": 89,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-FILTER-REFRESH_PDP_PACKSHOTS_FINAL_4-SUNSET-LYCHEE.webp?v=1774950907","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_140_1.webp?v=1774950911","\/\/hudabeauty.com\/cdn\/shop\/files\/Sunset_Lychee_Shade.webp?v=1774950911","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_1.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_2.webp?v=1774424943","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_106.webp?v=1774424952","\/\/hudabeauty.com\/cdn\/shop\/files\/Artboard_132_3.webp?v=1774424946"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        },
      
{
          "id": 50573490880790,
          "title": "Peach Sorbet",
          "available": true,
          "inventory": 122,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE1.webp?v=1759871775","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE2_bfa3cd96-d581-46b0-8aa1-cd05eec702c0.webp?v=1759871775",{"alt":"Blush Filter Liquid Blush of Huda explaining and demonstrating the product","id":42389376925974,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/af7a31e7b99d41888a97717e6b03d024.thumbnail.0000000000.jpg?v=1759871834"},"aspect_ratio":0.558,"duration":102000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/af7a31e7b99d41888a97717e6b03d024\/af7a31e7b99d41888a97717e6b03d024.SD-480p-1.5Mbps-59057266.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/af7a31e7b99d41888a97717e6b03d024\/af7a31e7b99d41888a97717e6b03d024.HD-1080p-7.2Mbps-59057266.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/af7a31e7b99d41888a97717e6b03d024\/af7a31e7b99d41888a97717e6b03d024.HD-720p-4.5Mbps-59057266.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/af7a31e7b99d41888a97717e6b03d024\/af7a31e7b99d41888a97717e6b03d024.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE4_56c0d8f6-81be-47b9-be87-cea377a92e2f.webp?v=1759871777","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE5_3fbe63a2-992b-477c-93e1-3ef321ce13b2.webp?v=1759871779","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE6_ef4fe96b-298a-4e9b-a5a7-e948de13bc35.webp?v=1759871780","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE7_28c22f07-e696-4f36-b376-b808b1480c47.webp?v=1759871781","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE8_e7daf87e-4e61-432c-88eb-d96f26cdec7a.webp?v=1759871783","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-TEXTURE-01.webp?v=1775233640","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE10_36d6ee5d-1391-46d5-826c-cbead8d39d35.webp?v=1759871784","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE11_7d80565e-adea-41cb-ba6a-12f28b8e0f86.webp?v=1759871786","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-PEACHSORBET-TILE12_32d699e4-834f-4424-88df-b0b10cf2ddf3.webp?v=1759871786"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        },
      
{
          "id": 50573490913558,
          "title": "Watermelon Pop",
          "available": true,
          "inventory": 116,
          "max_product_quantity": 5,
          "price": "€28,00",
          "save_price": "€-28,00",
          "compare_at_price": "",
          "metafields": {
            "custom": {
              "image_url": ["\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE1.webp?v=1759871786","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE2_c7eb6929-5957-4f7f-b0bb-c593cb6a7fe8.webp?v=1759871788",{"alt":"Blush Filter Liquid Blush of Huda explaining and demonstrating the product","id":42389376925974,"position":null,"preview_image":{"aspect_ratio":0.561,"height":1080,"width":606,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/preview_images\/af7a31e7b99d41888a97717e6b03d024.thumbnail.0000000000.jpg?v=1759871834"},"aspect_ratio":0.558,"duration":102000,"media_type":"video","sources":[{"format":"mp4","height":480,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/af7a31e7b99d41888a97717e6b03d024\/af7a31e7b99d41888a97717e6b03d024.SD-480p-1.5Mbps-59057266.mp4?v=0","width":268},{"format":"mp4","height":1080,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/af7a31e7b99d41888a97717e6b03d024\/af7a31e7b99d41888a97717e6b03d024.HD-1080p-7.2Mbps-59057266.mp4?v=0","width":606},{"format":"mp4","height":720,"mime_type":"video\/mp4","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/af7a31e7b99d41888a97717e6b03d024\/af7a31e7b99d41888a97717e6b03d024.HD-720p-4.5Mbps-59057266.mp4?v=0","width":404},{"format":"m3u8","height":1080,"mime_type":"application\/x-mpegURL","url":"\/\/hudabeauty.com\/cdn\/shop\/videos\/c\/vp\/af7a31e7b99d41888a97717e6b03d024\/af7a31e7b99d41888a97717e6b03d024.m3u8?v=0","width":606}]},"\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE4_8e7fa149-3156-4b29-8366-b068a5ae8f72.webp?v=1759871789","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE5_b2d8beea-0767-494d-b993-8bc305535400.webp?v=1759871788","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE6_8cdcc262-0ce7-452a-a435-9a74659e1f68.webp?v=1759871789","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE7_b788cd42-8680-489a-a7f9-aa98d1942f5c.webp?v=1759871792","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE8_811cbc83-32d6-4066-adb2-f674f0971231.webp?v=1759871794","\/\/hudabeauty.com\/cdn\/shop\/files\/BLUSH-TEXTURE-01.webp?v=1775233640","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE10_67853daa-617a-47c5-a0ba-ac8edaae22db.webp?v=1759871796","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE11_1d0840e8-2924-4dc6-b029-deb7b518f7c2.webp?v=1759871797","\/\/hudabeauty.com\/cdn\/shop\/files\/PDP-SECTION1-BLUSHFILTER-WATERMELONPOP-TILE12_b8e8bed4-00d2-4e82-a5cd-308b8d889f47.webp?v=1759871798"],
              "shortDescription": "Ultra-pigmented, blendable blush with a soft-focus, 'airblushed' finish.",
              "enableWaitlist": "false",
              "variantOnline": "true",
              "effectiveWaitlist": "false",
              "backInStock": "true"
            }
          }
        }
      
    ]
  }
</script>

          
          
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10234761937174"><div data-oke-reviews-version="0.87.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 4.9 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 98.3516%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 4.9 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">4.9</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"4.9","reviewCount":1096} </script></div></div>
    
        (1096)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB01731" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        











<div  class="back-in-stock-container" style="display: none;"><div class="product-back-in-stock-buttons">
    
    

    
    
  </div></div>

        

         
          
















<div
  
  class="waitlist-container"
  
    style="display: none;"
  
><div class="product-waitlist-buttons">
      
      
        <a href="/en-fr/products/blush-filter-liquid-blush-hb01345m?variant=51161393529110" class="button button--primary notify-me-btn">Notify Me</a>
      
    </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="template--26760399323414__featured_collection_B3mC3V"
      data-form-id="product-form-template--26760399323414__featured_collection_B3mC3V"
      dl-product-id="HB01731"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-template--26760399323414__featured_collection_B3mC3V" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="51161393529110"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="1120"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <button
              id="ProductSubmitButton-template--26760399323414__featured_collection_B3mC3V"
              data-dl-source="Collection"
              data-url="/en-fr/products/blush-filter-liquid-blush-hb01345m"
              type="submit"
              name="add"
              class="product-form__submit button button--full-width button--primary"
              
              
            >
              <span>
                Add to Bag
              </span>
            </button></div><input type="hidden" name="product-id" value="10234761937174" /><input type="hidden" name="section-id" value="template--26760399323414__featured_collection_B3mC3V" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li></ul><div class="slider-buttons">
      <div class="slider-button-wrapper">
        <button
          type="button"
          class="slider-button slider-button--prev"
          name="previous"
          aria-label="Slide left"
        >
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewbox="0 0 20 19" fill="none">
  <g xmlns="http://www.w3.org/2000/svg" id="Arrow">
    <path id="Vector" d="M11.75 15L17.25 8.9M17.25 10L11.75 4M17.25 9.5L0.750001 9.5" stroke="white" stroke-width="2"/>
</g>
</svg></span>
        </button>
      </div>
      <div class="slider-counter caption">
        <span class="slider-counter--current">1</span>
        <span aria-hidden="true"> / </span>
        <span class="visually-hidden">of</span>
        <span class="slider-counter--total">3</span>
      </div>
      <div class="slider-button-wrapper">
        <button
          type="button"
          class="slider-button slider-button--next"
          name="next"
          aria-label="Slide right"
        >
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewbox="0 0 20 19" fill="none">
  <g xmlns="http://www.w3.org/2000/svg" id="Arrow">
    <path id="Vector" d="M11.75 15L17.25 8.9M17.25 10L11.75 4M17.25 9.5L0.750001 9.5" stroke="white" stroke-width="2"/>
</g>
</svg></span>
        </button>
      </div>
    </div></slider-component>

          </div>
        </template>
      
    
      
      
        <template
          data-tab="collection-collection_crgyGE"
          id="template-collection-collection_crgyGE"
        >
          <div class="tab-content" data-tab="collection-collection_crgyGE" id="collection-collection_crgyGE">
            <slider-component
  class="dl-slider slider-mobile-gutter slider-wrapper slider-component-desktop"
><ul
    id="Slider-template--26760399323414__featured_collection_B3mC3V"
    data-id="template--26760399323414__featured_collection_B3mC3V"
    class="grid product-grid contains-card contains-card--product contains-card--standard  slider slider--desktop slider--tablet grid--peek"
    role="list"
    aria-label="Slider"
  >
    
<li
        id="Slide-template--26760399323414__featured_collection_B3mC3V-1"
        class="grid__item slider__slide"
        
      >
        



  























  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  


































<section
  class="featured-card-product featured-card-product--new-design"
  
    data-card-design="new"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB01693,HB01731,HB01690,HB01649"
    dl-product-name="Summer's Hottest Look Kit"
    dl-product-brand="Huda Beauty"
    dl-product-category="Sets + Gifts"
    dl-product-category2="Huda Beauty"
    dl-product-category3=""
    dl-product-variant="set_136-1"
    dl-product-price="105,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/summers-hottest-look-set_136?variant=51172621189398"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SUMMERS-HOTTEST-LOOK-PACKSHOT.webp?v=1774850353&width=630 1x,            //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SUMMERS-HOTTEST-LOOK-PACKSHOT.webp?v=1774850353&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/summers-hottest-look-set_136?variant=51172621189398"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SUMMERS-HOTTEST-LOOK-PACKSHOT.webp?v=1774850353&width=630"
          alt="Summer&#39;s Hottest Look Kit"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SUMMERS-HOTTEST-LOOK-SECOND-IMAGE.webp?v=1774850375&width=630 1x,              //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SUMMERS-HOTTEST-LOOK-SECOND-IMAGE.webp?v=1774850375&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SUMMERS-HOTTEST-LOOK-SECOND-IMAGE.webp?v=1774850375&width=630"
            alt="Summer&#39;s Hottest Look Kit"
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">NEW</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
            
            
            
              <p class="badge--bottom-left sale-badge py-2xs px-xs h6">Save&nbsp; 10%
              </p>
            
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-template--26760399323414__featured_collection_B3mC3V-10463204999446"
      class="product__info-container"
      data-section="template--26760399323414__featured_collection_B3mC3V"
      data-url="/en-fr/products/summers-hottest-look-set_136?variant=51172621189398"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/summers-hottest-look-set_136?variant=51172621189398">
          
            <h3 class="h6">Summer&#39;s Hottest Look Kit
</h3>
          
        </a>
      </div>
      
      

      <div
        class="product_card_price mb-xs"
        id="price-template--26760399323414__featured_collection_B3mC3V"
        data-url="/en-fr/products/summers-hottest-look-set_136?variant=51172621189398"
        role="status"
        
      >


<div
    class="price      price-section-data price--large price--sold-out price--on-sale"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €105,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €105,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              €117,00
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€12,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker">
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10463204999446"><div data-oke-reviews-version="0.87.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 5.0 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 100%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 5.0 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">5.0</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"5.0","reviewCount":2} </script></div></div>
    
        (2)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB01693,HB01731,HB01690,HB01649" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        




  
<!-- Extract last part after last dash from product handle -->



<div  class="bundle-back-in-stock-container">
  <div class="bundle-back-in-stock-button">
    
    
  </div>
</div>

      

         
          




<!-- Extract last part after last dash from product handle -->




  

  
<div  class="bundle-waitlist-container" style="display: none;"><div class="bundle-waitlist-button">
    
      
        <a href="/en-fr/products/summers-hottest-look-set_136" class="button button--primary button--full-width notify-me-btn">Notify Me</a>
    
  </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="template--26760399323414__featured_collection_B3mC3V"
      data-form-id="product-form-template--26760399323414__featured_collection_B3mC3V"
      dl-product-id="HB01693,HB01731,HB01690,HB01649"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-template--26760399323414__featured_collection_B3mC3V" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="51172621189398"
          
            disabled
 class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="0"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="0"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <a href="/en-fr/products/summers-hottest-look-set_136" class="button button--primary button--full-width select-shades-btn">Select shades</a>
          </div><input type="hidden" name="product-id" value="10463204999446" /><input type="hidden" name="section-id" value="template--26760399323414__featured_collection_B3mC3V" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li><li
        id="Slide-template--26760399323414__featured_collection_B3mC3V-2"
        class="grid__item slider__slide"
        
      >
        



  























  


































<section
  class="featured-card-product featured-card-product--new-design"
  
    data-card-design="new"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="set_135"
    dl-product-name="Strawberry Latte Gloss Trio Kit"
    dl-product-brand="Huda Beauty"
    dl-product-category="Sets + Gifts"
    dl-product-category2="Huda Beauty"
    dl-product-category3=""
    dl-product-variant="set_135"
    dl-product-price="62,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/strawberry-latte-gloss-trio-set_135?variant=51147097047318"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_GLOSS-TRIO-PACKSHOT.webp?v=1774770400&width=630 1x,            //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_GLOSS-TRIO-PACKSHOT.webp?v=1774770400&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/strawberry-latte-gloss-trio-set_135?variant=51147097047318"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_GLOSS-TRIO-PACKSHOT.webp?v=1774770400&width=630"
          alt="Strawberry Latte Gloss Trio Kit"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_GLOSS-TRIO-SECOND-IMAGE.webp?v=1774770400&width=630 1x,              //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_GLOSS-TRIO-SECOND-IMAGE.webp?v=1774770400&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_GLOSS-TRIO-SECOND-IMAGE.webp?v=1774770400&width=630"
            alt="Strawberry Latte Gloss Trio Kit"
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">NEW</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
            
            
            
              <p class="badge--bottom-left sale-badge py-2xs px-xs h6">Save&nbsp; 10%
              </p>
            
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-template--26760399323414__featured_collection_B3mC3V-10454142812438"
      class="product__info-container"
      data-section="template--26760399323414__featured_collection_B3mC3V"
      data-url="/en-fr/products/strawberry-latte-gloss-trio-set_135?variant=51147097047318"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/strawberry-latte-gloss-trio-set_135?variant=51147097047318">
          
            <h3 class="h6">Strawberry Latte Gloss Trio Kit
</h3>
          
        </a>
      </div>
      
      

      <div
        class="product_card_price mb-xs"
        id="price-template--26760399323414__featured_collection_B3mC3V"
        data-url="/en-fr/products/strawberry-latte-gloss-trio-set_135?variant=51147097047318"
        role="status"
        
      >


<div
    class="price      price-section-data price--large price--on-sale"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €62,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €62,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              €69,00
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€7,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker">
        
          
          
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10454142812438"></div>
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="set_135" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        




  
<!-- Extract last part after last dash from product handle -->



<div  class="bundle-back-in-stock-container">
  <div class="bundle-back-in-stock-button">
    
    
  </div>
</div>

      

         
          




<!-- Extract last part after last dash from product handle -->




  

  
<div  class="bundle-waitlist-container" style="display: none;"><div class="bundle-waitlist-button">
    
      
        <a href="/en-fr/products/strawberry-latte-gloss-trio-set_135" class="button button--primary button--full-width notify-me-btn">Notify Me</a>
    
  </div></div>

        

      


















<div  class="buy-buttons-container">
        
      
        
      
        
      

    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="template--26760399323414__featured_collection_B3mC3V"
      data-form-id="product-form-template--26760399323414__featured_collection_B3mC3V"
      dl-product-id="set_135"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-template--26760399323414__featured_collection_B3mC3V" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="51147097047318"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="1000"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <button
              id="ProductSubmitButton-template--26760399323414__featured_collection_B3mC3V"
              data-dl-source="Collection"
              data-url="/en-fr/products/strawberry-latte-gloss-trio-set_135"
              type="submit"
              name="add"
              class="product-form__submit button button--full-width button--primary"
              
              
            >
              <span>
                Add to Bag
              </span>
            </button></div><input type="hidden" name="product-id" value="10454142812438" /><input type="hidden" name="section-id" value="template--26760399323414__featured_collection_B3mC3V" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li><li
        id="Slide-template--26760399323414__featured_collection_B3mC3V-3"
        class="grid__item slider__slide"
        
      >
        



  























  


































<section
  class="featured-card-product featured-card-product--new-design"
  
    data-card-design="new"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="set_134"
    dl-product-name="Strawberry Latte Collection Kit"
    dl-product-brand="Huda Beauty US"
    dl-product-category="Sets + Gifts"
    dl-product-category2="Huda Beauty"
    dl-product-category3=""
    dl-product-variant="set_134"
    dl-product-price="151,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/strawberry-latte-collection-set_134?variant=51147089740054"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SLC-PACKSHOT.webp?v=1774769010&width=630 1x,            //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SLC-PACKSHOT.webp?v=1774769010&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/strawberry-latte-collection-set_134?variant=51147089740054"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SLC-PACKSHOT.webp?v=1774769010&width=630"
          alt="Strawberry Latte Collection Kit"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SLC-SECOND-IMAGE.webp?v=1774769010&width=630 1x,              //hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SLC-SECOND-IMAGE.webp?v=1774769010&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/STRAWBERRY-LATTE-COLLECTION-BUNDLES_SLC-SECOND-IMAGE.webp?v=1774769010&width=630"
            alt="Strawberry Latte Collection Kit"
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">NEW</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
            
            
            
              <p class="badge--bottom-left sale-badge py-2xs px-xs h6">Save&nbsp; 10%
              </p>
            
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-template--26760399323414__featured_collection_B3mC3V-10454140354838"
      class="product__info-container"
      data-section="template--26760399323414__featured_collection_B3mC3V"
      data-url="/en-fr/products/strawberry-latte-collection-set_134?variant=51147089740054"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/strawberry-latte-collection-set_134?variant=51147089740054">
          
            <h3 class="h6">Strawberry Latte Collection Kit
</h3>
          
        </a>
      </div>
      
      

      <div
        class="product_card_price mb-xs"
        id="price-template--26760399323414__featured_collection_B3mC3V"
        data-url="/en-fr/products/strawberry-latte-collection-set_134?variant=51147089740054"
        role="status"
        
      >


<div
    class="price      price-section-data price--large price--on-sale"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €151,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €151,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              €168,00
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€17,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker">
        
          
          
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10454140354838"><div data-oke-reviews-version="0.87.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 5.0 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 100%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 5.0 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">5.0</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"5.0","reviewCount":2} </script></div></div>
    
        (2)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="set_134" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        




  
<!-- Extract last part after last dash from product handle -->



<div  class="bundle-back-in-stock-container">
  <div class="bundle-back-in-stock-button">
    
    
  </div>
</div>

      

         
          




<!-- Extract last part after last dash from product handle -->




  

  
<div  class="bundle-waitlist-container" style="display: none;"><div class="bundle-waitlist-button">
    
      
        <a href="/en-fr/products/strawberry-latte-collection-set_134" class="button button--primary button--full-width notify-me-btn">Notify Me</a>
    
  </div></div>

        

      


















<div  class="buy-buttons-container">
        
      
        
      
        
      
        
      
        
      
        
      

    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="template--26760399323414__featured_collection_B3mC3V"
      data-form-id="product-form-template--26760399323414__featured_collection_B3mC3V"
      dl-product-id="set_134"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-template--26760399323414__featured_collection_B3mC3V" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="51147089740054"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="1000"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <button
              id="ProductSubmitButton-template--26760399323414__featured_collection_B3mC3V"
              data-dl-source="Collection"
              data-url="/en-fr/products/strawberry-latte-collection-set_134"
              type="submit"
              name="add"
              class="product-form__submit button button--full-width button--primary"
              
              
            >
              <span>
                Add to Bag
              </span>
            </button></div><input type="hidden" name="product-id" value="10454140354838" /><input type="hidden" name="section-id" value="template--26760399323414__featured_collection_B3mC3V" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li><li
        id="Slide-template--26760399323414__featured_collection_B3mC3V-4"
        class="grid__item slider__slide"
        
      >
        



  























  


































<section
  class="featured-card-product featured-card-product--new-design"
  
    data-card-design="new"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB01665"
    dl-product-name="Habibti Lip And Cheek Best Sellers Kit"
    dl-product-brand="Huda Beauty"
    dl-product-category="Lips"
    dl-product-category2="Huda Beauty"
    dl-product-category3=""
    dl-product-variant="HB01665"
    dl-product-price="50,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/habibti-lip-and-cheek-best-sellers-kit-2026-hb01665?variant=50974606393622"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/PDP-SECTION1-HABIBTILIP_CHEEK-TILE1.jpg?v=1769546543&width=630 1x,            //hudabeauty.com/cdn/shop/files/PDP-SECTION1-HABIBTILIP_CHEEK-TILE1.jpg?v=1769546543&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/habibti-lip-and-cheek-best-sellers-kit-2026-hb01665?variant=50974606393622"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/PDP-SECTION1-HABIBTILIP_CHEEK-TILE1.jpg?v=1769546543&width=630"
          alt="Habibti Lip And Cheek Best Sellers Kit 2026 "
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/PDP-SECTION1-HABIBTILIP_CHEEK-TILE2.jpg?v=1769546543&width=630 1x,              //hudabeauty.com/cdn/shop/files/PDP-SECTION1-HABIBTILIP_CHEEK-TILE2.jpg?v=1769546543&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/PDP-SECTION1-HABIBTILIP_CHEEK-TILE2.jpg?v=1769546543&width=630"
            alt="Habibti Lip And Cheek Best Sellers Kit 2026 model wearing STRABERRY CREAM shade"
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">NEW</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-template--26760399323414__featured_collection_B3mC3V-10389890597142"
      class="product__info-container"
      data-section="template--26760399323414__featured_collection_B3mC3V"
      data-url="/en-fr/products/habibti-lip-and-cheek-best-sellers-kit-2026-hb01665?variant=50974606393622"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/habibti-lip-and-cheek-best-sellers-kit-2026-hb01665?variant=50974606393622">
          
            <h3 class="h6">Habibti Lip And Cheek Best Sellers Kit
</h3>
          
        </a>
      </div>
      
      

      <div
        class="product_card_price mb-xs"
        id="price-template--26760399323414__featured_collection_B3mC3V"
        data-url="/en-fr/products/habibti-lip-and-cheek-best-sellers-kit-2026-hb01665?variant=50974606393622"
        role="status"
        
      >


<div
    class="price      price-section-data price--large price--sold-out"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €50,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €50,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€-50,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker">
        
          
          
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10389890597142"><div data-oke-reviews-version="0.87.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 5.0 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 100%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 5.0 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">5.0</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"5.0","reviewCount":80} </script></div></div>
    
        (80)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB01665" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        











<div  class="back-in-stock-container" ><div class="product-back-in-stock-buttons">
    
    

    
    
      
        <a href="/en-fr/products/habibti-lip-and-cheek-best-sellers-kit-2026-hb01665" class="button button--primary notify-me-btn">Notify Me</a>
      
    
  </div></div>

        

         
          
















<div
  
  class="waitlist-container"
  
    style="display: none;"
  
><div class="product-waitlist-buttons">
      
      
        <a href="/en-fr/products/habibti-lip-and-cheek-best-sellers-kit-2026-hb01665?variant=50974606393622" class="button button--primary notify-me-btn">Notify Me</a>
      
    </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="template--26760399323414__featured_collection_B3mC3V"
      data-form-id="product-form-template--26760399323414__featured_collection_B3mC3V"
      dl-product-id="HB01665"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-template--26760399323414__featured_collection_B3mC3V" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="50974606393622"
          
            disabled
 class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="0"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="0"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons  hide">
            <button
              id="ProductSubmitButton-template--26760399323414__featured_collection_B3mC3V"
              data-dl-source="Collection"
              data-url="/en-fr/products/habibti-lip-and-cheek-best-sellers-kit-2026-hb01665"
              type="submit"
              name="add"
              class="product-form__submit button button--full-width button--primary"
              
                disabled
>
              <span>
                Add to Bag
              </span>
            </button></div><input type="hidden" name="product-id" value="10389890597142" /><input type="hidden" name="section-id" value="template--26760399323414__featured_collection_B3mC3V" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li><li
        id="Slide-template--26760399323414__featured_collection_B3mC3V-5"
        class="grid__item slider__slide"
        
      >
        



  























  


































<section
  class="featured-card-product featured-card-product--new-design"
  
    data-card-design="new"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB01682"
    dl-product-name="Habibti Rosy Pink Lip Duo"
    dl-product-brand="Huda Beauty"
    dl-product-category="Lips"
    dl-product-category2="Huda Beauty"
    dl-product-category3=""
    dl-product-variant="HB01682"
    dl-product-price="37,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/habibti-rosy-pink-lip-duo-2026-hb01682?variant=50975240487190"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/PDP-SECTION1-HABIBTILIPDUO-TILE1_2.jpg?v=1769552467&width=630 1x,            //hudabeauty.com/cdn/shop/files/PDP-SECTION1-HABIBTILIPDUO-TILE1_2.jpg?v=1769552467&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/habibti-rosy-pink-lip-duo-2026-hb01682?variant=50975240487190"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/PDP-SECTION1-HABIBTILIPDUO-TILE1_2.jpg?v=1769552467&width=630"
          alt="Habibti Rosy Pink Lip Duo 2026 product packaging with lip liner and glossy lip oil"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/PDP-SECTION1-HABIBTILIPDUO-TILE3_2.jpg?v=1769605803&width=630 1x,              //hudabeauty.com/cdn/shop/files/PDP-SECTION1-HABIBTILIPDUO-TILE3_2.jpg?v=1769605803&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/PDP-SECTION1-HABIBTILIPDUO-TILE3_2.jpg?v=1769605803&width=630"
            alt="Habibti Rosy Pink Lip Duo 2026 lip contour stain and faux filler jelly oil"
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">NEW</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-template--26760399323414__featured_collection_B3mC3V-10390549463318"
      class="product__info-container"
      data-section="template--26760399323414__featured_collection_B3mC3V"
      data-url="/en-fr/products/habibti-rosy-pink-lip-duo-2026-hb01682?variant=50975240487190"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/habibti-rosy-pink-lip-duo-2026-hb01682?variant=50975240487190">
          
            <h3 class="h6">Habibti Rosy Pink Lip Duo
</h3>
          
        </a>
      </div>
      
      

      <div
        class="product_card_price mb-xs"
        id="price-template--26760399323414__featured_collection_B3mC3V"
        data-url="/en-fr/products/habibti-rosy-pink-lip-duo-2026-hb01682?variant=50975240487190"
        role="status"
        
      >


<div
    class="price      price-section-data price--large"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €37,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €37,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€-37,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker">
        
          
          
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10390549463318"><div data-oke-reviews-version="0.87.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 4.9 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 98.3516%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 4.9 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">4.9</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"4.9","reviewCount":14} </script></div></div>
    
        (14)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB01682" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        











<div  class="back-in-stock-container" style="display: none;"><div class="product-back-in-stock-buttons">
    
    

    
    
  </div></div>

        

         
          
















<div
  
  class="waitlist-container"
  
    style="display: none;"
  
><div class="product-waitlist-buttons">
      
      
        <a href="/en-fr/products/habibti-rosy-pink-lip-duo-2026-hb01682?variant=50975240487190" class="button button--primary notify-me-btn">Notify Me</a>
      
    </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="template--26760399323414__featured_collection_B3mC3V"
      data-form-id="product-form-template--26760399323414__featured_collection_B3mC3V"
      dl-product-id="HB01682"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-template--26760399323414__featured_collection_B3mC3V" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="50975240487190"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="567"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <button
              id="ProductSubmitButton-template--26760399323414__featured_collection_B3mC3V"
              data-dl-source="Collection"
              data-url="/en-fr/products/habibti-rosy-pink-lip-duo-2026-hb01682"
              type="submit"
              name="add"
              class="product-form__submit button button--full-width button--primary"
              
              
            >
              <span>
                Add to Bag
              </span>
            </button></div><input type="hidden" name="product-id" value="10390549463318" /><input type="hidden" name="section-id" value="template--26760399323414__featured_collection_B3mC3V" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li><li
        id="Slide-template--26760399323414__featured_collection_B3mC3V-6"
        class="grid__item slider__slide"
        
      >
        



  























  

  

  

  

  

  

  

  


































<section
  class="featured-card-product featured-card-product--new-design"
  
    data-card-design="new"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB01505,HB01566"
    dl-product-name="Airbrush Made Easy Kit"
    dl-product-brand="Huda Beauty"
    dl-product-category="Powder & Setting Spray"
    dl-product-category2="Face"
    dl-product-category3=""
    dl-product-variant="Set_117-1"
    dl-product-price="51,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/airbrush-made-easy-kit-set_117?variant=50871072358678"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/01-AIRBRUSH-MADE-EASY.webp?v=1768200832&width=630 1x,            //hudabeauty.com/cdn/shop/files/01-AIRBRUSH-MADE-EASY.webp?v=1768200832&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/airbrush-made-easy-kit-set_117?variant=50871072358678"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/01-AIRBRUSH-MADE-EASY.webp?v=1768200832&width=630"
          alt="Airbrush Made Easy Kit"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/02-AIRBRUSH-MADE-EASY.webp?v=1768200832&width=630 1x,              //hudabeauty.com/cdn/shop/files/02-AIRBRUSH-MADE-EASY.webp?v=1768200832&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/02-AIRBRUSH-MADE-EASY.webp?v=1768200832&width=630"
            alt="Airbrush Made Easy Kit"
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">NEW</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
            
            
            
              <p class="badge--bottom-left sale-badge py-2xs px-xs h6">Save&nbsp; 11%
              </p>
            
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-template--26760399323414__featured_collection_B3mC3V-10347261657366"
      class="product__info-container"
      data-section="template--26760399323414__featured_collection_B3mC3V"
      data-url="/en-fr/products/airbrush-made-easy-kit-set_117?variant=50871072358678"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/airbrush-made-easy-kit-set_117?variant=50871072358678">
          
            <h3 class="h6">Airbrush Made Easy Kit
</h3>
          
        </a>
      </div>
      
      

      <div
        class="product_card_price mb-xs"
        id="price-template--26760399323414__featured_collection_B3mC3V"
        data-url="/en-fr/products/airbrush-made-easy-kit-set_117?variant=50871072358678"
        role="status"
        
      >


<div
    class="price      price-section-data price--large price--on-sale"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €51,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €51,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              €57,00
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€6,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker">
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10347261657366"><div data-oke-reviews-version="0.85.10" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 4.6 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 93.4066%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 4.6 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">4.6</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"4.6","reviewCount":19} </script></div></div>
    
        (19)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB01505,HB01566" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        




  
<!-- Extract last part after last dash from product handle -->



<div  class="bundle-back-in-stock-container">
  <div class="bundle-back-in-stock-button">
    
    
  </div>
</div>

      

         
          




<!-- Extract last part after last dash from product handle -->




  

  
<div  class="bundle-waitlist-container" style="display: none;"><div class="bundle-waitlist-button">
    
      
        <a href="/en-fr/products/airbrush-made-easy-kit-set_117" class="button button--primary button--full-width notify-me-btn">Notify Me</a>
    
  </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="template--26760399323414__featured_collection_B3mC3V"
      data-form-id="product-form-template--26760399323414__featured_collection_B3mC3V"
      dl-product-id="HB01505,HB01566"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-template--26760399323414__featured_collection_B3mC3V" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="50871072358678"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="463"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <a href="/en-fr/products/airbrush-made-easy-kit-set_117" class="button button--primary button--full-width select-shades-btn">Select shades</a>
          </div><input type="hidden" name="product-id" value="10347261657366" /><input type="hidden" name="section-id" value="template--26760399323414__featured_collection_B3mC3V" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li><li
        id="Slide-template--26760399323414__featured_collection_B3mC3V-7"
        class="grid__item slider__slide"
        
      >
        



  























  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  


































<section
  class="featured-card-product featured-card-product--new-design"
  
    data-card-design="new"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB00570,HB01504,HB01566"
    dl-product-name="Bake & Press Kit"
    dl-product-brand="Huda Beauty"
    dl-product-category="Powder & Setting Spray"
    dl-product-category2="Face"
    dl-product-category3=""
    dl-product-variant="set_119-1"
    dl-product-price="87,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/bake-press-kit-set_119?variant=50921207267606"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/01_fe7e69bb-87d9-4d60-a54a-9ab86413bb03.webp?v=1768200911&width=630 1x,            //hudabeauty.com/cdn/shop/files/01_fe7e69bb-87d9-4d60-a54a-9ab86413bb03.webp?v=1768200911&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/bake-press-kit-set_119?variant=50921207267606"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/01_fe7e69bb-87d9-4d60-a54a-9ab86413bb03.webp?v=1768200911&width=630"
          alt="Bake &amp; Press Kit"
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/02THE_BAKE_PRESS_KIT.webp?v=1768200911&width=630 1x,              //hudabeauty.com/cdn/shop/files/02THE_BAKE_PRESS_KIT.webp?v=1768200911&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/02THE_BAKE_PRESS_KIT.webp?v=1768200911&width=630"
            alt="Bake &amp; Press Kit"
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">NEW</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
            
            
            
              <p class="badge--bottom-left sale-badge py-2xs px-xs h6">Save&nbsp; 10%
              </p>
            
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-template--26760399323414__featured_collection_B3mC3V-10364428189974"
      class="product__info-container"
      data-section="template--26760399323414__featured_collection_B3mC3V"
      data-url="/en-fr/products/bake-press-kit-set_119?variant=50921207267606"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/bake-press-kit-set_119?variant=50921207267606">
          
            <h3 class="h6">Bake &amp; Press Kit
</h3>
          
        </a>
      </div>
      
      

      <div
        class="product_card_price mb-xs"
        id="price-template--26760399323414__featured_collection_B3mC3V"
        data-url="/en-fr/products/bake-press-kit-set_119?variant=50921207267606"
        role="status"
        
      >


<div
    class="price      price-section-data price--large price--on-sale"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €87,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €87,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              €96,90
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€9,90
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker">
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10364428189974"><div data-oke-reviews-version="0.85.10" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 5.0 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 100%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 5.0 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">5.0</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"5.0","reviewCount":3} </script></div></div>
    
        (3)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB00570,HB01504,HB01566" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        




  
<!-- Extract last part after last dash from product handle -->



<div  class="bundle-back-in-stock-container">
  <div class="bundle-back-in-stock-button">
    
    
  </div>
</div>

      

         
          




<!-- Extract last part after last dash from product handle -->




  

  
<div  class="bundle-waitlist-container" style="display: none;"><div class="bundle-waitlist-button">
    
      
        <a href="/en-fr/products/bake-press-kit-set_119" class="button button--primary button--full-width notify-me-btn">Notify Me</a>
    
  </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="template--26760399323414__featured_collection_B3mC3V"
      data-form-id="product-form-template--26760399323414__featured_collection_B3mC3V"
      dl-product-id="HB00570,HB01504,HB01566"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-template--26760399323414__featured_collection_B3mC3V" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="50921207267606"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="346"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <a href="/en-fr/products/bake-press-kit-set_119" class="button button--primary button--full-width select-shades-btn">Select shades</a>
          </div><input type="hidden" name="product-id" value="10364428189974" /><input type="hidden" name="section-id" value="template--26760399323414__featured_collection_B3mC3V" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li><li
        id="Slide-template--26760399323414__featured_collection_B3mC3V-8"
        class="grid__item slider__slide"
        
      >
        



  























  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  


































<section
  class="featured-card-product featured-card-product--new-design"
  
    data-card-design="new"
  
>
  <div
    class="dl-card-product"
    
    
    dl-product-id="HB01505,HB01342,HB01148"
    dl-product-name="The Prime, Blur & Press Kit"
    dl-product-brand="Huda Beauty"
    dl-product-category="Powder & Setting Spray"
    dl-product-category2="Face"
    dl-product-category3=""
    dl-product-variant="set_120-1"
    dl-product-price="102,00"
    dl-product-currency="EUR"
    dl-product-list=""
  ></div><a
      href="/en-fr/products/the-prime-blur-press-kit-set_120?variant=50921259827478"
      class="product-image-container"
    >
      
      <picture>
        <source
          data-srcset="            //hudabeauty.com/cdn/shop/files/01THE_PRIME_BLUR_PRESS_KIT.webp?v=1767965021&width=630 1x,            //hudabeauty.com/cdn/shop/files/01THE_PRIME_BLUR_PRESS_KIT.webp?v=1767965021&width=1260 2x          "
        >
        <img
          data-url="/en-fr/products/the-prime-blur-press-kit-set_120?variant=50921259827478"
          src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
          data-src="//hudabeauty.com/cdn/shop/files/01THE_PRIME_BLUR_PRESS_KIT.webp?v=1767965021&width=630"
          alt="Easy Blur Primer, Easy Blur Foundation &amp; Easy Bake Pressed Powder for a smooth finish."
          class="primary_image card-variant-selected-image motion-reduce br-md"
          loading="lazy"
          width="315"
          height="367"
        >
      </picture>
      
      
        <picture>
          <source
            data-srcset="              //hudabeauty.com/cdn/shop/files/02THE_PRIME_BLUR_PRESS_KIT.webp?v=1767965035&width=630 1x,              //hudabeauty.com/cdn/shop/files/02THE_PRIME_BLUR_PRESS_KIT.webp?v=1767965035&width=1260 2x            "
            media="(min-width: 750px)"
          >
          <img
            src="//hudabeauty.com/cdn/shop/t/162/assets/placeholder_image.png?v=137692490887811188291775984105"
            data-src="//hudabeauty.com/cdn/shop/files/02THE_PRIME_BLUR_PRESS_KIT.webp?v=1767965035&width=630"
            alt="THE PRIME BLUR PRESS KIT applied on Huda for a smooth blurred finish."
            class="secondary_image motion-reduce br-md"
            loading="lazy"
            width="315"
            height="367"
          >
        </picture>
      
      <div class="featured-card_top-badges"><p class="card__top-badge br-round py-2xs px-xs h6">NEW</p></div>
      <div class="featured-card_bottom-left-badge">
        
          
          
          
            
            
            
              <p class="badge--bottom-left sale-badge py-2xs px-xs h6">Save&nbsp; 10%
              </p>
            
          
        
      </div>
      <div class="featured-card_bottom-right-badge featured-card_image_badge">
        
        

        
</div>
    </a><div class="featured-product product">
    <section
      id="ProductInfo-template--26760399323414__featured_collection_B3mC3V-10364466233622"
      class="product__info-container"
      data-section="template--26760399323414__featured_collection_B3mC3V"
      data-url="/en-fr/products/the-prime-blur-press-kit-set_120?variant=50921259827478"
    >

      <div class="feature-card_product-title mt-xs">
        <a href="/en-fr/products/the-prime-blur-press-kit-set_120?variant=50921259827478">
          
            <h3 class="h6">The Prime, Blur &amp; Press Kit
</h3>
          
        </a>
      </div>
      
      

      <div
        class="product_card_price mb-xs"
        id="price-template--26760399323414__featured_collection_B3mC3V"
        data-url="/en-fr/products/the-prime-blur-press-kit-set_120?variant=50921259827478"
        role="status"
        
      >


<div
    class="price      price-section-data price--large price--on-sale"
  >
    <div class="price__container"><div class="price__regular"><span class="visually-hidden visually-hidden--inline">Regular price</span>
          
            <p class="price-item price-item--regular product-price h6">
              €102,00
            </p>
          
</div>
      <div class="price__sale">
<p class="price-item price-item--sale price-item--last product-price h6">
            €102,00
          </p>
          <span class="visually-hidden visually-hidden--inline">Regular price</span>
          <span>
            <s class="price-item product-compare-at-price caption">
              €113,00
            </s>
          </span>
          <span class="save_price caption">
            Save
            <span class="product-save-price">€11,00
            </span>
          </span><span class="visually-hidden visually-hidden--inline">Sale price</span>
      </div>
      <small class="unit-price caption hidden">
        <span class="visually-hidden">Unit price</span>
        <span class="price-item price-item--last"><span></span>
          <span aria-hidden="true">/</span>
          <span class="visually-hidden">&nbsp;per&nbsp;</span>
          <span>
          </span>
        </span>
      </small>
    </div></div>

</div>
      <div class="feature-card_options-picker">
        
      </div>

      
      

<div class="oke-sr-cont">
    <div data-oke-star-rating data-oke-reviews-product-id="shopify-10364466233622"><div data-oke-reviews-version="0.86.0" data-oke-container="" class="okeReviews oke-sr"><div class=""><div class="oke-sr-rating"> 2.5 </div><div class="oke-sr-stars"><div class="oke-stars"><!----><div class="oke-stars-background"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-empty"></use><use x="20.266666666666666" href="#oke-star-empty"></use><use x="40.53333333333333" href="#oke-star-empty"></use><use x="60.8" href="#oke-star-empty"></use><use x="81.06666666666666" href="#oke-star-empty"></use></svg></div><div class="oke-stars-foreground" style="width: 50%;"><svg height="15" viewbox="0 0 97.06666666666666 16" aria-hidden="true" role="none"><use x="0" href="#oke-star-filled"></use><use x="20.266666666666666" href="#oke-star-filled"></use><use x="40.53333333333333" href="#oke-star-filled"></use><use x="60.8" href="#oke-star-filled"></use><use x="81.06666666666666" href="#oke-star-filled"></use></svg></div><span class="oke-a11yText">Rated 2.5 out of 5 stars</span></div></div><div class="oke-sr-count"><span class="oke-sr-count-number">2.5</span><!----><!----></div><!----></div><script type="application/json" data-oke-metafield-data=""> {"averageRating":"2.5","reviewCount":4} </script></div></div>
    
        (4)
    
</div>

      <div class="feature-card_product_buy-button-container">
        <div class="product-form__error-message-wrapper" role="alert" dl-product-id="HB01505,HB01342,HB01148" hidden>
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
          <span class="product-form__error-message caption"></span>
        </div>
        
        




  
<!-- Extract last part after last dash from product handle -->



<div  class="bundle-back-in-stock-container">
  <div class="bundle-back-in-stock-button">
    
    
  </div>
</div>

      

         
          




<!-- Extract last part after last dash from product handle -->




  

  
<div  class="bundle-waitlist-container" style="display: none;"><div class="bundle-waitlist-button">
    
      
        <a href="/en-fr/products/the-prime-blur-press-kit-set_120" class="button button--primary button--full-width notify-me-btn">Notify Me</a>
    
  </div></div>

        

      


















<div  class="buy-buttons-container">
    <product-form
      class="product-form"
      data-hide-errors="false"
      data-section-id="template--26760399323414__featured_collection_B3mC3V"
      data-form-id="product-form-template--26760399323414__featured_collection_B3mC3V"
      dl-product-id="HB01505,HB01342,HB01148"
    >
      <div class="product-form__error-message-wrapper" role="alert" hidden>
        <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
<rect y="0.5" width="10" height="10" rx="5" fill="#EC0000"/>
<path d="M5 2.5V6.5" stroke="white"/>
<circle cx="5" cy="8" r="0.5" fill="white"/>
</svg></span>
        <span class="product-form__error-message caption"></span>
      </div><form method="post" action="/en-fr/cart/add" id="product-form-template--26760399323414__featured_collection_B3mC3V" accept-charset="UTF-8" class="form" enctype="multipart/form-data" novalidate="novalidate" data-type="add-to-cart-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" />
        <input
          type="hidden"
          name="id"
          value="50921259827478"
          
          class="product-variant-id"
        >

        
        
        

        

        <input
          type="hidden"
          name="max-quantity"
          value="5"
          class="max-quantity"
        >
        
        <input
          type="hidden"
          name="inventory-quantity"
          value="14"
          class="inventory-quantity"
        >
        
<div class="product-form__buttons">
            <a href="/en-fr/products/the-prime-blur-press-kit-set_120" class="button button--primary button--full-width select-shades-btn">Select shades</a>
          </div><input type="hidden" name="product-id" value="10364466233622" /><input type="hidden" name="section-id" value="template--26760399323414__featured_collection_B3mC3V" /></form></product-form>
  
</div>
      </div>
    </section>
  </div>
</section>

      </li></ul><div class="slider-buttons">
      <div class="slider-button-wrapper">
        <button
          type="button"
          class="slider-button slider-button--prev"
          name="previous"
          aria-label="Slide left"
        >
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewbox="0 0 20 19" fill="none">
  <g xmlns="http://www.w3.org/2000/svg" id="Arrow">
    <path id="Vector" d="M11.75 15L17.25 8.9M17.25 10L11.75 4M17.25 9.5L0.750001 9.5" stroke="white" stroke-width="2"/>
</g>
</svg></span>
        </button>
      </div>
      <div class="slider-counter caption">
        <span class="slider-counter--current">1</span>
        <span aria-hidden="true"> / </span>
        <span class="visually-hidden">of</span>
        <span class="slider-counter--total">3</span>
      </div>
      <div class="slider-button-wrapper">
        <button
          type="button"
          class="slider-button slider-button--next"
          name="next"
          aria-label="Slide right"
        >
          <span class="svg-wrapper"><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="20" height="19" viewbox="0 0 20 19" fill="none">
  <g xmlns="http://www.w3.org/2000/svg" id="Arrow">
    <path id="Vector" d="M11.75 15L17.25 8.9M17.25 10L11.75 4M17.25 9.5L0.750001 9.5" stroke="white" stroke-width="2"/>
</g>
</svg></span>
        </button>
      </div>
    </div></slider-component>

          </div>
        </template>
      
    
<div class="featured-collection__footer">
        <a
          
            href="/en-fr/collections/new"
          
          class="featured-collection__view-all link"
          
            aria-label="View all products in the New collection"
          
          data-featured-collection-view-all
>
          <span>View all</span>
          <span class="svg-wrapper"><svg width="24" height="15" viewbox="0 0 24 15" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M23.7071 8.07112C24.0976 7.6806 24.0976 7.04743 23.7071 6.65691L17.3431 0.292947C16.9526 -0.097577 16.3195 -0.0975771 15.9289 0.292947C15.5384 0.683472 15.5384 1.31664 15.9289 1.70716L21.5858 7.36402L15.9289 13.0209C15.5384 13.4114 15.5384 14.0446 15.9289 14.4351C16.3195 14.8256 16.9526 14.8256 17.3431 14.4351L23.7071 8.07112ZM0 7.36401L-8.74228e-08 8.36401L23 8.36402L23 7.36402L23 6.36402L8.74228e-08 6.36401L0 7.36401Z" fill="black" fill-opacity="0.5"/>
</svg>
</span>
        </a>
      </div></div>
</div>


<style> @media screen and (max-width: 750px) {#shopify-section-template--26760399323414__featured_collection_B3mC3V .button {height: 35px; min-height: 35px; }} </style></section><section id="shopify-section-template--26760399323414__image_banner_tUTUie" class="shopify-section section"><link href="//hudabeauty.com/cdn/shop/t/162/assets/section-image-banner.css?v=118206223836400765421775984106" rel="stylesheet" type="text/css" media="all" />
<link href="//hudabeauty.com/cdn/shop/t/162/assets/component-newsletter.css?v=165239995287692966701775984104" rel="stylesheet" type="text/css" media="all" />





<style data-shopify>
    .banner {
          margin-top: 0;
        }#Banner-template--26760399323414__image_banner_tUTUie::after {
    opacity: 0.0;
  }

  .banner__text-template--26760399323414__image_banner_tUTUie {
    color: #000
  }.banner__box {
        width: 50%;
      }

      @media screen and (max-width: 749px) {
        .banner__box {
          width: 100%;
        }
      }@media screen and (min-width: 750px) {
      .banner__content--left-aligned-mid-content .banner__box {
        padding: 0 0 0 60px;
      }
    }#Banner-template--26760399323414__image_banner_tUTUie {
      height: 650px;
    }

  @media screen and (min-width: 750px) {
    #Banner-template--26760399323414__image_banner_tUTUie .banner__media__desktop > img {
      object-position: center center;
    }
  }


  @media screen and (max-width: 749px) {
    .banner__box {
        padding: 20px 15px;
      }

    #Banner-template--26760399323414__image_banner_tUTUie {
      height: 450px;
    }}
    @media screen and (min-width: 750px) {
      #shopify-section-template--26760399323414__image_banner_tUTUie {
        background-color: #eb39860d
      }
    }@media screen and (max-width: 749px) {
        .banner__content-template--26760399323414__image_banner_tUTUie {
          align-items: flex-end;
        }}
    .banner-v2-wrapper-template--26760399323414__image_banner_tUTUie {
      --banner-v2-tablet-aspect-ratio: 2.2153846153846155;
      padding: 60px;
      /* padding-bottom: 0; */
    }
    @media screen and (max-width: 750px) {
      .banner-v2-wrapper-template--26760399323414__image_banner_tUTUie #Banner-template--26760399323414__image_banner_tUTUie .banner__media img {
        position: relative;
        height: 450px;
      }
      .banner-v2-wrapper-template--26760399323414__image_banner_tUTUie {
        padding: 16px;
      }.banner-v2-wrapper-template--26760399323414__image_banner_tUTUie {
          padding: 0;
        }
        .banner-v2-wrapper-template--26760399323414__image_banner_tUTUie .banner {
          border-radius: 0 !important;
        }}#Banner-template--26760399323414__image_banner_tUTUie {
    cursor: pointer;
    position: relative;
  }</style><div class="page-width banner-v2-wrapper banner-v2-wrapper-template--26760399323414__image_banner_tUTUie banner-v2-wrapper--prevent-crop">
  <div
    id="Banner-template--26760399323414__image_banner_tUTUie"
    class="banner banner--content-align-left banner--content-align-mobile-center  banner--desktop-transparent  hero-banner-content  banner--clickable"
    data-promo-id="Homepage Banner 2"
    data-promo-class="image banner"
    data-promo-name="Strawberry Latte Liquid Blush"
    data-creative-slot="H2"><div class="banner__media banner__media__desktop media">
        
        <img src="//hudabeauty.com/cdn/shop/files/D-A2-STRAWBERRY-COLLECTION.webp?v=1774882790&amp;width=2880" srcset="//hudabeauty.com/cdn/shop/files/D-A2-STRAWBERRY-COLLECTION.webp?v=1774882790&amp;width=375 375w, //hudabeauty.com/cdn/shop/files/D-A2-STRAWBERRY-COLLECTION.webp?v=1774882790&amp;width=550 550w, //hudabeauty.com/cdn/shop/files/D-A2-STRAWBERRY-COLLECTION.webp?v=1774882790&amp;width=750 750w, //hudabeauty.com/cdn/shop/files/D-A2-STRAWBERRY-COLLECTION.webp?v=1774882790&amp;width=1100 1100w, //hudabeauty.com/cdn/shop/files/D-A2-STRAWBERRY-COLLECTION.webp?v=1774882790&amp;width=1500 1500w, //hudabeauty.com/cdn/shop/files/D-A2-STRAWBERRY-COLLECTION.webp?v=1774882790&amp;width=1780 1780w, //hudabeauty.com/cdn/shop/files/D-A2-STRAWBERRY-COLLECTION.webp?v=1774882790&amp;width=2000 2000w, //hudabeauty.com/cdn/shop/files/D-A2-STRAWBERRY-COLLECTION.webp?v=1774882790&amp;width=2880 2880w" width="2880" height="1300" sizes="100vw" fetchpriority="auto">
      </div><div class="banner__media banner__media__mobile media">
        <img src="//hudabeauty.com/cdn/shop/files/M-A2-STRAWBERRY-COLLECTION.webp?v=1774882790&amp;width=780" srcset="//hudabeauty.com/cdn/shop/files/M-A2-STRAWBERRY-COLLECTION.webp?v=1774882790&amp;width=375 375w, //hudabeauty.com/cdn/shop/files/M-A2-STRAWBERRY-COLLECTION.webp?v=1774882790&amp;width=550 550w, //hudabeauty.com/cdn/shop/files/M-A2-STRAWBERRY-COLLECTION.webp?v=1774882790&amp;width=750 750w" width="780" height="900" sizes="100vw" fetchpriority="auto">
      </div><div class="banner__content banner__content-template--26760399323414__image_banner_tUTUie banner__content--left-aligned-mid-content banner__content--mobile-bottom-center page-width">
      <div
        class="banner__box banner__box-template--26760399323414__image_banner_tUTUie content-container content-container--full-width-mobile color-scheme-1 gradient p-sm"
      ><div class="hero-desktop-heading">
                <div class="banner__heading inline-richtext h3">
                  NEW STRAWBERRY <br>LATTE COLLECTION
                </div>
              </div>
              <div class="hero-mobile-heading">
                <div class="banner__heading inline-richtext h4">
                  NEW STRAWBERRY LATTE COLLECTION
                </div>
              </div><div
                  class="banner__buttons mt-md"
                  
                ><span
                          class="button button--primary ReviewCondensed-Bold-Web"
                        >discover new kits</span></div></div>
    </div>
  </div>
</div>
<style> @media (min-width: 750px) {#shopify-section-template--26760399323414__image_banner_tUTUie .banner__heading {font-feature-settings: "liga" off, "clig" off; font-family: "Review Poster Web"; font-size: 70px; font-style: normal; font-weight: 800; line-height: 80%; } #shopify-section-template--26760399323414__image_banner_tUTUie .banner-v2-wrapper {padding: 0 60px; }} #shopify-section-template--26760399323414__image_banner_tUTUie .banner__text h5 {font-size: 18px; font-weight: 700; margin-top: -5px;} @media (max-width: 749px) {#shopify-section-template--26760399323414__image_banner_tUTUie .banner__heading {font-size: 32px; } #shopify-section-template--26760399323414__image_banner_tUTUie .button--primary {height: 35px; min-height: 35px; } #shopify-section-template--26760399323414__image_banner_tUTUie .hero-mobile-heading {position: relative; top: 12px; } #shopify-section-template--26760399323414__image_banner_tUTUie .banner__text h5 {margin-bottom: -22px; }} </style></section><section id="shopify-section-template--26760399323414__image_banner_CtnJgL" class="shopify-section section"><link href="//hudabeauty.com/cdn/shop/t/162/assets/section-image-banner.css?v=118206223836400765421775984106" rel="stylesheet" type="text/css" media="all" />
<link href="//hudabeauty.com/cdn/shop/t/162/assets/component-newsletter.css?v=165239995287692966701775984104" rel="stylesheet" type="text/css" media="all" />





<style data-shopify>
    .banner {
          margin-top: 0;
        }#Banner-template--26760399323414__image_banner_CtnJgL::after {
    opacity: 0.0;
  }

  .banner__text-template--26760399323414__image_banner_CtnJgL {
    color: #000
  }.banner__box {
        width: 50%;
      }

      @media screen and (max-width: 749px) {
        .banner__box {
          width: 100%;
        }
      }@media screen and (min-width: 750px) {
      .banner__content--left-aligned-mid-content .banner__box {
        padding: 0 0 0 60px;
      }
    }#Banner-template--26760399323414__image_banner_CtnJgL {
      height: 615px;
    }

  @media screen and (min-width: 750px) {
    #Banner-template--26760399323414__image_banner_CtnJgL .banner__media__desktop > img {
      object-position: left center;
    }
  }


  @media screen and (max-width: 749px) {
    .banner__box {
        padding: 20px 15px;
      }

    #Banner-template--26760399323414__image_banner_CtnJgL {
      height: 450px;
    }}
    @media screen and (min-width: 750px) {
      #shopify-section-template--26760399323414__image_banner_CtnJgL {
        background-color: #eb39860d
      }
    }@media screen and (max-width: 749px) {
        .banner__content-template--26760399323414__image_banner_CtnJgL {
          align-items: flex-end;
        }}
    .banner-v2-wrapper-template--26760399323414__image_banner_CtnJgL {
      --banner-v2-tablet-aspect-ratio: 2.2153846153846155;
      padding: 60px;
      /* padding-bottom: 0; */
    }
    @media screen and (max-width: 750px) {
      .banner-v2-wrapper-template--26760399323414__image_banner_CtnJgL #Banner-template--26760399323414__image_banner_CtnJgL .banner__media img {
        position: relative;
        height: 450px;
      }
      .banner-v2-wrapper-template--26760399323414__image_banner_CtnJgL {
        padding: 20px;
      }.banner-v2-wrapper-template--26760399323414__image_banner_CtnJgL {
          padding: 0;
        }
        .banner-v2-wrapper-template--26760399323414__image_banner_CtnJgL .banner {
          border-radius: 0 !important;
        }}#Banner-template--26760399323414__image_banner_CtnJgL {
    cursor: pointer;
    position: relative;
  }</style><div class="page-width banner-v2-wrapper banner-v2-wrapper-template--26760399323414__image_banner_CtnJgL banner-v2-wrapper--prevent-crop">
  <div
    id="Banner-template--26760399323414__image_banner_CtnJgL"
    class="banner banner--content-align-left banner--content-align-mobile-center   hero-banner-content  banner--clickable"
    data-promo-id="Homepage Banner 3"
    data-promo-class="image banner"
    data-promo-name="Lipcealer Gloss"
    data-creative-slot="H3"><div class="banner__media banner__media__desktop media">
        
        <img src="//hudabeauty.com/cdn/shop/files/A3-SLC-LIPS_DESKTOP-01.webp?v=1775124566&amp;width=2880" srcset="//hudabeauty.com/cdn/shop/files/A3-SLC-LIPS_DESKTOP-01.webp?v=1775124566&amp;width=375 375w, //hudabeauty.com/cdn/shop/files/A3-SLC-LIPS_DESKTOP-01.webp?v=1775124566&amp;width=550 550w, //hudabeauty.com/cdn/shop/files/A3-SLC-LIPS_DESKTOP-01.webp?v=1775124566&amp;width=750 750w, //hudabeauty.com/cdn/shop/files/A3-SLC-LIPS_DESKTOP-01.webp?v=1775124566&amp;width=1100 1100w, //hudabeauty.com/cdn/shop/files/A3-SLC-LIPS_DESKTOP-01.webp?v=1775124566&amp;width=1500 1500w, //hudabeauty.com/cdn/shop/files/A3-SLC-LIPS_DESKTOP-01.webp?v=1775124566&amp;width=1780 1780w, //hudabeauty.com/cdn/shop/files/A3-SLC-LIPS_DESKTOP-01.webp?v=1775124566&amp;width=2000 2000w, //hudabeauty.com/cdn/shop/files/A3-SLC-LIPS_DESKTOP-01.webp?v=1775124566&amp;width=2880 2880w" width="2880" height="1300" loading="lazy" sizes="100vw" fetchpriority="auto">
      </div><div class="banner__media banner__media__mobile media">
        <img src="//hudabeauty.com/cdn/shop/files/A3-SLC-LIPS_MOBILE-01.webp?v=1775124567&amp;width=780" srcset="//hudabeauty.com/cdn/shop/files/A3-SLC-LIPS_MOBILE-01.webp?v=1775124567&amp;width=375 375w, //hudabeauty.com/cdn/shop/files/A3-SLC-LIPS_MOBILE-01.webp?v=1775124567&amp;width=550 550w, //hudabeauty.com/cdn/shop/files/A3-SLC-LIPS_MOBILE-01.webp?v=1775124567&amp;width=750 750w" width="780" height="873" loading="lazy" sizes="100vw" fetchpriority="auto">
      </div><div class="banner__content banner__content-template--26760399323414__image_banner_CtnJgL banner__content--left-aligned-mid-content banner__content--mobile-bottom-center page-width">
      <div
        class="banner__box banner__box-template--26760399323414__image_banner_CtnJgL content-container content-container--full-width-mobile color-scheme-1 gradient p-sm"
      ><div class="hero-desktop-heading">
                <div class="banner__heading inline-richtext h3">
                  THE LIPCEALER EFFECT
                </div>
              </div>
              <div class="hero-mobile-heading">
                <div class="banner__heading inline-richtext h4">
                  THE LIPCEALER EFFECT
                </div>
              </div><div class="banner__text rte banner__text-template--26760399323414__image_banner_CtnJgL"><h5 class="">
                    MILKY SHINE, SOFTLY BLURRED
                  </h5></div><div
                  class="banner__buttons mt-md"
                  
                ><span
                          class="button button--primary ReviewCondensed-Bold-Web"
                        >GET GLOSSED</span></div></div>
    </div>
  </div>
</div>
<style> @media (min-width: 750px) {#shopify-section-template--26760399323414__image_banner_CtnJgL .banner__heading {font-feature-settings: "liga" off, "clig" off; font-family: "Review Poster Web"; font-size: 70px; font-style: normal; font-weight: 800; line-height: 80%; } #shopify-section-template--26760399323414__image_banner_CtnJgL .banner-v2-wrapper {padding: 0 60px; }} #shopify-section-template--26760399323414__image_banner_CtnJgL .banner__text h5 {font-size: 18px; font-weight: 700; margin-top: -5px;} @media (max-width: 749px) {#shopify-section-template--26760399323414__image_banner_CtnJgL .banner__heading {font-size: 32px; } #shopify-section-template--26760399323414__image_banner_CtnJgL .button--primary {height: 35px; min-height: 35px; } #shopify-section-template--26760399323414__image_banner_CtnJgL .hero-mobile-heading {position: relative; top: 5px; } #shopify-section-template--26760399323414__image_banner_CtnJgL .banner__text h5 {margin-bottom: -12px; }} </style></section><section id="shopify-section-template--26760399323414__multicolumn_ChrUFc" class="shopify-section section"><link href="//hudabeauty.com/cdn/shop/t/162/assets/section-multicolumn.css?v=84433626655076798821775984107" rel="stylesheet" type="text/css" media="all" />
<link href="//hudabeauty.com/cdn/shop/t/162/assets/component-slider.css?v=145016471790583707941775984106" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>.section-template--26760399323414__multicolumn_ChrUFc-padding.page-width {
    padding-top: 45px;
    padding-bottom: 24px;
  }

  @media screen and (min-width: 750px) {
    .section-template--26760399323414__multicolumn_ChrUFc-padding.page-width {
      padding-top: 60px;
      padding-bottom: 32px;
    }
  }</style><div class="multicolumn  multicolumn-spotlight  color-scheme-1 gradient background-none">
  <div
    class="page-width section-template--26760399323414__multicolumn_ChrUFc-padding isolate"
    
  ><div class="title-wrapper-with-link title-wrapper--self-padded-mobile title-wrapper--no-top-margin multicolumn__title">
        <div class="title inline-richtext h4">
          <a href="/en-fr/pages/rewards" title="Rewards">OUR COMMUNITY</a>
        </div></div><slider-component class="slider-wrapper slider-mobile-gutter">
      <ul
        class="multicolumn-list contains-content-container grid grid--1-col-tablet-down grid--2-col-desktop"
        id="Slider-template--26760399323414__multicolumn_ChrUFc"
        role="list"
      ><li
            id="Slide-template--26760399323414__multicolumn_ChrUFc-1"
            class="multicolumn-list__item grid__item center"
            
            
          >
            <div class="multicolumn-card content-container">
                <div class="multicolumn-card__image-wrapper multicolumn-card__image-wrapper--full-width">
                  <div
                    class="media media--transparent media--four-three"
                    
                  >
<a class="image--link" href="/en-fr/pages/rewards"><picture><source
                          media="(max-width: 749px)"
                          srcset="//hudabeauty.com/cdn/shop/files/M-LOYALTY-HP.jpg?v=1760255068&width=50 50w, //hudabeauty.com/cdn/shop/files/M-LOYALTY-HP.jpg?v=1760255068&width=75 75w, //hudabeauty.com/cdn/shop/files/M-LOYALTY-HP.jpg?v=1760255068&width=100 100w, //hudabeauty.com/cdn/shop/files/M-LOYALTY-HP.jpg?v=1760255068&width=150 150w, //hudabeauty.com/cdn/shop/files/M-LOYALTY-HP.jpg?v=1760255068&width=200 200w, //hudabeauty.com/cdn/shop/files/M-LOYALTY-HP.jpg?v=1760255068&width=300 300w, //hudabeauty.com/cdn/shop/files/M-LOYALTY-HP.jpg?v=1760255068&width=400 400w, //hudabeauty.com/cdn/shop/files/M-LOYALTY-HP.jpg?v=1760255068&width=500 500w, //hudabeauty.com/cdn/shop/files/M-LOYALTY-HP.jpg?v=1760255068&width=750 750w, //hudabeauty.com/cdn/shop/files/M-LOYALTY-HP.jpg?v=1760255068&width=1000 1000w, //hudabeauty.com/cdn/shop/files/M-LOYALTY-HP.jpg?v=1760255068&width=1250 1250w, //hudabeauty.com/cdn/shop/files/M-LOYALTY-HP.jpg?v=1760255068&width=1500 1500w, //hudabeauty.com/cdn/shop/files/M-LOYALTY-HP.jpg?v=1760255068&width=1750 1750w, //hudabeauty.com/cdn/shop/files/M-LOYALTY-HP.jpg?v=1760255068&width=2000 2000w, //hudabeauty.com/cdn/shop/files/M-LOYALTY-HP.jpg?v=1760255068&width=2250 2250w, //hudabeauty.com/cdn/shop/files/M-LOYALTY-HP.jpg?v=1760255068&width=2500 2500w, //hudabeauty.com/cdn/shop/files/M-LOYALTY-HP.jpg?v=1760255068&width=2750 2750w, //hudabeauty.com/cdn/shop/files/M-LOYALTY-HP.jpg?v=1760255068&width=3000 3000w, //hudabeauty.com/cdn/shop/files/M-LOYALTY-HP.jpg?v=1760255068&width=3200 3200w"
                          sizes="(min-width: 1440px) calc((1440px - 120px) * 1 /  2),                      (min-width: 990px) calc((100vw - 120px) * 1 / 2),                      (min-width: 750px) calc((100vw - 100px) * 1 / 1),                      calc((100vw - 30px) * 1 / 1)"
                        ><img src="//hudabeauty.com/cdn/shop/files/D-LOYALTY.jpg?v=1760255049&amp;width=3200" alt="Easy Bake Setting Spray loyalty program " srcset="//hudabeauty.com/cdn/shop/files/D-LOYALTY.jpg?v=1760255049&amp;width=50 50w, //hudabeauty.com/cdn/shop/files/D-LOYALTY.jpg?v=1760255049&amp;width=75 75w, //hudabeauty.com/cdn/shop/files/D-LOYALTY.jpg?v=1760255049&amp;width=100 100w, //hudabeauty.com/cdn/shop/files/D-LOYALTY.jpg?v=1760255049&amp;width=150 150w, //hudabeauty.com/cdn/shop/files/D-LOYALTY.jpg?v=1760255049&amp;width=200 200w, //hudabeauty.com/cdn/shop/files/D-LOYALTY.jpg?v=1760255049&amp;width=300 300w, //hudabeauty.com/cdn/shop/files/D-LOYALTY.jpg?v=1760255049&amp;width=400 400w, //hudabeauty.com/cdn/shop/files/D-LOYALTY.jpg?v=1760255049&amp;width=500 500w, //hudabeauty.com/cdn/shop/files/D-LOYALTY.jpg?v=1760255049&amp;width=750 750w, //hudabeauty.com/cdn/shop/files/D-LOYALTY.jpg?v=1760255049&amp;width=1000 1000w, //hudabeauty.com/cdn/shop/files/D-LOYALTY.jpg?v=1760255049&amp;width=1250 1250w, //hudabeauty.com/cdn/shop/files/D-LOYALTY.jpg?v=1760255049&amp;width=1500 1500w, //hudabeauty.com/cdn/shop/files/D-LOYALTY.jpg?v=1760255049&amp;width=1750 1750w, //hudabeauty.com/cdn/shop/files/D-LOYALTY.jpg?v=1760255049&amp;width=2000 2000w, //hudabeauty.com/cdn/shop/files/D-LOYALTY.jpg?v=1760255049&amp;width=2250 2250w, //hudabeauty.com/cdn/shop/files/D-LOYALTY.jpg?v=1760255049&amp;width=2500 2500w, //hudabeauty.com/cdn/shop/files/D-LOYALTY.jpg?v=1760255049&amp;width=2750 2750w, //hudabeauty.com/cdn/shop/files/D-LOYALTY.jpg?v=1760255049&amp;width=3000 3000w, //hudabeauty.com/cdn/shop/files/D-LOYALTY.jpg?v=1760255049&amp;width=3200 3200w" width="3200" height="2400" loading="lazy" sizes="                      (min-width: 1440px) calc((1440px - 120px) * 1 /  2),                      (min-width: 990px) calc((100vw - 120px) * 1 / 2),                      (min-width: 750px) calc((100vw - 100px) * 1 / 1),                      calc((100vw - 30px) * 1 / 1)                    " class="multicolumn-card__image">
                    </picture></a></div>
                </div><div class="multicolumn-card__info"><a
                    class="link animate-arrow  button button--primary"
                    
                    
                      href="/en-fr/pages/rewards"
                    
                  >JOIN HUDA&#39;S VIPS
                  </a></div>
            </div>
          </li><li
            id="Slide-template--26760399323414__multicolumn_ChrUFc-2"
            class="multicolumn-list__item grid__item center"
            
            
          >
            <div class="multicolumn-card content-container">
                <div class="multicolumn-card__image-wrapper multicolumn-card__image-wrapper--full-width">
                  <div
                    class="media media--transparent media--four-three"
                    
                  >
<a class="image--link" href="/en-fr/pages/ambassador-program"><picture><source
                          media="(max-width: 749px)"
                          srcset="//hudabeauty.com/cdn/shop/files/M-AMBASSADOR-ASSET.webp?v=1765438347&width=50 50w, //hudabeauty.com/cdn/shop/files/M-AMBASSADOR-ASSET.webp?v=1765438347&width=75 75w, //hudabeauty.com/cdn/shop/files/M-AMBASSADOR-ASSET.webp?v=1765438347&width=100 100w, //hudabeauty.com/cdn/shop/files/M-AMBASSADOR-ASSET.webp?v=1765438347&width=150 150w, //hudabeauty.com/cdn/shop/files/M-AMBASSADOR-ASSET.webp?v=1765438347&width=200 200w, //hudabeauty.com/cdn/shop/files/M-AMBASSADOR-ASSET.webp?v=1765438347&width=300 300w, //hudabeauty.com/cdn/shop/files/M-AMBASSADOR-ASSET.webp?v=1765438347&width=400 400w, //hudabeauty.com/cdn/shop/files/M-AMBASSADOR-ASSET.webp?v=1765438347&width=500 500w, //hudabeauty.com/cdn/shop/files/M-AMBASSADOR-ASSET.webp?v=1765438347&width=750 750w, //hudabeauty.com/cdn/shop/files/M-AMBASSADOR-ASSET.webp?v=1765438347&width=1000 1000w, //hudabeauty.com/cdn/shop/files/M-AMBASSADOR-ASSET.webp?v=1765438347&width=1250 1250w, //hudabeauty.com/cdn/shop/files/M-AMBASSADOR-ASSET.webp?v=1765438347&width=1500 1500w, //hudabeauty.com/cdn/shop/files/M-AMBASSADOR-ASSET.webp?v=1765438347&width=1750 1750w, //hudabeauty.com/cdn/shop/files/M-AMBASSADOR-ASSET.webp?v=1765438347&width=2000 2000w, //hudabeauty.com/cdn/shop/files/M-AMBASSADOR-ASSET.webp?v=1765438347&width=2250 2250w, //hudabeauty.com/cdn/shop/files/M-AMBASSADOR-ASSET.webp?v=1765438347&width=2500 2500w, //hudabeauty.com/cdn/shop/files/M-AMBASSADOR-ASSET.webp?v=1765438347&width=2750 2750w, //hudabeauty.com/cdn/shop/files/M-AMBASSADOR-ASSET.webp?v=1765438347&width=3000 3000w, //hudabeauty.com/cdn/shop/files/M-AMBASSADOR-ASSET.webp?v=1765438347&width=3200 3200w"
                          sizes="(min-width: 1440px) calc((1440px - 120px) * 1 /  2),                      (min-width: 990px) calc((100vw - 120px) * 1 / 2),                      (min-width: 750px) calc((100vw - 100px) * 1 / 1),                      calc((100vw - 30px) * 1 / 1)"
                        ><img src="//hudabeauty.com/cdn/shop/files/D-AMBASSADOR-ASSET.webp?v=1765438332&amp;width=3200" alt="Huda Beauty ambassador program" srcset="//hudabeauty.com/cdn/shop/files/D-AMBASSADOR-ASSET.webp?v=1765438332&amp;width=50 50w, //hudabeauty.com/cdn/shop/files/D-AMBASSADOR-ASSET.webp?v=1765438332&amp;width=75 75w, //hudabeauty.com/cdn/shop/files/D-AMBASSADOR-ASSET.webp?v=1765438332&amp;width=100 100w, //hudabeauty.com/cdn/shop/files/D-AMBASSADOR-ASSET.webp?v=1765438332&amp;width=150 150w, //hudabeauty.com/cdn/shop/files/D-AMBASSADOR-ASSET.webp?v=1765438332&amp;width=200 200w, //hudabeauty.com/cdn/shop/files/D-AMBASSADOR-ASSET.webp?v=1765438332&amp;width=300 300w, //hudabeauty.com/cdn/shop/files/D-AMBASSADOR-ASSET.webp?v=1765438332&amp;width=400 400w, //hudabeauty.com/cdn/shop/files/D-AMBASSADOR-ASSET.webp?v=1765438332&amp;width=500 500w, //hudabeauty.com/cdn/shop/files/D-AMBASSADOR-ASSET.webp?v=1765438332&amp;width=750 750w, //hudabeauty.com/cdn/shop/files/D-AMBASSADOR-ASSET.webp?v=1765438332&amp;width=1000 1000w, //hudabeauty.com/cdn/shop/files/D-AMBASSADOR-ASSET.webp?v=1765438332&amp;width=1250 1250w, //hudabeauty.com/cdn/shop/files/D-AMBASSADOR-ASSET.webp?v=1765438332&amp;width=1500 1500w, //hudabeauty.com/cdn/shop/files/D-AMBASSADOR-ASSET.webp?v=1765438332&amp;width=1750 1750w, //hudabeauty.com/cdn/shop/files/D-AMBASSADOR-ASSET.webp?v=1765438332&amp;width=2000 2000w, //hudabeauty.com/cdn/shop/files/D-AMBASSADOR-ASSET.webp?v=1765438332&amp;width=2250 2250w, //hudabeauty.com/cdn/shop/files/D-AMBASSADOR-ASSET.webp?v=1765438332&amp;width=2500 2500w, //hudabeauty.com/cdn/shop/files/D-AMBASSADOR-ASSET.webp?v=1765438332&amp;width=2750 2750w, //hudabeauty.com/cdn/shop/files/D-AMBASSADOR-ASSET.webp?v=1765438332&amp;width=3000 3000w, //hudabeauty.com/cdn/shop/files/D-AMBASSADOR-ASSET.webp?v=1765438332&amp;width=3200 3200w" width="3200" height="2400" loading="lazy" sizes="                      (min-width: 1440px) calc((1440px - 120px) * 1 /  2),                      (min-width: 990px) calc((100vw - 120px) * 1 / 2),                      (min-width: 750px) calc((100vw - 100px) * 1 / 1),                      calc((100vw - 30px) * 1 / 1)                    " class="multicolumn-card__image">
                    </picture></a></div>
                </div><div class="multicolumn-card__info"><a
                    class="link animate-arrow  button button--primary"
                    
                    
                      href="/en-fr/pages/ambassador-program"
                    
                  >JOIN AMBASSADORS
                  </a></div>
            </div>
          </li></ul>
    </slider-component>
    <div class="center"></div>
  </div>
</div>


<style> #shopify-section-template--26760399323414__multicolumn_ChrUFc .multicolumn-spotlight .title-wrapper-with-link a {font-size: 48px;} #shopify-section-template--26760399323414__multicolumn_ChrUFc .title-wrapper-with-link .title.inline-richtext.h4 > a {text-decoration: none !important;} #shopify-section-template--26760399323414__multicolumn_ChrUFc .title-wrapper-with-link .title.inline-richtext.h4 > a:hover {text-decoration: none !important; color: inherit !important;} @media screen and (max-width: 750px) {#shopify-section-template--26760399323414__multicolumn_ChrUFc .button {height: 35px; min-height: 35px; } #shopify-section-template--26760399323414__multicolumn_ChrUFc .multicolumn-spotlight .title-wrapper-with-link a {font-size: 32px; }} #shopify-section-template--26760399323414__multicolumn_ChrUFc .multicolumn-spotlight .title-wrapper-with-link {text-decoration: none;} </style></section>
      </main>
    </div>

<div class="quick-add__spinner">
  <svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" class="spinner" viewbox="0 0 66 66"><circle stroke-width="6" cx="33" cy="33" r="30" fill="none" class="path"/></svg>

</div>
<!-- BEGIN sections: footer-group -->
<div id="shopify-section-sections--26760397848854__footer" class="shopify-section shopify-section-group-footer-group"><link href="//hudabeauty.com/cdn/shop/t/162/assets/section-footer.css?v=54329015565408533251775984105" rel="stylesheet" type="text/css" media="all" />
<link href="//hudabeauty.com/cdn/shop/t/162/assets/component-newsletter.css?v=165239995287692966701775984104" rel="stylesheet" type="text/css" media="all" />
<link href="//hudabeauty.com/cdn/shop/t/162/assets/component-list-menu.css?v=151968516119678728991775984105" rel="stylesheet" type="text/css" media="all" />
<link href="//hudabeauty.com/cdn/shop/t/162/assets/component-list-social.css?v=111032223352684200331775984105" rel="stylesheet" type="text/css" media="all" />
<style data-shopify>.footer {
    margin-top: 0px;
  }

  .section-sections--26760397848854__footer-padding {
    padding-top: 30px;
    padding-bottom: 15px;
  }

  @media screen and (min-width: 750px) {
    .footer {
      margin-top: 0px;
    }

    .section-sections--26760397848854__footer-padding {
      padding-top: 60px;
      padding-bottom: 30px;
    }
  }</style><footer
  id="footer-sections--26760397848854__footer"
  class="footer color-scheme-5 gradient section-sections--26760397848854__footer-padding"
>
  <h2 class="visually-hidden">Footer</h2><div class="footer__content-top page-width"><div
          class="footer__blocks-wrapper grid grid--1-col grid--2-col grid--3-col-desktop grid--3-col-tablet"
          
        >

              <div class="hide-on-desktop">
                





<div
  class="footer-block--newsletter"
  
>
  
    <div class="footer-block__newsletter">
  
    <div class="footer-block__heading footer-block__heading-mobile inline-richtext h4">
      hey beautiful, lets connect
    </div>
  


      <div class="klaviyo-form-VPfjGj"></div>
    </div></div>

              </div>
            



<div class="hide-on-desktop">

<ul class="list-unstyled list-social footer__list-social-wrapper" role="list"><li class="list-social__item">
      <a href="https://www.instagram.com/hudabeauty/" target="_blank">
        <span>
          <svg aria-hidden="true" width="30" height="30" viewbox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 20C0 8.95431 8.95431 0 20 0C31.0457 0 40 8.95431 40 20C40 31.0457 31.0457 40 20 40C8.95431 40 0 31.0457 0 20Z" fill="white"/>
<path d="M15.0302 8.08393C13.7534 8.14417 12.8815 8.34793 12.1193 8.64745C11.3304 8.95489 10.6617 9.36745 9.99646 10.0351C9.33118 10.7028 8.9215 11.3719 8.61622 12.162C8.32078 12.9259 8.12062 13.7986 8.06422 15.0761C8.00782 16.3536 7.99534 16.7642 8.00158 20.023C8.00782 23.2817 8.02222 23.6902 8.08414 24.9703C8.1451 26.2469 8.34814 27.1186 8.64766 27.881C8.95558 28.6699 9.36766 29.3383 10.0356 30.0038C10.7035 30.6694 11.3721 31.0781 12.1641 31.3838C12.9273 31.6788 13.8002 31.8799 15.0775 31.9358C16.3548 31.9918 16.7659 32.0047 20.0237 31.9985C23.2814 31.9922 23.6916 31.9778 24.9715 31.9171C26.2514 31.8564 27.1185 31.6519 27.8813 31.3538C28.6701 31.0452 29.339 30.6338 30.0041 29.9657C30.6691 29.2975 31.0785 28.6279 31.3836 27.8374C31.6793 27.0742 31.8801 26.2013 31.9356 24.925C31.9915 23.6441 32.0047 23.2351 31.9985 19.9769C31.9922 16.7186 31.9776 16.3102 31.9169 15.0305C31.8561 13.7508 31.6529 12.8818 31.3536 12.1188C31.0452 11.3299 30.6336 10.662 29.9659 9.99601C29.2982 9.33001 28.6281 8.92081 27.8378 8.61649C27.0741 8.32105 26.2017 8.11969 24.9245 8.06449C23.6472 8.00929 23.2361 7.99513 19.9771 8.00137C16.7181 8.00761 16.3101 8.02153 15.0302 8.08393ZM15.1704 29.777C14.0004 29.7262 13.3651 29.5318 12.9417 29.369C12.3811 29.153 11.9817 28.8919 11.5598 28.4741C11.1379 28.0562 10.8787 27.6554 10.6598 27.096C10.4954 26.6726 10.2974 26.0381 10.2427 24.8681C10.1832 23.6035 10.1707 23.2238 10.1637 20.0201C10.1568 16.8163 10.169 16.4371 10.2245 15.1721C10.2744 14.003 10.47 13.367 10.6325 12.9439C10.8485 12.3826 11.1086 11.9839 11.5274 11.5622C11.9462 11.1406 12.3458 10.8809 12.9057 10.662C13.3286 10.4969 13.9632 10.3006 15.1327 10.2449C16.3982 10.1849 16.7774 10.1729 19.9807 10.1659C23.184 10.159 23.5641 10.171 24.8301 10.2266C25.9992 10.2775 26.6354 10.4712 27.0581 10.6346C27.6189 10.8506 28.0181 11.1101 28.4397 11.5296C28.8614 11.9491 29.1213 12.3473 29.3402 12.9084C29.5056 13.3301 29.7019 13.9644 29.7571 15.1346C29.8173 16.4002 29.831 16.7796 29.8368 19.9826C29.8425 23.1857 29.8313 23.5661 29.7758 24.8306C29.7247 26.0006 29.5308 26.6362 29.3678 27.06C29.1518 27.6204 28.8914 28.02 28.4724 28.4414C28.0533 28.8629 27.6542 29.1226 27.0941 29.3414C26.6717 29.5063 26.0364 29.7031 24.8678 29.7588C23.6023 29.8183 23.2231 29.8308 20.0186 29.8378C16.8141 29.8447 16.4361 29.8318 15.1706 29.777M24.953 13.5864C24.9535 13.8712 25.0384 14.1495 25.1971 14.3861C25.3557 14.6226 25.5809 14.8068 25.8443 14.9154C26.1076 15.0239 26.3972 15.0519 26.6765 14.9958C26.9557 14.9398 27.2121 14.8021 27.4131 14.6004C27.6141 14.3986 27.7508 14.1417 27.8059 13.8623C27.8609 13.5828 27.8318 13.2933 27.7223 13.0304C27.6128 12.7675 27.4278 12.5429 27.1907 12.3851C26.9536 12.2273 26.675 12.1434 26.3901 12.144C26.0083 12.1448 25.6424 12.2971 25.3729 12.5676C25.1034 12.8381 24.9524 13.2046 24.953 13.5864ZM13.8386 20.0119C13.8453 23.4151 16.6092 26.1677 20.0117 26.1612C23.4141 26.1547 26.1686 23.3911 26.1621 19.9879C26.1557 16.5847 23.3911 13.8314 19.9881 13.8382C16.5852 13.8449 13.8321 16.6092 13.8386 20.0119ZM16.0001 20.0076C15.9985 19.2165 16.2316 18.4426 16.6698 17.784C17.108 17.1253 17.7317 16.6113 18.4621 16.3071C19.1924 16.0029 19.9965 15.9221 20.7727 16.0749C21.549 16.2277 22.2625 16.6073 22.823 17.1656C23.3835 17.7239 23.7659 18.4359 23.9218 19.2115C24.0777 19.9872 24.0001 20.7916 23.6987 21.5231C23.3974 22.2547 22.886 22.8804 22.229 23.3212C21.5721 23.7621 20.7992 23.9982 20.0081 23.9998C19.4827 24.0009 18.9624 23.8985 18.4766 23.6984C17.9909 23.4984 17.5493 23.2046 17.1771 22.8339C16.8049 22.4632 16.5094 22.0228 16.3074 21.5378C16.1055 21.0529 16.001 20.5329 16.0001 20.0076Z" fill="#EB3986"/>
</svg>

        </span>
        <span class="visually-hidden">Instagram</span>
      </a>
    </li><li class="list-social__item">
      <a href="https://www.tiktok.com/@hudabeauty/" target="_blank">
        <span>
          <svg aria-hidden="true" width="30" height="30" viewbox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 20C0 8.95431 8.95431 0 20 0C31.0457 0 40 8.95431 40 20C40 31.0457 31.0457 40 20 40C8.95431 40 0 31.0457 0 20Z" fill="white"/>
<path d="M30.543 15.0641V17.9096C29.2012 17.9101 27.8975 17.6472 26.668 17.1285C25.8773 16.7947 25.1407 16.3646 24.467 15.8449L24.4872 24.6034C24.4788 26.5756 23.6985 28.4286 22.2863 29.8244C21.137 30.9606 19.6807 31.683 18.1023 31.9169C17.7314 31.9718 17.354 32 16.9722 32C15.2826 32 13.6784 31.4526 12.3662 30.4427C12.1193 30.2526 11.8831 30.0465 11.6583 29.8244C10.1278 28.3118 9.33856 26.2616 9.47147 24.1049C9.57285 22.4631 10.2301 20.8974 11.3259 19.6702C12.7756 18.0463 14.8037 17.145 16.9722 17.145C17.354 17.145 17.7314 17.1736 18.1023 17.2285V18.2806V21.2073C17.7506 21.0913 17.3751 21.0275 16.984 21.0275C15.0028 21.0275 13.4 22.6439 13.4296 24.6265C13.4484 25.8951 14.1414 27.004 15.1634 27.6152C15.6437 27.9025 16.1962 28.0805 16.7859 28.1128C17.2479 28.1382 17.6915 28.0739 18.1023 27.9382C19.5178 27.4707 20.5389 26.1411 20.5389 24.573L20.5436 18.7079V8H24.4623C24.466 8.38829 24.5054 8.76714 24.5787 9.13425C24.8744 10.6202 25.712 11.9093 26.8777 12.7882C27.8941 13.5548 29.1598 14.0093 30.5316 14.0093L30.5429 14.0084L30.543 15.0641Z" fill="#EB3986"/>
</svg>

        </span>
        <span class="visually-hidden">TikTok</span>
      </a>
    </li><li class="list-social__item">
      <a href="https://www.youtube.com/user/hudaheidik" target="_blank">
        <span>
          <svg aria-hidden="true" width="30" height="30" viewbox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 20C0 8.95431 8.95431 0 20 0C31.0457 0 40 8.95431 40 20C40 31.0457 31.0457 40 20 40C8.95431 40 0 31.0457 0 20Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.5226 22.7272L24.0044 19.326L17.5226 15.884V22.7272ZM20 11C21.4999 11 22.9485 11.0204 24.3457 11.0612C25.743 11.102 26.7675 11.1451 27.4192 11.1905L28.3969 11.2449C28.4058 11.2449 28.4817 11.2517 28.6245 11.2653C28.7674 11.2789 28.87 11.2925 28.9325 11.3061C28.995 11.3197 29.0999 11.3401 29.2473 11.3673C29.3946 11.3945 29.5218 11.4308 29.6289 11.4762C29.7361 11.5215 29.8611 11.5805 30.0039 11.653C30.1468 11.7256 30.2851 11.814 30.4191 11.9183C30.553 12.0226 30.6824 12.1428 30.8074 12.2788C30.861 12.3333 30.9302 12.4172 31.015 12.5305C31.0998 12.6439 31.2293 12.9092 31.4034 13.3264C31.5775 13.7436 31.6958 14.2016 31.7583 14.7005C31.8297 15.2809 31.8855 15.9 31.9257 16.5575C31.9659 17.2151 31.9904 17.7298 31.9993 18.1016V20.4961C32.0083 21.8112 31.9279 23.1263 31.7583 24.4414C31.6958 24.9403 31.5842 25.3915 31.4235 25.7951C31.2628 26.1987 31.1199 26.4776 30.9949 26.6318L30.8074 26.8631C30.6824 26.9991 30.553 27.1193 30.4191 27.2236C30.2851 27.3279 30.1468 27.414 30.0039 27.4821C29.8611 27.5501 29.7361 27.6068 29.6289 27.6521C29.5218 27.6975 29.3946 27.7338 29.2473 27.761C29.0999 27.7882 28.9928 27.8086 28.9258 27.8222C28.8589 27.8358 28.7562 27.8494 28.6178 27.863C28.4794 27.8766 28.4058 27.8834 28.3969 27.8834C26.1559 28.0557 23.357 28.1419 20 28.1419C18.1519 28.1238 16.5471 28.0943 15.1855 28.0535C13.824 28.0127 12.929 27.9786 12.5004 27.9514L11.8442 27.897L11.3621 27.8426C11.0407 27.7972 10.7974 27.7519 10.6322 27.7066C10.467 27.6612 10.2394 27.566 9.94922 27.4209C9.65906 27.2757 9.40684 27.0898 9.19257 26.8631C9.139 26.8086 9.06981 26.7247 8.98499 26.6114C8.90017 26.498 8.77072 26.2327 8.59662 25.8155C8.42252 25.3983 8.30422 24.9403 8.24173 24.4414C8.1703 23.861 8.1145 23.242 8.07433 22.5844C8.03415 21.9268 8.0096 21.4121 8.00067 21.0403V18.6458C7.99174 17.3307 8.07209 16.0156 8.24173 14.7005C8.30422 14.2016 8.41582 13.7504 8.57653 13.3468C8.73724 12.9432 8.88008 12.6643 9.00508 12.5101L9.19257 12.2788C9.31756 12.1428 9.44702 12.0226 9.58094 11.9183C9.71486 11.814 9.85324 11.7256 9.99609 11.653C10.1389 11.5805 10.2639 11.5215 10.3711 11.4762C10.4782 11.4308 10.6054 11.3945 10.7527 11.3673C10.9001 11.3401 11.005 11.3197 11.0675 11.3061C11.13 11.2925 11.2326 11.2789 11.3755 11.2653C11.5183 11.2517 11.5942 11.2449 11.6031 11.2449C13.8441 11.0816 16.643 11 20 11Z" fill="#EB3986"/>
</svg>

        </span>
        <span class="visually-hidden">YouTube</span>
      </a>
    </li><li class="list-social__item">
      <a href="https://www.facebook.com/hudabeauty/" target="_blank">
        <span>
          <svg aria-hidden="true" width="30" height="30" viewbox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 20C0 8.95431 8.95431 0 20 0C31.0457 0 40 8.95431 40 20C40 31.0457 31.0457 40 20 40C8.95431 40 0 31.0457 0 20Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.9495 32V21.0525H25.805L26.3822 16.786H21.9495V14.0621C21.9495 12.8268 22.3093 11.9851 24.1679 11.9851L26.5383 11.984V8.1681C26.1282 8.1162 24.7212 8 23.0843 8C19.6667 8 17.327 9.98824 17.327 13.6397V16.786H13.4618V21.0525H17.327V32H21.9495Z" fill="#EB3986"/>
</svg>

        </span>
        <span class="visually-hidden">Facebook</span>
      </a>
    </li><li class="list-social__item">
      <a href="https://www.snapchat.com/add/hudabeauty" target="_blank">
        <span>
          <svg aria-hidden="true" width="30" height="30" viewbox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 20C0 8.95431 8.95431 0 20 0C31.0457 0 40 8.95431 40 20C40 31.0457 31.0457 40 20 40C8.95431 40 0 31.0457 0 20Z" fill="white"/>
<path d="M31.7584 26.252C28.3179 25.6855 26.7771 22.1707 26.7135 22.0207L26.7063 22.0075C26.6085 21.8477 26.5469 21.6684 26.5257 21.4822C26.5046 21.2961 26.5244 21.1076 26.5839 20.9299C26.8143 20.3851 27.5799 20.1427 28.0851 19.9819C28.2123 19.9423 28.3311 19.9039 28.4247 19.8667C29.3403 19.5067 29.5263 19.1311 29.5215 18.8803C29.4975 18.7243 29.4276 18.5791 29.3208 18.4631C29.2139 18.347 29.0749 18.2654 28.9215 18.2286L28.9131 18.2262C28.7774 18.1714 28.6323 18.1432 28.4859 18.1434C28.3567 18.1416 28.2287 18.1674 28.1103 18.219C27.753 18.3997 27.3636 18.5082 26.9643 18.5383C26.7338 18.5437 26.5088 18.4681 26.3283 18.3246L26.3667 17.6886L26.3715 17.6106C26.6027 15.9937 26.5047 14.3467 26.0835 12.7686C25.5866 11.6354 24.7668 10.6737 23.7266 10.0035C22.6864 9.3334 21.4719 8.98454 20.2346 9.00053L19.7522 9.00653C18.5171 8.99136 17.3049 9.34028 16.2669 10.0098C15.2288 10.6792 14.411 11.6396 13.9153 12.771C13.4935 14.3474 13.3948 15.9927 13.6249 17.6082C13.6409 17.8474 13.6553 18.0866 13.6681 18.3258C13.4691 18.4816 13.2193 18.5577 12.9673 18.5395C12.5433 18.5212 12.1282 18.4115 11.7505 18.2178C11.658 18.1769 11.5576 18.1569 11.4565 18.159C11.248 18.151 11.0423 18.2084 10.868 18.3231C10.6937 18.4378 10.5596 18.604 10.4845 18.7987C10.3861 19.3147 11.1229 19.6903 11.5717 19.8667C11.6677 19.9051 11.7853 19.9423 11.9113 19.9819C12.4177 20.1427 13.1833 20.3851 13.4137 20.9299C13.473 21.1076 13.4928 21.2961 13.4716 21.4822C13.4505 21.6684 13.3889 21.8476 13.2913 22.0075L13.2841 22.0207C12.9527 22.743 12.5208 23.4149 12.0013 24.0163C11.0575 25.1897 9.72221 25.9835 8.24045 26.252C8.17053 26.2637 8.10739 26.3007 8.06311 26.3561C8.01883 26.4114 7.99652 26.4812 8.00044 26.552C8.00315 26.6057 8.01534 26.6585 8.03644 26.708C8.24885 27.2012 9.30726 27.608 11.1001 27.8852C11.2681 27.9116 11.3377 28.1852 11.4361 28.6316C11.4745 28.8116 11.5153 28.9976 11.5717 29.1896C11.5904 29.2747 11.6401 29.3498 11.711 29.4003C11.782 29.4508 11.8692 29.4733 11.9557 29.4632C12.1271 29.4539 12.2973 29.4298 12.4645 29.3912C12.9061 29.2948 13.3565 29.2437 13.8085 29.2388C14.1338 29.2394 14.4585 29.2667 14.7793 29.3204C15.4562 29.4918 16.0857 29.8134 16.6214 30.2612C17.5255 31.0333 18.6617 31.481 19.8494 31.5332C19.889 31.5332 19.9298 31.532 19.9694 31.5284C20.0174 31.5308 20.0834 31.5332 20.1506 31.5332C21.3391 31.4811 22.4761 31.0334 23.381 30.2612C23.9159 29.8135 24.5446 29.492 25.2207 29.3204C25.5411 29.2668 25.8654 29.2396 26.1903 29.2388C26.642 29.241 27.0922 29.2889 27.5343 29.3816C27.7021 29.418 27.8727 29.4393 28.0443 29.4452H28.0731C28.1541 29.4516 28.2347 29.4284 28.2998 29.3798C28.3649 29.3313 28.4102 29.2607 28.4271 29.1812C28.4794 28.9981 28.5251 28.8132 28.5639 28.6268C28.6611 28.1816 28.7319 27.9092 28.8999 27.8828C30.6927 27.6068 31.7523 27.1988 31.9612 26.7092C31.983 26.6598 31.996 26.607 31.9996 26.5532C32.0035 26.4824 31.9812 26.4126 31.9369 26.3573C31.8926 26.3019 31.8295 26.2649 31.7596 26.2532L31.7584 26.252Z" fill="#EB3986"/>
</svg>

        </span>
        <span class="visually-hidden">Snapchat</span>
      </a>
    </li></ul>
</div>
              <div class="footer-block__brand-svg hide-on-mobile">
                <div class="brand-svg-wrapper">
                  <svg width="145" height="121" viewbox="0 0 145 120" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" role="img" aria-label="Huda Beauty">
<rect width="145" height="121" fill="url(#desktop-pattern0_228_7835)"></rect>
<defs>
<pattern id="desktop-pattern0_228_7835" patterncontentunits="objectBoundingBox" width="1" height="1">
<use xlink:href="#desktop-image0_228_7835" transform="matrix(0.00353357 0 0 0.0042735 -0.261484 -0.15812)"></use>
</pattern>
<image id="desktop-image0_228_7835" width="432" height="306" preserveaspectratio="none" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAbAAAAEyCAYAAACbNoX5AAAACXBIWXMAAAsSAAALEgHS3X78AAAdrElEQVR4nO3d73XbxrbG4dd35buZCoRUYN4KzFNBdCrwpII4FYSngigVBK4gcgWhKohUQcgKjlSB7ocRr2gK4D/M3oMZ/J61tBLR9gAibbyYjY3Bu+fnZwEAUJr/yb0DAABcggADABSJAAMAFIkAAwAUiQADABSJAAMAFIkAAwAUiQADABSJAAMAFIkAAwAUiQADABSJAAMAFIkAAwAUiQADABSJAAMAFIkAAwAUiQADABSJAAMAFIkAAwAUiQADABSJAAMAFIkAAwAUiQADABSJAAMAFIkAAwAUiQADABSJAAMAFIkAAwAUiQADABSJAAMAFIkAAwAUiQADABSJAAMAFIkAAwAUiQADABTpu9w7gORmkua5d+JCj5Luc+/EQHPFz6BE94qfAVCEd8/Pz7n3AWndSPo5905c6HdJn3PvxEBrSVe5d+JCPyjuP1AESoj1uc69AwO0uXdgoLnKDa8HEV4oDDOwes0Vw+yzpPeZ92Xfg2JY3UtaZd0TO9cvX59y78ieJ0m3iu/7vcov2WLCCLD6zSQtlb+s+KRY3mw1rTP9ueLP/CHzfmwU/x60eXcDSIcAm44g6Y9M2/6qOBNcZ9p+bjPFGU+OEHtSDK6bDNsGTBFg0+Ld4PGkGFyt4zbHaqZYrvO8RvagWMZcO24TcEOATYvnQfRJ0kJcY9kV5DcLvlMML9riUS26EKflUT6zIcKrW6t4LcraduZFeKFqBNj0tA7b+CzCq8+t8fgbxZMHwgvVI8CmZ208/u/imtchK+PxgwgvTAQBNk1WZaxtxxv6WYbLF9V7Xx3wBgE2TVZNHDfi7D+XbccnMBkE2PRYLTS7vVEZhy2Mxr0VJw+YGAJsehZG47biAHoKqycFcPKAySHApsdqsd/WaNyazCT9aDDug+j6xAQRYNNjEWAbcQA9BScPQEIE2LRcy2Zleut7m2phFWC8/5gkAmxamAHkY1k+XBuMC4weATYtlA/z4eQBSIwAmw7Kh3lRPgQSI8CmgxlAPlblwztRPsSEEWDTMJPNo+0pH56GkwfAAAE2DZSv8uL9BwwQYNPADCAfq/LhV7HyCSaOAKuf1QGU8uFpmH0BRgiw+nEAzYv3HzBCgNWP8mE+lA8BQwRY3Sgf5sXJA2CIAKsb5au8LN7/J/H+A5IIsNoxA8inkc3sl/ACXhBg9aJ8mBezX8AYAVYvDqB5BYMxKR8COwiwelE+zKeR9MFgXMIL2EGA1YnyYV6cPAAOCLA6WR1Ab4zGrU0wGHMjaWUwLlAsAqxOXP/KpxHlQ8AFAVYfHl2fF+VDwAkBVh8OoHkFgzG59gh0IMDqQ/kwn0aUDwE3BFhdKB/mRfMM4IgAqwvlw7yCwZicPAA9CLC6UD7Mp5FN+bA1GBOoAgFWD8qHeXHyADgjwOpB+TCvYDAmJw/AAQRYPZgB5NOI8iHgjgCrA+XDvDh5ADIgwOpA+TCvYDDmV3HyABxEgNXhs9G4zACOa8TNy0AWBFj5GtkcQCkfnobyIZAJAVY+yod5BYMxv0p6NBgXqAoBVr5gNC4zgOMaUT4EsiHAytaI8mFOlA+BjAiwslE+zCsYjPlFlA+BkxBgZQtG4zIDOK4R5UMgKwKsXI0oH+ZkMft9EgEGnIwAKxflw7yCwZiEF3AGAqxcwWhcDqLHNaJ8CGRHgJWpEeXDnILBmJQPgTN9l3sHcBGr8uEHSc9GY+Ow9siv38pmweYxe5J0v/P9487365evx73fgwl59/zM8apA97KZgSGf/9XhA/GjpPdO+1KijWKgrfQabqtcOwMfBFh5Gkn/5N4JJLVR/Fz7NDo+Q/uYaF9Sujvj985lE9B3iicGq5cv7rGrCAFWns+SfjMY9yf1HyTnis8cW7z8/0JlzAYeFA9a90p3Rt5K+pRgnF2/K80TBeaK1+eC0nw+D4o/70r+Zbrm5Wum+HPNleba7/bvRCtKj8UjwMpjVT78XuednV6/fKU+mA+1UTw4tUrfkDKT9N/EY0rHy4fnmin+/JdeM/si6UbjPcAvdr6GzDy3jTOtKDcWiQArSyOb8uFXXd4YMlc8AOS+JreRtJTtfWxB0h+JxzxWPhyi1XknGA+KM8GVxc4Ymen1ZGpIk4vliQ+M0EZfljEuHnuvGGJfEu3LuZ4k/aLTrhMNFQzGbA3G3AqKoXSKL4ozmpXRvlh5VHwPrxWrCL8ohtG5riT9qniCeKv4XmDkmIGVZSzlwz4r+TYTPCgeuNYO22pkM/v9Qbb7fy3pzyO/54vsbozPJSjOyK8GjHH3MsZq8N7ABDOwcjSyCa+UD08MicY5xXbGsHbansXs1+PG8VvFWWqfGsNLirOyRnFGdujnP+SjpL8UA2yRYJ+QGAFWjjGWD/etFQPR2vag69kSHQzGbA3G7NLXjHGnOsNr141ikA35e7kNslZ21ytxAQKsHMFo3NTLF1l3ruU46M5V39qHT7I7KRqbR8Wf9ZeB43xS/Pud4pYHJECAlaHR+MuHW6vE4+3KddANBmPmXnfys6Z3U++N4i0Ll5YUpXh/3W+Kf8+b4buEIQiwMpRQPvQQlOega/H+twZjnmrbMj5F267ZU7sz+3x8GWsqs9hRIsDKEIzGtQiwxmBMKZYOcwTutYZ1svVpDcbsM9/7fum47TFaKzZlDA2x94odnjcDx8GFCLDxa1RO+VB6e7BMJddBwuIM2+q979Lo22WlnjTd2deuR8UQu+SesX0/K5YUZwnGwhkIsPELRuNazWYWBmNulGf2tV3lITXPn2V//0srG1vaNncMuSa29VGEmDsCbPyC0bhW5UOL2eLKYMxTXMtm0WLPEAl731Pu+ta90v0b+yCaO1wRYOM2l831F6sSltUFbcqHl2n07QnF/gMiEd0qPhEghW2IMRNzQICNWzAa12oGEAzG3CjPQXcmmycgUz4cp6XSXA+T4knnSoSYOQJs3Epqn29U182+wWDM7eM7vIS97wmwfo9Ke4MyMzEHBNh4UT6MWqNxjwkGY94qb/mQADvsVuc9RfqYD+KaoykCbLyC0biUD49rVP5scpFx2yVbJh7vk1h6ygwBNl4llQ9rWyvQ4oDjPQPi+tdlVko7C5Pi0lNW90dOGgE2TqWVD4PBmFJd3YeeAbLfgEL58DxLgzFvxfWw5AiwcQpG41odxEp9VlaXhWxOHnLOvlaO267BSuk6EreuxBJeyRFg41Ra+bD0tQJ3BYMxvVcSoXw4nMXs/2fxYMykCLDxoXwY5Tro1lY+9N5+LazeM7oSEyLAxicYjUv58DirpaNagzH77H8enit/1GSt4avVd/mg+p+C7YYAGx+LQLC6iF/Do0Z2BYMxvW8FoHyYjtV7tzQad3IIsHGxKh9a3UBb083LNSwdRfkwLav37krMwpIgwMYlGI1bUvkwV8mrhjCmfJjWvdI8aqXL0mjcSSHAxqW08mHpjxrZZXHzMuXD8ll9fszCEiDAxsOyfGihpFb/YxrZrCTi2XFG+dDGynDsYDj2JBBg4xGMxrU4iM1UV/kwGI2b894vyodpWM6gP4olpgYhwMaD8mFdj07xvhWA8qGNtfH4wXj8qhFg40D5MIZtazDuMTWsJEL50I71NUyrUvwkEGDjEIzGtSoflt5uvisYjUv5sB6p10XcdSWWl7oYATYOpZUPLdQUYJQP67I2Hp9Z2IUIsPwoH+Z73IfVtTy6D3EOAuxC3+XeARRVwmpUV/mwhtmkZ/lwof5y16PqXah2pdgxaOVK8d/W2nAbVSLA8itpRlPDahVbM8XHvafmff3Js3x4o8P3y92Kg/ClFsq3BmixKCHmtVBZ5cNgMOZGeR64WMPsy7N8uNDxm70tVjOZikXuHSgRAZZXMBrXqnxosVoF5cPLeZYPw4m/Z2a0/dpxQ/MFCLC8KB/mKZs0srmWV2v5sNFp5db3oiHhUhYnh9UjwPIpbTWLYDCm92K3WzWEsWf5MJzxe5dG+zAFi9w7UBoCLJ+SSlhz1VU+DAZjet8KMLby4RY35l6uyb0DpSHA8impfBgMxpTytF3XEsYLp+0Hnd9oFNLvxiQ0uXegNARYHqWVDy3C1nu1iq1gNK53gHld/woX/JlP4mB8CRo5zkSA5VFa+bD0xW53lTTz7bN/AmRVPpzr8ht4Q8L9mAo6OM9EgOVR0kE0GIwp5Vs6qqT77vp4zb6G3NcVUu3EhDS5d6A0BJg/yof5yoc1dB9KPgE2dKWSKxFi57I4uaoaAeavpPKh1YylNRjzmJnsZr4rg3H7eJUPU6yqERKMMQZcmxopAsyX1fp7ks1BtJYZi2Q38/W+j23MzRv7PqqOg7/ntSmug52BAPO1NBzb4izcIsByPWxxaTRujQEWlG7mzfqI56kh8N0QYH4aST/n3okzlHat7pCl6ri+4FU+DAnHulb5swpCZaQIMD/WB+7UB4mSrtUdMpf0q/H4XjxmX0Na57u8V/nXwixO5JAAAebj2HOUUlgkHMuq4cG7fDiT/fW2nAG2MtiGRcmv5DJik3sH0I8AsxfkUzoMCceqoXw4UzzAW584eM0w9j8Ti1sRrJqMrlTuKvVN7h1APwLM1lLSH07b+lHpZmFW7eatwbhdvMJra+mwjf3PpDXYhuVMKRiObanJvQPoR4DZmCnONiyvvXS50fBrYV2P6UjBa/a1UOwM9Hy+0pXsFyb26j608qPKDIMm9w6gHwGWXlAs7ViEwDEfFGceQ0Ks1OaNmWKI/KU8HYc/y24m5lE+DLJ/30q8FubdgZjj+XjFIsDSaBT/ca4VS4Y5u5Y+vOxHuPDPl7ROoxQPMK3iz5z7NoVfFU8gmsTjepQPg8GYObaRmvctADnukSzWu+fn59z7UJrFy3/nigeqhcb7OPCNYnCsFP9hrI78/pmk/xrsxxcNP3g1eg2GhV7f+7He3/Wg1/d+rWEzpkd9e1L0w8Dx9jWS/kk43iE/Kd+TCC7hfYB857y9ohFg55lL+jv3TlzoQcfLIZ8l/Waw7X9peMt3K7tluKz9osuvkV1L+nPn+1M+x3O18ntvLfbfSiO/YJdipaL0m75dUUI8T4k1/K32hN8TDLa7UZr7lUptw5aGlU+t7/2yuuevzwelvWfREte/Ru673DtQmKAy6/inaGRTCk117WuqZ6bW17+C/K/ZBvmu4H+pUmaKk8UMDFs1rTxfi/3uw43Sn6XnqCp8UhknJAvn7a2ct1c8AgxbwWBMiwPulFjf+9X1vLcnSXeJt9OlhHJ8k3sHcBgBBmn85cOpsi4fdoXIjcF2ugSHbQzRyL/DdeW8veIRYJDszoatV6eo2UK25cNG3avOty9fTwm31WXs6yPmuP61zrDNohFgkGwOJBarRUyJdflw2fHaV71+Zh6z5zGXEQmwAhBgmMumVNIajDklluXDvtb5m57/t/JR473OtHDensd1x+oQYAhG43L963L7JxWpy4dBb1vn9+/Xu395zdrSYRuXSPlQz1PQ7HQBAgyUD8cn7H2f+mSgq3S37HjNYxZ2rfG11C8ybJMAuwABNm0LUT4cI8vyYV/rfFdIptxun/caXzPHIsM2Vxm2WTwCbNqC0bit0bhTYF0+7Jp9tepeBf1RsbHD2tJhG+fwDtSNqFhchACbNot/qF/FIyGGCHvfpywfNuq+tnOoVNgm3H6fK41nfcSZ/J8usXLeXjUIsOnaX6YoFZo3hrEsHy47XrvT4bP/W9nfEyaN58bmRYZtrjJsswoE2HSV+uTlmlmWD09pne/TJtqHQz5pHC31Oa7H8W/mQgTYdFE+HJ+w932bcOyuGff2gafHeK2oEpy2c4h3gD2IfzMXI8CmKYjy4Rh5lw9PDaa14oHWWu6VORbyf7RM67y9qhBg0xQMxuxrxcZp9suHKe+lW6i7db49YwyPWdh75Z2FUT4sDAE2PY1sVhm4FaWQIfZnHykDo2tmc+7n5XWgDU7b6ZKjfLh23mZVCLDpoXljnKwW720k/djx+rkB+Sjpy+C9Oe6j8iyk23WDt7XWeXvVIcCmx+I6A+XDYYK+vfbyRelms12f950u625sh+3KyXJcC8tRPmwzbLMqBNi0NLI5yyS8hgl737eJxp11jD1k/JV8Fvj1Xh+x7xYDSylPUiaLAJsWyofj0+jba5L7q8IP0dc63w4Ys8ZmDqub+g9pnbdXJQJsWqwCbGU07hQs975PGRD7Y0vDD5xeJyueZcTguC0p7UnKpL17fn7OvQ/wY/FhPyjPRfcazBS70HbP/r9XmtLSQtJfHa+nGP9W3Y0hqf1b9oE5l/S38Tb2/SRmYEkwA5uOhdG4K6Nxp+CzfJs3Uo3fJhjjFMFhG94NI+fef4cDCLDpWBiNy4P4LjOT3b1fjdK0zve5lU8zx4+yXR9xprgGoyevZbkmgQCbDqsyHwF2mf3Z16Wt7X1j70s5vlRHS32O2RcBlhABNh2N0bgE2Pm6Zl9twrFDx+upxrcar0+QTUt912dg7Ua0zidFgE2HxUP6PJ4TVaP92dfQ1vZdFq3zXdbyeVrze9l0z+5/BtY2YvaVHAE2DY3RuMy+ztd15r9MOH7XrKJNOP6uUlvqc8y+lmL2lRwBNg1N7h3A/7uR3exroe6ZttWZfyufWfgHpW1C8p59PYjOQxMEGOBnobddb8uE44eO16yXLGoNx94VEo2TY/aV+zln1SLAAD/7M6GUs69G3S3hqcbv43Vd55PSNHN4z75+F/dKmiHAAB9LvS3vLROOHzpee5D9wXOt2KLvYehMppH0a4L9ONWT0n7G2EOAYQjPFcNLttDbA+ed0s6Oug7uXrOj1mk7YeCfbxPswzmCaNwwRYBhCIvW/NrM1H3gTHldJOhtWcxzyaJWPs0cV7o8xK5l8yTyPl/EUxrMEWAYioV8D2v19hlsvyvtLQg5Z19brdN2wgV/pu8kwspGNG64IMCmYWU4NgHWb6m3axJulPa6yELdM+E24TZO4bW9jzr/tpBWvo0b16J06IIAmw6rxVcXRuOWLqi7YSAo7cEtdLz2RbG5wtO9YtOIh+UZv/daPo9+2fpF3ODvhgCbDqt/VN6PYi/BXN0lvP8o7Wy4UZ7W+T5eZctrndZA5F06/CKWi3JFgE3Hymhcq7XqSjVXfK/3S1Z3St9SHTpe82id73Mrn2aOU//O3cqvdPggrnu5I8Cmw7IjKhiOXZK+8HqQ3YK0+3LOAB7l13m3PPLrN/LrOtwoltK57uXs3fOzxVPmMVL3smt9/0H+113GpC+8nl5+bZ14e0HSHx3byn1v3lzS307b+pe6Z5tBb98bK0+K4cV1rwyYgU2L5dl5azj22B0Kr4Vsgn1ss68tz2aOrveg7/qjBcIrMwJsWiyvUXzUNK+FBR0OL4uD20LjaJ3v0zpt50d921LfqPuzsEB4jQABNi2Psp+F5S5heVoqlqo8w0saT+t8n9ZxW+HlvzP5NW0QXiPBNbBpWuvt6hCp3Kn+e8O2B8uuJgHrg9tM0n87Xu+7HpRLq+4W/9Se9Drz8ljajPAaEWZg02RZ6vuo8ZSyLFwrngDkCC+p+7pPztb5Pq3Tdt4rfh6E1wQRYNN0r7higJVPqi/EtrOuP9VdpnpQbCCwPriFjtfG0LyxbyW71V/2eZQNvT5fnIEAm64bxesmVmoKsc+KZ/l9SxJ9lV234a6gt6XfJ4131fMxBuslvD5fnIkAm7Yg+xBbqdzGjqB40PpN/Wf5v8hv8dbQ8VrrtO1LtLl3IIH/iMV5R4smDkj2F9yfFA++Y50p7AuKHYaHGl02igc2r5JS3w3CY7+B/Fa+i+mm8qT4+a4y7wcOYAYGKR6wLa+JvVe8drTSeDsUG8WS16Nia/yh8Ppd/tdDupo3vmrc4SWVOQu702tnI0aMGRh2LdT9AMbUHhTD4lZ5SzNzxZ856LQutjvFIPG+kF9K63yftez/TqXwpDjzruXaXfUIMOybKf4j/tlpe18VD8Ir2QfDNrC2/z31oLp9CGVrsE+nWOrts8U2Ov/Bjrks1f1stDH5qtdmHRSCAEOfRvHA43Ez6q4HxYPINszudf4srdHrwX2hGMqX3CeUO7i21nobtj8p/36dqpH0T+6d6LHR63JgKAwBhmMa5QmynL4qlpFWmfdD6l91vlFZnXFja+agXFgBmjhwzFrxIPq9YqOH182p3h4Uf77vNa7us9DxWquywksaz2zxSbE1vhHhVTxmYLjEXPHAupDPEj5W7hRnBrca57WPUlvn+6yVr5ljoxii205TVOC73DuAIt3rta27UQyy7deYu822awZuv8Z+ICu1db7Prfyag7buFIOrdd4uHDADQ2qN4sxh2+nXKE+obRSD9l6vHY5jD6xdpbfOd2nk18zBwrsTwAwMqa1fvvZX3VgoHpTnO/+VLg+4jV5nIttw2v53dcF4Y9M1+9o+jHThuB+pbeRzQvNe5S5hhhMxA8MYbUNuaxtOU7LWuMuxJfii7iYYVIIAA8bnWnHpLQxXasMLTkAJERifrvLhneoojUqxBNr1QFALQfF+L1SIGRgwLo26Gx1qmkk08mvmKGnJLZyJG5mBcVl2vHanesJLij/Lg9O2rsR1sGoRYMB4zBSvf+2rccUIz58pOG4LjggwYDyC3j75eaNyHgR6jlu93hZg7aMoI1aJAAPGo6t5o8bZlxRvjfAM5qXjtuCEJg5gHLpa50tcdf4cfWs9Wqj9vZwkZmDAOHTNvnI/sdravfyaOd6La2HVYQYG5Neo/tb5PkFvn3dmhZb6yjADA/JbdrxWW+t8H89mjiuVvY4k9hBgQF59rfOt837k4t3M0VWqRaEIMCCvz3rbOv+k6QSY5Puz/ijKiNUgwIC8QsdrNd73dchK8fqUl+C4LRgiwIB8grofmVLrvV+HeP7MlBErQRcikM+9pA97r021U67vCdRWftK0yrRVYgYG5LHQ2/CSplc+3HpUfAClF2ZhFSDAgDyWPa+3jvswNq3jtj4orgSCghFggL+Fuh/o+KRYVpyqlXybOZiFFY4AA/yFntenWj7c1Tpu65PitTcUigADfDWKB84uK7/dGK3WeXvMwgpGgAG+lgd+beW0D2O2lvTVcXvBcVtIjAAD/DTqn309aRprH56iddzWlbqX8kIBCDDAT3vg16bcvLHvVjRz4AQEGOBjoe7Owy0C7Fut47Y+apo3jxePAAN8LI/8es0PrrxE67w9ZmEFIsAAe9c6PPuSuP61b634TDQvQbTUF4cAA2zNdNpCtWvj/ShR67it96KZozgEGGDrs7pXnMdxrfye1iwdL/NiZAgwwM5c0q+5d6JwreO2rhSbbVAIAgywc84zrlhYtpv3s9GC8/YwAAEG2Pis440buxqj/SjdWr7NHJ/EZ1EMAgxIby7ptwv+DLq1ztsLztvDhXgiM5DWTPGm5EsaN74X94N1aST947i9qT4VuzjMwIC0Wl3edUgbd7e18/auxCysCMzAgHRa9S/WewrO/Pt5H6geRFl39JiBAWl81rDwkuKZP0savZVjhYwPYkY8egQYMNxnnd+00Wcpzvz3LTJt17uFH2ciwIBhWqULLykuabQSIbYrZNrulVidY9S4BgZcZqb43Kpz7vU6x5PizGPqj1lZSPor8z78JP9WfpyAGRhwvmvFzjir8JLiTOxvTXsGMNM4guNGdCWOEgEGnK5RLO/9qRgwHn5VDMvgtL2xmCu+12NYCPm9pD807ZOJUaKECBy3UAyQoV2GQ20UZwO3qvvxK0vFxhivk4RzbBT371bcdJ4dAQZ0myuG1rXGMQvY96B4EF29fJVu+34HjTO4unxVfO/vVcdnUBwCDHi10GsbeykH0a0HxQPpUuOdnTX6thQ6V7zOZXkt0dNG8b1/1OtnAUMEGPBqqfKf3/UvjXc2sFD+jkJP73LvQO2+y70DwIiscu9AAuvcO3DAWtJ/cu8E6sEMDABQJNroAQBFIsAAAEUiwAAARSLAAABFIsAAAEUiwAAARSLAAABFIsAAAEUiwAAARSLAAABFIsAAAEUiwAAARSLAAABFIsAAAEUiwAAARSLAAABFIsAAAEUiwAAARSLAAABFIsAAAEUiwAAARSLAAABFIsAAAEUiwAAARSLAAABFIsAAAEUiwAAARSLAAABFIsAAAEUiwAAARSLAAABFIsAAAEUiwAAARSLAAABFIsAAAEX6P0yC87eXHw4EAAAAAElFTkSuQmCC"></image>
</defs>
</svg>
                </div>
              </div>
            








<div class="footer__link-list-wrapper">
      <div
        class="footer-block footer-block--menu"
        
        
      ><ul class="hide-on-mobile footer-block__details-content list-unstyled"><li class="footer-list-menu-item">
                <a
                  href="/en-fr/pages/about-us-1"
                  class="footer-list-menu-item-link h6"
                >
                  About Us
                </a>
              </li><li class="footer-list-menu-item">
                <a
                  href="/en-fr/pages/rewards"
                  class="footer-list-menu-item-link h6"
                >
                  HUDA&#39;S VIPS LOYALTY PROGRAM
                </a>
              </li><li class="footer-list-menu-item">
                <a
                  href="/en-fr/pages/affiliate-program"
                  class="footer-list-menu-item-link h6"
                >
                  Affiliate Program
                </a>
              </li><li class="footer-list-menu-item">
                <a
                  href="/en-fr/pages/blogs"
                  class="footer-list-menu-item-link h6"
                >
                  Blog
                </a>
              </li><li class="footer-list-menu-item">
                <a
                  href="/en-fr/pages/huda-beauty-accessibility-statement"
                  class="footer-list-menu-item-link h6"
                >
                  Accessibility
                </a>
              </li></ul><div class="hide-on-desktop">
              <script src="//hudabeauty.com/cdn/shop/t/162/assets/collapsible-list-item.js?v=176410432902435684681775984105" defer="defer"></script>



<div class="collapsible-container">
  <ul class="collapsible list-unstyled">
    <li class="collapsible-list-item collapsible-title__border-top">
      <div>
        <div class="collapsible-title footer-list-menu-item-link"><div class="h6">company</div>
            <span class="collapsible-icon closed">
              <svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
  <path d="M0 5.76465H10" stroke="white"/>
  <path d="M5 0.764648V10.7646" stroke="white"/>
</svg>
            </span>
            <span class="collapsible-icon open" style="display:none;">
              <svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
  <path d="M0 5.76465H10" stroke="white"/>
</svg>
            </span>
        </div>

        <div class="collapsible-content"><div class="collapsible-content__body"><div>
                  <a class="footer-list-menu-item-link h6" href="/en-fr/pages/about-us-1">About Us</a>
                </div><div>
                  <a class="footer-list-menu-item-link h6" href="/en-fr/pages/rewards">HUDA'S VIPS LOYALTY PROGRAM</a>
                </div><div>
                  <a class="footer-list-menu-item-link h6" href="/en-fr/pages/affiliate-program">Affiliate Program</a>
                </div><div>
                  <a class="footer-list-menu-item-link h6" href="/en-fr/pages/blogs">Blog</a>
                </div><div>
                  <a class="footer-list-menu-item-link h6" href="/en-fr/pages/huda-beauty-accessibility-statement">Accessibility</a>
                </div></div>
        </div>
      </div>
    </li>
  </ul>
</div>

              
            </div></div>
      <div
        class="footer-block footer-block--menu"
        
        
      ><ul class="hide-on-mobile footer-block__details-content list-unstyled"><li class="footer-list-menu-item">
                <a
                  href="https://support.hudabeauty.com/support/tickets/new?_gl=1*1p8y4tt*_gcl_au*MjA1OTI5MjEwNi4xNzM4MjM2MDEx*_ga*NzUwNjUxNzUzLjE3MzgyMzYwMTE.*_ga_M81FB0W6BW*MTczOTI1ODM4My42LjEuMTczOTI1OTE4My4wLjAuMzAxMjU1NzQz"
                  class="footer-list-menu-item-link h6"
                >
                  Contact Us
                </a>
              </li><li class="footer-list-menu-item">
                <a
                  href="https://support.hudabeauty.com/support/solutions/48000119145"
                  class="footer-list-menu-item-link h6"
                >
                  Shipping and Delivery Info
                </a>
              </li><li class="footer-list-menu-item">
                <a
                  href="https://support.hudabeauty.com/support/home?_gl=1*dq37pp*_gcl_au*MjA1OTI5MjEwNi4xNzM4MjM2MDEx*_ga*NzUwNjUxNzUzLjE3MzgyMzYwMTE.*_ga_M81FB0W6BW*MTczOTM2ODE5MC45LjEuMTczOTM3MTIzNi4wLjAuMTk5ODA4NTcwNQ.."
                  class="footer-list-menu-item-link h6"
                >
                  FAQs
                </a>
              </li><li class="footer-list-menu-item">
                <a
                  href="/en-fr/pages/find-my-order"
                  class="footer-list-menu-item-link h6"
                >
                  Find My Order
                </a>
              </li><li class="footer-list-menu-item">
                <a
                  href="https://support.hudabeauty.com/support/solutions/48000119146"
                  class="footer-list-menu-item-link h6"
                >
                  Returns
                </a>
              </li></ul><div class="hide-on-desktop">
              <script src="//hudabeauty.com/cdn/shop/t/162/assets/collapsible-list-item.js?v=176410432902435684681775984105" defer="defer"></script>



<div class="collapsible-container">
  <ul class="collapsible list-unstyled">
    <li class="collapsible-list-item">
      <div>
        <div class="collapsible-title footer-list-menu-item-link"><div class="h6">CUSTOMER SERVICE</div>
            <span class="collapsible-icon closed">
              <svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
  <path d="M0 5.76465H10" stroke="white"/>
  <path d="M5 0.764648V10.7646" stroke="white"/>
</svg>
            </span>
            <span class="collapsible-icon open" style="display:none;">
              <svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
  <path d="M0 5.76465H10" stroke="white"/>
</svg>
            </span>
        </div>

        <div class="collapsible-content"><div class="collapsible-content__body"><div>
                  <a class="footer-list-menu-item-link h6" href="https://support.hudabeauty.com/support/tickets/new?_gl=1*1p8y4tt*_gcl_au*MjA1OTI5MjEwNi4xNzM4MjM2MDEx*_ga*NzUwNjUxNzUzLjE3MzgyMzYwMTE.*_ga_M81FB0W6BW*MTczOTI1ODM4My42LjEuMTczOTI1OTE4My4wLjAuMzAxMjU1NzQz">Contact Us</a>
                </div><div>
                  <a class="footer-list-menu-item-link h6" href="https://support.hudabeauty.com/support/solutions/48000119145">Shipping and Delivery Info</a>
                </div><div>
                  <a class="footer-list-menu-item-link h6" href="https://support.hudabeauty.com/support/home?_gl=1*dq37pp*_gcl_au*MjA1OTI5MjEwNi4xNzM4MjM2MDEx*_ga*NzUwNjUxNzUzLjE3MzgyMzYwMTE.*_ga_M81FB0W6BW*MTczOTM2ODE5MC45LjEuMTczOTM3MTIzNi4wLjAuMTk5ODA4NTcwNQ..">FAQs</a>
                </div><div>
                  <a class="footer-list-menu-item-link h6" href="/en-fr/pages/find-my-order">Find My Order</a>
                </div><div>
                  <a class="footer-list-menu-item-link h6" href="https://support.hudabeauty.com/support/solutions/48000119146">Returns</a>
                </div></div>
        </div>
      </div>
    </li>
  </ul>
</div>

              
            </div></div>
      <div
        class="footer-block footer-block--menu"
        
        
      ><ul class="hide-on-mobile footer-block__details-content list-unstyled"><li class="footer-list-menu-item">
                <a
                  href="/en-fr/pages/terms-conditions"
                  class="footer-list-menu-item-link h6"
                >
                  Terms and Conditions of Sale
                </a>
              </li><li class="footer-list-menu-item">
                <a
                  href="https://support.hudabeauty.com/support/solutions/48000119147"
                  class="footer-list-menu-item-link h6"
                >
                  Terms and Conditions of Promotions
                </a>
              </li><li class="footer-list-menu-item">
                <a
                  href="/en-fr/pages/privacy-notice"
                  class="footer-list-menu-item-link h6"
                >
                  Privacy Policy
                </a>
              </li><li class="footer-list-menu-item">
                <a
                  href="/en-fr/pages/do-not-sell-my-personal-information"
                  class="footer-list-menu-item-link h6"
                >
                  Do Not Sell My Personal Information
                </a>
              </li><li class="footer-list-menu-item">
                <a
                  href="/en-fr/pages/cookie-policy"
                  class="footer-list-menu-item-link h6"
                >
                  Cookie Policy
                </a>
              </li><li class="footer-list-menu-item">
                <a
                  href="/en-fr/pages/terms-of-use"
                  class="footer-list-menu-item-link h6"
                >
                  Terms of Use
                </a>
              </li><li class="footer-list-menu-item">
                <a
                  href="/en-fr/pages/third-party-ethical-standards"
                  class="footer-list-menu-item-link h6"
                >
                  THIRD PARTY ETHICAL STANDARDS
                </a>
              </li></ul><div class="hide-on-desktop">
              <script src="//hudabeauty.com/cdn/shop/t/162/assets/collapsible-list-item.js?v=176410432902435684681775984105" defer="defer"></script>



<div class="collapsible-container">
  <ul class="collapsible list-unstyled">
    <li class="collapsible-list-item">
      <div>
        <div class="collapsible-title footer-list-menu-item-link"><div class="h6">LEGAL</div>
            <span class="collapsible-icon closed">
              <svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
  <path d="M0 5.76465H10" stroke="white"/>
  <path d="M5 0.764648V10.7646" stroke="white"/>
</svg>
            </span>
            <span class="collapsible-icon open" style="display:none;">
              <svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="10" height="11" viewbox="0 0 10 11" fill="none">
  <path d="M0 5.76465H10" stroke="white"/>
</svg>
            </span>
        </div>

        <div class="collapsible-content"><div class="collapsible-content__body"><div>
                  <a class="footer-list-menu-item-link h6" href="/en-fr/pages/terms-conditions">Terms and Conditions of Sale</a>
                </div><div>
                  <a class="footer-list-menu-item-link h6" href="https://support.hudabeauty.com/support/solutions/48000119147">Terms and Conditions of Promotions</a>
                </div><div>
                  <a class="footer-list-menu-item-link h6" href="/en-fr/pages/privacy-notice">Privacy Policy</a>
                </div><div>
                  <a class="footer-list-menu-item-link h6" href="/en-fr/pages/do-not-sell-my-personal-information">Do Not Sell My Personal Information</a>
                </div><div>
                  <a class="footer-list-menu-item-link h6" href="/en-fr/pages/cookie-policy">Cookie Policy</a>
                </div><div>
                  <a class="footer-list-menu-item-link h6" href="/en-fr/pages/terms-of-use">Terms of Use</a>
                </div><div>
                  <a class="footer-list-menu-item-link h6" href="/en-fr/pages/third-party-ethical-standards">THIRD PARTY ETHICAL STANDARDS</a>
                </div></div>
        </div>
      </div>
    </li>
  </ul>
</div>

              
            </div></div></div>

<div
              class="footer-block  hide-on-desktop"
              
            ><div class="footer-block__brand-svg">
                    <div class="brand-svg-wrapper-mobile">
                      <svg width="145" height="121" viewbox="0 0 145 120" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" role="img" aria-label="Huda Beauty">
<rect width="145" height="121" fill="url(#mobile-pattern0_228_7835)"></rect>
<defs>
<pattern id="mobile-pattern0_228_7835" patterncontentunits="objectBoundingBox" width="1" height="1">
<use xlink:href="#mobile-image0_228_7835" transform="matrix(0.00353357 0 0 0.0042735 -0.261484 -0.15812)"></use>
</pattern>
<image id="mobile-image0_228_7835" width="432" height="306" preserveaspectratio="none" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAbAAAAEyCAYAAACbNoX5AAAACXBIWXMAAAsSAAALEgHS3X78AAAdrElEQVR4nO3d73XbxrbG4dd35buZCoRUYN4KzFNBdCrwpII4FYSngigVBK4gcgWhKohUQcgKjlSB7ocRr2gK4D/M3oMZ/J61tBLR9gAibbyYjY3Bu+fnZwEAUJr/yb0DAABcggADABSJAAMAFIkAAwAUiQADABSJAAMAFIkAAwAUiQADABSJAAMAFIkAAwAUiQADABSJAAMAFIkAAwAUiQADABSJAAMAFIkAAwAUiQADABSJAAMAFIkAAwAUiQADABSJAAMAFIkAAwAUiQADABSJAAMAFIkAAwAUiQADABSJAAMAFIkAAwAUiQADABSJAAMAFIkAAwAUiQADABSJAAMAFIkAAwAUiQADABTpu9w7gORmkua5d+JCj5Luc+/EQHPFz6BE94qfAVCEd8/Pz7n3AWndSPo5905c6HdJn3PvxEBrSVe5d+JCPyjuP1AESoj1uc69AwO0uXdgoLnKDa8HEV4oDDOwes0Vw+yzpPeZ92Xfg2JY3UtaZd0TO9cvX59y78ieJ0m3iu/7vcov2WLCCLD6zSQtlb+s+KRY3mw1rTP9ueLP/CHzfmwU/x60eXcDSIcAm44g6Y9M2/6qOBNcZ9p+bjPFGU+OEHtSDK6bDNsGTBFg0+Ld4PGkGFyt4zbHaqZYrvO8RvagWMZcO24TcEOATYvnQfRJ0kJcY9kV5DcLvlMML9riUS26EKflUT6zIcKrW6t4LcraduZFeKFqBNj0tA7b+CzCq8+t8fgbxZMHwgvVI8CmZ208/u/imtchK+PxgwgvTAQBNk1WZaxtxxv6WYbLF9V7Xx3wBgE2TVZNHDfi7D+XbccnMBkE2PRYLTS7vVEZhy2Mxr0VJw+YGAJsehZG47biAHoKqycFcPKAySHApsdqsd/WaNyazCT9aDDug+j6xAQRYNNjEWAbcQA9BScPQEIE2LRcy2Zleut7m2phFWC8/5gkAmxamAHkY1k+XBuMC4weATYtlA/z4eQBSIwAmw7Kh3lRPgQSI8CmgxlAPlblwztRPsSEEWDTMJPNo+0pH56GkwfAAAE2DZSv8uL9BwwQYNPADCAfq/LhV7HyCSaOAKuf1QGU8uFpmH0BRgiw+nEAzYv3HzBCgNWP8mE+lA8BQwRY3Sgf5sXJA2CIAKsb5au8LN7/J/H+A5IIsNoxA8inkc3sl/ACXhBg9aJ8mBezX8AYAVYvDqB5BYMxKR8COwiwelE+zKeR9MFgXMIL2EGA1YnyYV6cPAAOCLA6WR1Ab4zGrU0wGHMjaWUwLlAsAqxOXP/KpxHlQ8AFAVYfHl2fF+VDwAkBVh8OoHkFgzG59gh0IMDqQ/kwn0aUDwE3BFhdKB/mRfMM4IgAqwvlw7yCwZicPAA9CLC6UD7Mp5FN+bA1GBOoAgFWD8qHeXHyADgjwOpB+TCvYDAmJw/AAQRYPZgB5NOI8iHgjgCrA+XDvDh5ADIgwOpA+TCvYDDmV3HyABxEgNXhs9G4zACOa8TNy0AWBFj5GtkcQCkfnobyIZAJAVY+yod5BYMxv0p6NBgXqAoBVr5gNC4zgOMaUT4EsiHAytaI8mFOlA+BjAiwslE+zCsYjPlFlA+BkxBgZQtG4zIDOK4R5UMgKwKsXI0oH+ZkMft9EgEGnIwAKxflw7yCwZiEF3AGAqxcwWhcDqLHNaJ8CGRHgJWpEeXDnILBmJQPgTN9l3sHcBGr8uEHSc9GY+Ow9siv38pmweYxe5J0v/P9487365evx73fgwl59/zM8apA97KZgSGf/9XhA/GjpPdO+1KijWKgrfQabqtcOwMfBFh5Gkn/5N4JJLVR/Fz7NDo+Q/uYaF9Sujvj985lE9B3iicGq5cv7rGrCAFWns+SfjMY9yf1HyTnis8cW7z8/0JlzAYeFA9a90p3Rt5K+pRgnF2/K80TBeaK1+eC0nw+D4o/70r+Zbrm5Wum+HPNleba7/bvRCtKj8UjwMpjVT78XuednV6/fKU+mA+1UTw4tUrfkDKT9N/EY0rHy4fnmin+/JdeM/si6UbjPcAvdr6GzDy3jTOtKDcWiQArSyOb8uFXXd4YMlc8AOS+JreRtJTtfWxB0h+JxzxWPhyi1XknGA+KM8GVxc4Ymen1ZGpIk4vliQ+M0EZfljEuHnuvGGJfEu3LuZ4k/aLTrhMNFQzGbA3G3AqKoXSKL4ozmpXRvlh5VHwPrxWrCL8ohtG5riT9qniCeKv4XmDkmIGVZSzlwz4r+TYTPCgeuNYO22pkM/v9Qbb7fy3pzyO/54vsbozPJSjOyK8GjHH3MsZq8N7ABDOwcjSyCa+UD08MicY5xXbGsHbansXs1+PG8VvFWWqfGsNLirOyRnFGdujnP+SjpL8UA2yRYJ+QGAFWjjGWD/etFQPR2vag69kSHQzGbA3G7NLXjHGnOsNr141ikA35e7kNslZ21ytxAQKsHMFo3NTLF1l3ruU46M5V39qHT7I7KRqbR8Wf9ZeB43xS/Pud4pYHJECAlaHR+MuHW6vE4+3KddANBmPmXnfys6Z3U++N4i0Ll5YUpXh/3W+Kf8+b4buEIQiwMpRQPvQQlOega/H+twZjnmrbMj5F267ZU7sz+3x8GWsqs9hRIsDKEIzGtQiwxmBMKZYOcwTutYZ1svVpDcbsM9/7fum47TFaKzZlDA2x94odnjcDx8GFCLDxa1RO+VB6e7BMJddBwuIM2+q979Lo22WlnjTd2deuR8UQu+SesX0/K5YUZwnGwhkIsPELRuNazWYWBmNulGf2tV3lITXPn2V//0srG1vaNncMuSa29VGEmDsCbPyC0bhW5UOL2eLKYMxTXMtm0WLPEAl731Pu+ta90v0b+yCaO1wRYOM2l831F6sSltUFbcqHl2n07QnF/gMiEd0qPhEghW2IMRNzQICNWzAa12oGEAzG3CjPQXcmmycgUz4cp6XSXA+T4knnSoSYOQJs3Epqn29U182+wWDM7eM7vIS97wmwfo9Ke4MyMzEHBNh4UT6MWqNxjwkGY94qb/mQADvsVuc9RfqYD+KaoykCbLyC0biUD49rVP5scpFx2yVbJh7vk1h6ygwBNl4llQ9rWyvQ4oDjPQPi+tdlVko7C5Pi0lNW90dOGgE2TqWVD4PBmFJd3YeeAbLfgEL58DxLgzFvxfWw5AiwcQpG41odxEp9VlaXhWxOHnLOvlaO267BSuk6EreuxBJeyRFg41Ra+bD0tQJ3BYMxvVcSoXw4nMXs/2fxYMykCLDxoXwY5Tro1lY+9N5+LazeM7oSEyLAxicYjUv58DirpaNagzH77H8enit/1GSt4avVd/mg+p+C7YYAGx+LQLC6iF/Do0Z2BYMxvW8FoHyYjtV7tzQad3IIsHGxKh9a3UBb083LNSwdRfkwLav37krMwpIgwMYlGI1bUvkwV8mrhjCmfJjWvdI8aqXL0mjcSSHAxqW08mHpjxrZZXHzMuXD8ll9fszCEiDAxsOyfGihpFb/YxrZrCTi2XFG+dDGynDsYDj2JBBg4xGMxrU4iM1UV/kwGI2b894vyodpWM6gP4olpgYhwMaD8mFdj07xvhWA8qGNtfH4wXj8qhFg40D5MIZtazDuMTWsJEL50I71NUyrUvwkEGDjEIzGtSoflt5uvisYjUv5sB6p10XcdSWWl7oYATYOpZUPLdQUYJQP67I2Hp9Z2IUIsPwoH+Z73IfVtTy6D3EOAuxC3+XeARRVwmpUV/mwhtmkZ/lwof5y16PqXah2pdgxaOVK8d/W2nAbVSLA8itpRlPDahVbM8XHvafmff3Js3x4o8P3y92Kg/ClFsq3BmixKCHmtVBZ5cNgMOZGeR64WMPsy7N8uNDxm70tVjOZikXuHSgRAZZXMBrXqnxosVoF5cPLeZYPw4m/Z2a0/dpxQ/MFCLC8KB/mKZs0srmWV2v5sNFp5db3oiHhUhYnh9UjwPIpbTWLYDCm92K3WzWEsWf5MJzxe5dG+zAFi9w7UBoCLJ+SSlhz1VU+DAZjet8KMLby4RY35l6uyb0DpSHA8impfBgMxpTytF3XEsYLp+0Hnd9oFNLvxiQ0uXegNARYHqWVDy3C1nu1iq1gNK53gHld/woX/JlP4mB8CRo5zkSA5VFa+bD0xW53lTTz7bN/AmRVPpzr8ht4Q8L9mAo6OM9EgOVR0kE0GIwp5Vs6qqT77vp4zb6G3NcVUu3EhDS5d6A0BJg/yof5yoc1dB9KPgE2dKWSKxFi57I4uaoaAeavpPKh1YylNRjzmJnsZr4rg3H7eJUPU6yqERKMMQZcmxopAsyX1fp7ks1BtJYZi2Q38/W+j23MzRv7PqqOg7/ntSmug52BAPO1NBzb4izcIsByPWxxaTRujQEWlG7mzfqI56kh8N0QYH4aST/n3okzlHat7pCl6ri+4FU+DAnHulb5swpCZaQIMD/WB+7UB4mSrtUdMpf0q/H4XjxmX0Na57u8V/nXwixO5JAAAebj2HOUUlgkHMuq4cG7fDiT/fW2nAG2MtiGRcmv5DJik3sH0I8AsxfkUzoMCceqoXw4UzzAW584eM0w9j8Ti1sRrJqMrlTuKvVN7h1APwLM1lLSH07b+lHpZmFW7eatwbhdvMJra+mwjf3PpDXYhuVMKRiObanJvQPoR4DZmCnONiyvvXS50fBrYV2P6UjBa/a1UOwM9Hy+0pXsFyb26j608qPKDIMm9w6gHwGWXlAs7ViEwDEfFGceQ0Ks1OaNmWKI/KU8HYc/y24m5lE+DLJ/30q8FubdgZjj+XjFIsDSaBT/ca4VS4Y5u5Y+vOxHuPDPl7ROoxQPMK3iz5z7NoVfFU8gmsTjepQPg8GYObaRmvctADnukSzWu+fn59z7UJrFy3/nigeqhcb7OPCNYnCsFP9hrI78/pmk/xrsxxcNP3g1eg2GhV7f+7He3/Wg1/d+rWEzpkd9e1L0w8Dx9jWS/kk43iE/Kd+TCC7hfYB857y9ohFg55lL+jv3TlzoQcfLIZ8l/Waw7X9peMt3K7tluKz9osuvkV1L+nPn+1M+x3O18ntvLfbfSiO/YJdipaL0m75dUUI8T4k1/K32hN8TDLa7UZr7lUptw5aGlU+t7/2yuuevzwelvWfREte/Ru673DtQmKAy6/inaGRTCk117WuqZ6bW17+C/K/ZBvmu4H+pUmaKk8UMDFs1rTxfi/3uw43Sn6XnqCp8UhknJAvn7a2ct1c8AgxbwWBMiwPulFjf+9X1vLcnSXeJt9OlhHJ8k3sHcBgBBmn85cOpsi4fdoXIjcF2ugSHbQzRyL/DdeW8veIRYJDszoatV6eo2UK25cNG3avOty9fTwm31WXs6yPmuP61zrDNohFgkGwOJBarRUyJdflw2fHaV71+Zh6z5zGXEQmwAhBgmMumVNIajDklluXDvtb5m57/t/JR473OtHDensd1x+oQYAhG43L963L7JxWpy4dBb1vn9+/Xu395zdrSYRuXSPlQz1PQ7HQBAgyUD8cn7H2f+mSgq3S37HjNYxZ2rfG11C8ybJMAuwABNm0LUT4cI8vyYV/rfFdIptxun/caXzPHIsM2Vxm2WTwCbNqC0bit0bhTYF0+7Jp9tepeBf1RsbHD2tJhG+fwDtSNqFhchACbNot/qF/FIyGGCHvfpywfNuq+tnOoVNgm3H6fK41nfcSZ/J8usXLeXjUIsOnaX6YoFZo3hrEsHy47XrvT4bP/W9nfEyaN58bmRYZtrjJsswoE2HSV+uTlmlmWD09pne/TJtqHQz5pHC31Oa7H8W/mQgTYdFE+HJ+w932bcOyuGff2gafHeK2oEpy2c4h3gD2IfzMXI8CmKYjy4Rh5lw9PDaa14oHWWu6VORbyf7RM67y9qhBg0xQMxuxrxcZp9suHKe+lW6i7db49YwyPWdh75Z2FUT4sDAE2PY1sVhm4FaWQIfZnHykDo2tmc+7n5XWgDU7b6ZKjfLh23mZVCLDpoXljnKwW720k/djx+rkB+Sjpy+C9Oe6j8iyk23WDt7XWeXvVIcCmx+I6A+XDYYK+vfbyRelms12f950u625sh+3KyXJcC8tRPmwzbLMqBNi0NLI5yyS8hgl737eJxp11jD1k/JV8Fvj1Xh+x7xYDSylPUiaLAJsWyofj0+jba5L7q8IP0dc63w4Ys8ZmDqub+g9pnbdXJQJsWqwCbGU07hQs975PGRD7Y0vDD5xeJyueZcTguC0p7UnKpL17fn7OvQ/wY/FhPyjPRfcazBS70HbP/r9XmtLSQtJfHa+nGP9W3Y0hqf1b9oE5l/S38Tb2/SRmYEkwA5uOhdG4K6Nxp+CzfJs3Uo3fJhjjFMFhG94NI+fef4cDCLDpWBiNy4P4LjOT3b1fjdK0zve5lU8zx4+yXR9xprgGoyevZbkmgQCbDqsyHwF2mf3Z16Wt7X1j70s5vlRHS32O2RcBlhABNh2N0bgE2Pm6Zl9twrFDx+upxrcar0+QTUt912dg7Ua0zidFgE2HxUP6PJ4TVaP92dfQ1vZdFq3zXdbyeVrze9l0z+5/BtY2YvaVHAE2DY3RuMy+ztd15r9MOH7XrKJNOP6uUlvqc8y+lmL2lRwBNg1N7h3A/7uR3exroe6ZttWZfyufWfgHpW1C8p59PYjOQxMEGOBnobddb8uE44eO16yXLGoNx94VEo2TY/aV+zln1SLAAD/7M6GUs69G3S3hqcbv43Vd55PSNHN4z75+F/dKmiHAAB9LvS3vLROOHzpee5D9wXOt2KLvYehMppH0a4L9ONWT0n7G2EOAYQjPFcNLttDbA+ed0s6Oug7uXrOj1mk7YeCfbxPswzmCaNwwRYBhCIvW/NrM1H3gTHldJOhtWcxzyaJWPs0cV7o8xK5l8yTyPl/EUxrMEWAYioV8D2v19hlsvyvtLQg5Z19brdN2wgV/pu8kwspGNG64IMCmYWU4NgHWb6m3axJulPa6yELdM+E24TZO4bW9jzr/tpBWvo0b16J06IIAmw6rxVcXRuOWLqi7YSAo7cEtdLz2RbG5wtO9YtOIh+UZv/daPo9+2fpF3ODvhgCbDqt/VN6PYi/BXN0lvP8o7Wy4UZ7W+T5eZctrndZA5F06/CKWi3JFgE3Hymhcq7XqSjVXfK/3S1Z3St9SHTpe82id73Mrn2aOU//O3cqvdPggrnu5I8Cmw7IjKhiOXZK+8HqQ3YK0+3LOAB7l13m3PPLrN/LrOtwoltK57uXs3fOzxVPmMVL3smt9/0H+113GpC+8nl5+bZ14e0HSHx3byn1v3lzS307b+pe6Z5tBb98bK0+K4cV1rwyYgU2L5dl5azj22B0Kr4Vsgn1ss68tz2aOrveg7/qjBcIrMwJsWiyvUXzUNK+FBR0OL4uD20LjaJ3v0zpt50d921LfqPuzsEB4jQABNi2Psp+F5S5heVoqlqo8w0saT+t8n9ZxW+HlvzP5NW0QXiPBNbBpWuvt6hCp3Kn+e8O2B8uuJgHrg9tM0n87Xu+7HpRLq+4W/9Se9Drz8ljajPAaEWZg02RZ6vuo8ZSyLFwrngDkCC+p+7pPztb5Pq3Tdt4rfh6E1wQRYNN0r7higJVPqi/EtrOuP9VdpnpQbCCwPriFjtfG0LyxbyW71V/2eZQNvT5fnIEAm64bxesmVmoKsc+KZ/l9SxJ9lV234a6gt6XfJ4131fMxBuslvD5fnIkAm7Yg+xBbqdzGjqB40PpN/Wf5v8hv8dbQ8VrrtO1LtLl3IIH/iMV5R4smDkj2F9yfFA++Y50p7AuKHYaHGl02igc2r5JS3w3CY7+B/Fa+i+mm8qT4+a4y7wcOYAYGKR6wLa+JvVe8drTSeDsUG8WS16Nia/yh8Ppd/tdDupo3vmrc4SWVOQu702tnI0aMGRh2LdT9AMbUHhTD4lZ5SzNzxZ856LQutjvFIPG+kF9K63yftez/TqXwpDjzruXaXfUIMOybKf4j/tlpe18VD8Ir2QfDNrC2/z31oLp9CGVrsE+nWOrts8U2Ov/Bjrks1f1stDH5qtdmHRSCAEOfRvHA43Ez6q4HxYPINszudf4srdHrwX2hGMqX3CeUO7i21nobtj8p/36dqpH0T+6d6LHR63JgKAwBhmMa5QmynL4qlpFWmfdD6l91vlFZnXFja+agXFgBmjhwzFrxIPq9YqOH182p3h4Uf77vNa7us9DxWquywksaz2zxSbE1vhHhVTxmYLjEXPHAupDPEj5W7hRnBrca57WPUlvn+6yVr5ljoxii205TVOC73DuAIt3rta27UQyy7deYu822awZuv8Z+ICu1db7Prfyag7buFIOrdd4uHDADQ2qN4sxh2+nXKE+obRSD9l6vHY5jD6xdpbfOd2nk18zBwrsTwAwMqa1fvvZX3VgoHpTnO/+VLg+4jV5nIttw2v53dcF4Y9M1+9o+jHThuB+pbeRzQvNe5S5hhhMxA8MYbUNuaxtOU7LWuMuxJfii7iYYVIIAA8bnWnHpLQxXasMLTkAJERifrvLhneoojUqxBNr1QFALQfF+L1SIGRgwLo26Gx1qmkk08mvmKGnJLZyJG5mBcVl2vHanesJLij/Lg9O2rsR1sGoRYMB4zBSvf+2rccUIz58pOG4LjggwYDyC3j75eaNyHgR6jlu93hZg7aMoI1aJAAPGo6t5o8bZlxRvjfAM5qXjtuCEJg5gHLpa50tcdf4cfWs9Wqj9vZwkZmDAOHTNvnI/sdravfyaOd6La2HVYQYG5Neo/tb5PkFvn3dmhZb6yjADA/JbdrxWW+t8H89mjiuVvY4k9hBgQF59rfOt837k4t3M0VWqRaEIMCCvz3rbOv+k6QSY5Puz/ijKiNUgwIC8QsdrNd73dchK8fqUl+C4LRgiwIB8grofmVLrvV+HeP7MlBErQRcikM+9pA97r021U67vCdRWftK0yrRVYgYG5LHQ2/CSplc+3HpUfAClF2ZhFSDAgDyWPa+3jvswNq3jtj4orgSCghFggL+Fuh/o+KRYVpyqlXybOZiFFY4AA/yFntenWj7c1Tpu65PitTcUigADfDWKB84uK7/dGK3WeXvMwgpGgAG+lgd+beW0D2O2lvTVcXvBcVtIjAAD/DTqn309aRprH56iddzWlbqX8kIBCDDAT3vg16bcvLHvVjRz4AQEGOBjoe7Owy0C7Fut47Y+apo3jxePAAN8LI/8es0PrrxE67w9ZmEFIsAAe9c6PPuSuP61b634TDQvQbTUF4cAA2zNdNpCtWvj/ShR67it96KZozgEGGDrs7pXnMdxrfye1iwdL/NiZAgwwM5c0q+5d6JwreO2rhSbbVAIAgywc84zrlhYtpv3s9GC8/YwAAEG2Pis440buxqj/SjdWr7NHJ/EZ1EMAgxIby7ptwv+DLq1ztsLztvDhXgiM5DWTPGm5EsaN74X94N1aST947i9qT4VuzjMwIC0Wl3edUgbd7e18/auxCysCMzAgHRa9S/WewrO/Pt5H6geRFl39JiBAWl81rDwkuKZP0savZVjhYwPYkY8egQYMNxnnd+00Wcpzvz3LTJt17uFH2ciwIBhWqULLykuabQSIbYrZNrulVidY9S4BgZcZqb43Kpz7vU6x5PizGPqj1lZSPor8z78JP9WfpyAGRhwvmvFzjir8JLiTOxvTXsGMNM4guNGdCWOEgEGnK5RLO/9qRgwHn5VDMvgtL2xmCu+12NYCPm9pD807ZOJUaKECBy3UAyQoV2GQ20UZwO3qvvxK0vFxhivk4RzbBT371bcdJ4dAQZ0myuG1rXGMQvY96B4EF29fJVu+34HjTO4unxVfO/vVcdnUBwCDHi10GsbeykH0a0HxQPpUuOdnTX6thQ6V7zOZXkt0dNG8b1/1OtnAUMEGPBqqfKf3/UvjXc2sFD+jkJP73LvQO2+y70DwIiscu9AAuvcO3DAWtJ/cu8E6sEMDABQJNroAQBFIsAAAEUiwAAARSLAAABFIsAAAEUiwAAARSLAAABFIsAAAEUiwAAARSLAAABFIsAAAEUiwAAARSLAAABFIsAAAEUiwAAARSLAAABFIsAAAEUiwAAARSLAAABFIsAAAEUiwAAARSLAAABFIsAAAEUiwAAARSLAAABFIsAAAEUiwAAARSLAAABFIsAAAEUiwAAARSLAAABFIsAAAEUiwAAARSLAAABFIsAAAEX6P0yC87eXHw4EAAAAAElFTkSuQmCC"></image>
</defs>
</svg>
                    </div>
                  </div></div><div
              class="footer-block"
              
            ><div class="hide-on-mobile">
                    





<div
  class="footer-block--newsletter"
  
>
  
    <div class="footer-block__newsletter">
  
    <div class="footer-block__heading inline-richtext h4">
      hey beautiful, <br>lets connect
    </div>
  


      <div class="klaviyo-form-VPfjGj"></div>
    </div></div>

                  </div></div><div
              class="footer-block  footer-block--menu"
              
            ></div><div
              class="footer-block  footer-block--menu"
              
            ></div><div
              class="footer-block  footer-block--menu"
              
            ></div></div></div><div class="footer__content-bottom">
    <div class="footer__content-bottom-wrapper page-width"><div class="hide-on-mobile">

<ul class="list-unstyled list-social footer__list-social-wrapper" role="list"><li class="list-social__item">
      <a href="https://www.instagram.com/hudabeauty/" target="_blank">
        <span>
          <svg aria-hidden="true" width="30" height="30" viewbox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 20C0 8.95431 8.95431 0 20 0C31.0457 0 40 8.95431 40 20C40 31.0457 31.0457 40 20 40C8.95431 40 0 31.0457 0 20Z" fill="white"/>
<path d="M15.0302 8.08393C13.7534 8.14417 12.8815 8.34793 12.1193 8.64745C11.3304 8.95489 10.6617 9.36745 9.99646 10.0351C9.33118 10.7028 8.9215 11.3719 8.61622 12.162C8.32078 12.9259 8.12062 13.7986 8.06422 15.0761C8.00782 16.3536 7.99534 16.7642 8.00158 20.023C8.00782 23.2817 8.02222 23.6902 8.08414 24.9703C8.1451 26.2469 8.34814 27.1186 8.64766 27.881C8.95558 28.6699 9.36766 29.3383 10.0356 30.0038C10.7035 30.6694 11.3721 31.0781 12.1641 31.3838C12.9273 31.6788 13.8002 31.8799 15.0775 31.9358C16.3548 31.9918 16.7659 32.0047 20.0237 31.9985C23.2814 31.9922 23.6916 31.9778 24.9715 31.9171C26.2514 31.8564 27.1185 31.6519 27.8813 31.3538C28.6701 31.0452 29.339 30.6338 30.0041 29.9657C30.6691 29.2975 31.0785 28.6279 31.3836 27.8374C31.6793 27.0742 31.8801 26.2013 31.9356 24.925C31.9915 23.6441 32.0047 23.2351 31.9985 19.9769C31.9922 16.7186 31.9776 16.3102 31.9169 15.0305C31.8561 13.7508 31.6529 12.8818 31.3536 12.1188C31.0452 11.3299 30.6336 10.662 29.9659 9.99601C29.2982 9.33001 28.6281 8.92081 27.8378 8.61649C27.0741 8.32105 26.2017 8.11969 24.9245 8.06449C23.6472 8.00929 23.2361 7.99513 19.9771 8.00137C16.7181 8.00761 16.3101 8.02153 15.0302 8.08393ZM15.1704 29.777C14.0004 29.7262 13.3651 29.5318 12.9417 29.369C12.3811 29.153 11.9817 28.8919 11.5598 28.4741C11.1379 28.0562 10.8787 27.6554 10.6598 27.096C10.4954 26.6726 10.2974 26.0381 10.2427 24.8681C10.1832 23.6035 10.1707 23.2238 10.1637 20.0201C10.1568 16.8163 10.169 16.4371 10.2245 15.1721C10.2744 14.003 10.47 13.367 10.6325 12.9439C10.8485 12.3826 11.1086 11.9839 11.5274 11.5622C11.9462 11.1406 12.3458 10.8809 12.9057 10.662C13.3286 10.4969 13.9632 10.3006 15.1327 10.2449C16.3982 10.1849 16.7774 10.1729 19.9807 10.1659C23.184 10.159 23.5641 10.171 24.8301 10.2266C25.9992 10.2775 26.6354 10.4712 27.0581 10.6346C27.6189 10.8506 28.0181 11.1101 28.4397 11.5296C28.8614 11.9491 29.1213 12.3473 29.3402 12.9084C29.5056 13.3301 29.7019 13.9644 29.7571 15.1346C29.8173 16.4002 29.831 16.7796 29.8368 19.9826C29.8425 23.1857 29.8313 23.5661 29.7758 24.8306C29.7247 26.0006 29.5308 26.6362 29.3678 27.06C29.1518 27.6204 28.8914 28.02 28.4724 28.4414C28.0533 28.8629 27.6542 29.1226 27.0941 29.3414C26.6717 29.5063 26.0364 29.7031 24.8678 29.7588C23.6023 29.8183 23.2231 29.8308 20.0186 29.8378C16.8141 29.8447 16.4361 29.8318 15.1706 29.777M24.953 13.5864C24.9535 13.8712 25.0384 14.1495 25.1971 14.3861C25.3557 14.6226 25.5809 14.8068 25.8443 14.9154C26.1076 15.0239 26.3972 15.0519 26.6765 14.9958C26.9557 14.9398 27.2121 14.8021 27.4131 14.6004C27.6141 14.3986 27.7508 14.1417 27.8059 13.8623C27.8609 13.5828 27.8318 13.2933 27.7223 13.0304C27.6128 12.7675 27.4278 12.5429 27.1907 12.3851C26.9536 12.2273 26.675 12.1434 26.3901 12.144C26.0083 12.1448 25.6424 12.2971 25.3729 12.5676C25.1034 12.8381 24.9524 13.2046 24.953 13.5864ZM13.8386 20.0119C13.8453 23.4151 16.6092 26.1677 20.0117 26.1612C23.4141 26.1547 26.1686 23.3911 26.1621 19.9879C26.1557 16.5847 23.3911 13.8314 19.9881 13.8382C16.5852 13.8449 13.8321 16.6092 13.8386 20.0119ZM16.0001 20.0076C15.9985 19.2165 16.2316 18.4426 16.6698 17.784C17.108 17.1253 17.7317 16.6113 18.4621 16.3071C19.1924 16.0029 19.9965 15.9221 20.7727 16.0749C21.549 16.2277 22.2625 16.6073 22.823 17.1656C23.3835 17.7239 23.7659 18.4359 23.9218 19.2115C24.0777 19.9872 24.0001 20.7916 23.6987 21.5231C23.3974 22.2547 22.886 22.8804 22.229 23.3212C21.5721 23.7621 20.7992 23.9982 20.0081 23.9998C19.4827 24.0009 18.9624 23.8985 18.4766 23.6984C17.9909 23.4984 17.5493 23.2046 17.1771 22.8339C16.8049 22.4632 16.5094 22.0228 16.3074 21.5378C16.1055 21.0529 16.001 20.5329 16.0001 20.0076Z" fill="#EB3986"/>
</svg>

        </span>
        <span class="visually-hidden">Instagram</span>
      </a>
    </li><li class="list-social__item">
      <a href="https://www.tiktok.com/@hudabeauty/" target="_blank">
        <span>
          <svg aria-hidden="true" width="30" height="30" viewbox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 20C0 8.95431 8.95431 0 20 0C31.0457 0 40 8.95431 40 20C40 31.0457 31.0457 40 20 40C8.95431 40 0 31.0457 0 20Z" fill="white"/>
<path d="M30.543 15.0641V17.9096C29.2012 17.9101 27.8975 17.6472 26.668 17.1285C25.8773 16.7947 25.1407 16.3646 24.467 15.8449L24.4872 24.6034C24.4788 26.5756 23.6985 28.4286 22.2863 29.8244C21.137 30.9606 19.6807 31.683 18.1023 31.9169C17.7314 31.9718 17.354 32 16.9722 32C15.2826 32 13.6784 31.4526 12.3662 30.4427C12.1193 30.2526 11.8831 30.0465 11.6583 29.8244C10.1278 28.3118 9.33856 26.2616 9.47147 24.1049C9.57285 22.4631 10.2301 20.8974 11.3259 19.6702C12.7756 18.0463 14.8037 17.145 16.9722 17.145C17.354 17.145 17.7314 17.1736 18.1023 17.2285V18.2806V21.2073C17.7506 21.0913 17.3751 21.0275 16.984 21.0275C15.0028 21.0275 13.4 22.6439 13.4296 24.6265C13.4484 25.8951 14.1414 27.004 15.1634 27.6152C15.6437 27.9025 16.1962 28.0805 16.7859 28.1128C17.2479 28.1382 17.6915 28.0739 18.1023 27.9382C19.5178 27.4707 20.5389 26.1411 20.5389 24.573L20.5436 18.7079V8H24.4623C24.466 8.38829 24.5054 8.76714 24.5787 9.13425C24.8744 10.6202 25.712 11.9093 26.8777 12.7882C27.8941 13.5548 29.1598 14.0093 30.5316 14.0093L30.5429 14.0084L30.543 15.0641Z" fill="#EB3986"/>
</svg>

        </span>
        <span class="visually-hidden">TikTok</span>
      </a>
    </li><li class="list-social__item">
      <a href="https://www.youtube.com/user/hudaheidik" target="_blank">
        <span>
          <svg aria-hidden="true" width="30" height="30" viewbox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 20C0 8.95431 8.95431 0 20 0C31.0457 0 40 8.95431 40 20C40 31.0457 31.0457 40 20 40C8.95431 40 0 31.0457 0 20Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.5226 22.7272L24.0044 19.326L17.5226 15.884V22.7272ZM20 11C21.4999 11 22.9485 11.0204 24.3457 11.0612C25.743 11.102 26.7675 11.1451 27.4192 11.1905L28.3969 11.2449C28.4058 11.2449 28.4817 11.2517 28.6245 11.2653C28.7674 11.2789 28.87 11.2925 28.9325 11.3061C28.995 11.3197 29.0999 11.3401 29.2473 11.3673C29.3946 11.3945 29.5218 11.4308 29.6289 11.4762C29.7361 11.5215 29.8611 11.5805 30.0039 11.653C30.1468 11.7256 30.2851 11.814 30.4191 11.9183C30.553 12.0226 30.6824 12.1428 30.8074 12.2788C30.861 12.3333 30.9302 12.4172 31.015 12.5305C31.0998 12.6439 31.2293 12.9092 31.4034 13.3264C31.5775 13.7436 31.6958 14.2016 31.7583 14.7005C31.8297 15.2809 31.8855 15.9 31.9257 16.5575C31.9659 17.2151 31.9904 17.7298 31.9993 18.1016V20.4961C32.0083 21.8112 31.9279 23.1263 31.7583 24.4414C31.6958 24.9403 31.5842 25.3915 31.4235 25.7951C31.2628 26.1987 31.1199 26.4776 30.9949 26.6318L30.8074 26.8631C30.6824 26.9991 30.553 27.1193 30.4191 27.2236C30.2851 27.3279 30.1468 27.414 30.0039 27.4821C29.8611 27.5501 29.7361 27.6068 29.6289 27.6521C29.5218 27.6975 29.3946 27.7338 29.2473 27.761C29.0999 27.7882 28.9928 27.8086 28.9258 27.8222C28.8589 27.8358 28.7562 27.8494 28.6178 27.863C28.4794 27.8766 28.4058 27.8834 28.3969 27.8834C26.1559 28.0557 23.357 28.1419 20 28.1419C18.1519 28.1238 16.5471 28.0943 15.1855 28.0535C13.824 28.0127 12.929 27.9786 12.5004 27.9514L11.8442 27.897L11.3621 27.8426C11.0407 27.7972 10.7974 27.7519 10.6322 27.7066C10.467 27.6612 10.2394 27.566 9.94922 27.4209C9.65906 27.2757 9.40684 27.0898 9.19257 26.8631C9.139 26.8086 9.06981 26.7247 8.98499 26.6114C8.90017 26.498 8.77072 26.2327 8.59662 25.8155C8.42252 25.3983 8.30422 24.9403 8.24173 24.4414C8.1703 23.861 8.1145 23.242 8.07433 22.5844C8.03415 21.9268 8.0096 21.4121 8.00067 21.0403V18.6458C7.99174 17.3307 8.07209 16.0156 8.24173 14.7005C8.30422 14.2016 8.41582 13.7504 8.57653 13.3468C8.73724 12.9432 8.88008 12.6643 9.00508 12.5101L9.19257 12.2788C9.31756 12.1428 9.44702 12.0226 9.58094 11.9183C9.71486 11.814 9.85324 11.7256 9.99609 11.653C10.1389 11.5805 10.2639 11.5215 10.3711 11.4762C10.4782 11.4308 10.6054 11.3945 10.7527 11.3673C10.9001 11.3401 11.005 11.3197 11.0675 11.3061C11.13 11.2925 11.2326 11.2789 11.3755 11.2653C11.5183 11.2517 11.5942 11.2449 11.6031 11.2449C13.8441 11.0816 16.643 11 20 11Z" fill="#EB3986"/>
</svg>

        </span>
        <span class="visually-hidden">YouTube</span>
      </a>
    </li><li class="list-social__item">
      <a href="https://www.facebook.com/hudabeauty/" target="_blank">
        <span>
          <svg aria-hidden="true" width="30" height="30" viewbox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 20C0 8.95431 8.95431 0 20 0C31.0457 0 40 8.95431 40 20C40 31.0457 31.0457 40 20 40C8.95431 40 0 31.0457 0 20Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.9495 32V21.0525H25.805L26.3822 16.786H21.9495V14.0621C21.9495 12.8268 22.3093 11.9851 24.1679 11.9851L26.5383 11.984V8.1681C26.1282 8.1162 24.7212 8 23.0843 8C19.6667 8 17.327 9.98824 17.327 13.6397V16.786H13.4618V21.0525H17.327V32H21.9495Z" fill="#EB3986"/>
</svg>

        </span>
        <span class="visually-hidden">Facebook</span>
      </a>
    </li><li class="list-social__item">
      <a href="https://www.snapchat.com/add/hudabeauty" target="_blank">
        <span>
          <svg aria-hidden="true" width="30" height="30" viewbox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 20C0 8.95431 8.95431 0 20 0C31.0457 0 40 8.95431 40 20C40 31.0457 31.0457 40 20 40C8.95431 40 0 31.0457 0 20Z" fill="white"/>
<path d="M31.7584 26.252C28.3179 25.6855 26.7771 22.1707 26.7135 22.0207L26.7063 22.0075C26.6085 21.8477 26.5469 21.6684 26.5257 21.4822C26.5046 21.2961 26.5244 21.1076 26.5839 20.9299C26.8143 20.3851 27.5799 20.1427 28.0851 19.9819C28.2123 19.9423 28.3311 19.9039 28.4247 19.8667C29.3403 19.5067 29.5263 19.1311 29.5215 18.8803C29.4975 18.7243 29.4276 18.5791 29.3208 18.4631C29.2139 18.347 29.0749 18.2654 28.9215 18.2286L28.9131 18.2262C28.7774 18.1714 28.6323 18.1432 28.4859 18.1434C28.3567 18.1416 28.2287 18.1674 28.1103 18.219C27.753 18.3997 27.3636 18.5082 26.9643 18.5383C26.7338 18.5437 26.5088 18.4681 26.3283 18.3246L26.3667 17.6886L26.3715 17.6106C26.6027 15.9937 26.5047 14.3467 26.0835 12.7686C25.5866 11.6354 24.7668 10.6737 23.7266 10.0035C22.6864 9.3334 21.4719 8.98454 20.2346 9.00053L19.7522 9.00653C18.5171 8.99136 17.3049 9.34028 16.2669 10.0098C15.2288 10.6792 14.411 11.6396 13.9153 12.771C13.4935 14.3474 13.3948 15.9927 13.6249 17.6082C13.6409 17.8474 13.6553 18.0866 13.6681 18.3258C13.4691 18.4816 13.2193 18.5577 12.9673 18.5395C12.5433 18.5212 12.1282 18.4115 11.7505 18.2178C11.658 18.1769 11.5576 18.1569 11.4565 18.159C11.248 18.151 11.0423 18.2084 10.868 18.3231C10.6937 18.4378 10.5596 18.604 10.4845 18.7987C10.3861 19.3147 11.1229 19.6903 11.5717 19.8667C11.6677 19.9051 11.7853 19.9423 11.9113 19.9819C12.4177 20.1427 13.1833 20.3851 13.4137 20.9299C13.473 21.1076 13.4928 21.2961 13.4716 21.4822C13.4505 21.6684 13.3889 21.8476 13.2913 22.0075L13.2841 22.0207C12.9527 22.743 12.5208 23.4149 12.0013 24.0163C11.0575 25.1897 9.72221 25.9835 8.24045 26.252C8.17053 26.2637 8.10739 26.3007 8.06311 26.3561C8.01883 26.4114 7.99652 26.4812 8.00044 26.552C8.00315 26.6057 8.01534 26.6585 8.03644 26.708C8.24885 27.2012 9.30726 27.608 11.1001 27.8852C11.2681 27.9116 11.3377 28.1852 11.4361 28.6316C11.4745 28.8116 11.5153 28.9976 11.5717 29.1896C11.5904 29.2747 11.6401 29.3498 11.711 29.4003C11.782 29.4508 11.8692 29.4733 11.9557 29.4632C12.1271 29.4539 12.2973 29.4298 12.4645 29.3912C12.9061 29.2948 13.3565 29.2437 13.8085 29.2388C14.1338 29.2394 14.4585 29.2667 14.7793 29.3204C15.4562 29.4918 16.0857 29.8134 16.6214 30.2612C17.5255 31.0333 18.6617 31.481 19.8494 31.5332C19.889 31.5332 19.9298 31.532 19.9694 31.5284C20.0174 31.5308 20.0834 31.5332 20.1506 31.5332C21.3391 31.4811 22.4761 31.0334 23.381 30.2612C23.9159 29.8135 24.5446 29.492 25.2207 29.3204C25.5411 29.2668 25.8654 29.2396 26.1903 29.2388C26.642 29.241 27.0922 29.2889 27.5343 29.3816C27.7021 29.418 27.8727 29.4393 28.0443 29.4452H28.0731C28.1541 29.4516 28.2347 29.4284 28.2998 29.3798C28.3649 29.3313 28.4102 29.2607 28.4271 29.1812C28.4794 28.9981 28.5251 28.8132 28.5639 28.6268C28.6611 28.1816 28.7319 27.9092 28.8999 27.8828C30.6927 27.6068 31.7523 27.1988 31.9612 26.7092C31.983 26.6598 31.996 26.607 31.9996 26.5532C32.0035 26.4824 31.9812 26.4126 31.9369 26.3573C31.8926 26.3019 31.8295 26.2649 31.7596 26.2532L31.7584 26.252Z" fill="#EB3986"/>
</svg>

        </span>
        <span class="visually-hidden">Snapchat</span>
      </a>
    </li></ul>
</div><div class="caption">
        <small class="copyright__content">
          &copy; 2026
          Huda Beauty, All Rights Reserved.
        </small>
      </div>
    </div>
  </div>
</footer>


</div>
<!-- END sections: footer-group -->

    <ul hidden>
      <li id="a11y-refresh-page-message">Choosing a selection results in a full page refresh.</li>
      <li id="a11y-new-window-message">Opens in a new window.</li>
    </ul>

    <script>
      window.shopUrl = 'https://hudabeauty.com';
      window.routes = {
        cart_add_url: '/en-fr/cart/add',
        cart_change_url: '/en-fr/cart/change',
        cart_update_url: '/en-fr/cart/update',
        cart_url: '/en-fr/cart',
        predictive_search_url: '/en-fr/search/suggest',
      };

      window.cartStrings = {
        error: `There was an error while updating your cart. Please try again.`,
        quantityError: `You can only add [quantity] of this item to your cart.`,
        maxInCartError: `The maximum quantity of this item is already in your cart.`,
        outOfStockError: `You already have all available stock of this item in your cart.`,
        limitExceededError: `Only [availableToAdd] item(s) can be added due to availability.`,
        processing: `Processing...`,
      };

      window.variantStrings = {
        addToCart: `Add to cart`,
        addToBag: `Add to Bag`,
        adding: `Adding...`,
        soldOut: `Sold out`,
        outOfStock: `Out of stock`,
        unavailable: `Unavailable`,
        unavailable_with_option: `[value] - Unavailable`,
        addToBagShort: `Add`,
        undertoneLabel: ` with [value]  Undertones`,
        hazmatRestrictedMessage: `This product cannot be added due to shipping restrictions.`,
        notifyDisclaimerHtml: `By entering your email address you are agreeing to receive marketing emails from Huda Beauty. We do not share your personal information and you can unsubscribe at anytime. Please review our <a class="privacy-policy-url" href="https://hudabeauty.com/pages/privacy-notice">Privacy Policy.</a>`,
      };

      window.forceOutOfStockHandles = ["easy-bake-pressed-powder-phone-grip-hb01821m","press-puff-pop-kit-set_118","the-ultimate-pressed-undereye-routine-set_123","the-ultimate-pressed-phone-grip-routine-set_122"];
      window.getStockStatusLabel = (() => {
        const forcedOutOfStockHandles = new Set(
          Array.isArray(window.forceOutOfStockHandles)
            ? window.forceOutOfStockHandles.map((handle) => (handle ?? '').trim()).filter(Boolean)
            : []
        );

        return (productHandle) => {
          const normalizedHandle = (productHandle ?? '').trim();
          if (normalizedHandle && forcedOutOfStockHandles.has(normalizedHandle)) {
            return window.variantStrings?.outOfStock;
          }
          return window.variantStrings?.soldOut;
        };
      })();

      window.quickOrderListStrings = {
        itemsAdded: `[quantity] items added`,
        itemAdded: `[quantity] item added`,
        itemsRemoved: `[quantity] items removed`,
        itemRemoved: `[quantity] item removed`,
        viewCart: `View cart`,
        each: `[money]/ea`,
        min_error: `This item has a minimum of [min]`,
        max_error: `This item has a maximum of [max]`,
        step_error: `You can only add this item in increments of [step]`,
      };

      window.accessibilityStrings = {
        imageAvailable: `Image [index] is now available in gallery view`,
        shareSuccess: `Link copied to clipboard`,
        pauseSlideshow: `Pause slideshow`,
        playSlideshow: `Play slideshow`,
        recipientFormExpanded: `Gift card recipient form expanded`,
        recipientFormCollapsed: `Gift card recipient form collapsed`,
        countrySelectorSearchCount: `[count] countries/regions found`,
      };
    </script><script src="//hudabeauty.com/cdn/shop/t/162/assets/predictive-search.js?v=128064398077392996521775984106" defer="defer"></script><script src="//hudabeauty.com/cdn/shop/t/162/assets/cart-drawer.js?v=177164935058737482931775984105" defer="defer"></script>
    

<script type="application/json" samples-products>
  {
    "huda": [
      
      
      
        

        
          
          {
            "id": 10315470209302,
            "handle": "easy-bake-loose-powder-blister-6-x-0-15g-2025-hb01465",
            "available": true,
            "variantId": 50790723289366
          }
        
      
      
    ]
  }
</script>

    
      <link href="//hudabeauty.com/cdn/shop/t/162/assets/country-change-modal.css?v=165750745566542436951775984106" rel="stylesheet" type="text/css" media="all" />

<modal-dialog id="CountryChangeModal" class="country-change-modal">
  <div
    role="dialog"
    aria-modal="true"
    aria-labelledby="country-change-title"
    aria-describedby="country-change-copy"
    class="country-change-modal__content"
    tabindex="-1"
  >
    <button
      id="ModalClose-country-change"
      type="button"
      class="country-change-modal__toggle"
      aria-label="Close"
    ><svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" class="icon icon-close" viewbox="0 0 18 17"><path fill="currentColor" d="M.865 15.978a.5.5 0 0 0 .707.707l7.433-7.431 7.579 7.282a.501.501 0 0 0 .846-.37.5.5 0 0 0-.153-.351L9.712 8.546l7.417-7.416a.5.5 0 1 0-.707-.708L8.991 7.853 1.413.573a.5.5 0 1 0-.693.72l7.563 7.268z"/></svg>
</button>

    <div class="country-change-modal__content-info">
      <h4 id="country-change-title" class="country-change-title h4">
        Change country
      </h4>
      <p id="country-change-copy">You have chosen to change your country, please note the prices and products available may reflect differently in this country. Please ensure the country selected matches your delivery address.</p>

      <div class="modal__actions">
        <button type="button" class="button button--primary" data-action="confirm-country-change">
          Change country
        </button>
        <button type="button" class="button button--secondary" data-action="cancel-country-change">
          Stay on site
        </button>
      </div>
    </div>
  </div>
</modal-dialog>

    
  <div id="shopify-block-AYVh2eG5seWR6K0EzZ__6141582171523228424" class="shopify-block shopify-app-block"><script src="//cdn.shopify.com/extensions/019cf7d8-7733-7a0f-b742-b8d8882a7b95/braze-64/assets/BrazeUtilities.js" type="text/javascript"></script>

<script type="text/javascript">
  const brazeWebSDKPoller = setInterval(()=>{
    // if the conditional is false, then we don't need to poll anymore and should clear the interval
    // if the conditional is true, but readValueFromLocalStorageWithRetry doesn't exist, we should retry
    // if the conditional is true and readValueFromLocalStorageWithRetry exists we should load the script and clear the interval
    readValueFromLocalStorageWithRetry('brazeAppSettings').then((data) => {
      loadScriptTag("https://cdn.shopify.com/extensions/019cf7d8-7733-7a0f-b742-b8d8882a7b95/braze-64/assets/BrazeWebSdkScript.js", "module");
    });
    clearInterval(brazeWebSDKPoller);
  }, 2000)
</script>


</div><div id="shopify-block-AeWtjZE1LT2Irb3pva__7079518687644006178" class="shopify-block shopify-app-block"><script>
  (function () {
    const cartAttributes = {};

    // Helper function to retrieve the UTM from Url
    function getUTMFromUrl() {
      const url_string = window.location.href;
      const url = new URL(url_string);

      const utm_id = url.searchParams.get("utm_id");
      const utm_source = url.searchParams.get("utm_source");
      const utm_medium = url.searchParams.get("utm_medium");
      const utm_campaign = url.searchParams.get("utm_campaign");
      const utm_term = url.searchParams.get("utm_term");
      const ref = url.searchParams.get("ref");

      if (!utm_id && !utm_source && !utm_medium && !utm_campaign && !ref) {
        return null;
      }

      let utmParameters = {};
      
        if (utm_id) {
          utmParameters.utm_id = utm_id;
        }
        if (utm_source) {
          utmParameters.utm_source = utm_source;
        }
        if (utm_medium) {
          utmParameters.utm_medium = utm_medium;
        }
        if (utm_campaign) {
          utmParameters.utm_campaign = utm_campaign;
        }
        if (utm_term) {
          utmParameters.utm_term = utm_term;
        }
        if (ref) {
          utmParameters.ref = ref;
        }
      

      return Object.keys(utmParameters).length === 0
        ? null
        : utmParameters;
    }

    // Helper function to retrieve the UTM from Cookie
    function getUTMAttributes() {
      const urlUtmParams = getUTMFromUrl();

      if (urlUtmParams) {
          return urlUtmParams;
      }

      // No longer reading from deprecated Shopify cookies
      return undefined;
    }

    function saveUtmParameters() {
      const utmParams = getUTMAttributes();
      if (utmParams) {
        const cartHasUtmAttributes = Object.keys(cartAttributes).find(attributeKey => attributeKey.startsWith("utm_") || attributeKey === "ref");
        if (cartHasUtmAttributes) {
          // Don't call API if it already contains our UTM parameters
          return;
        }

        // Handle both Shopify.routes.root and routes.root_url for better compatibility
        var rootUrl = (window.Shopify && window.Shopify.routes && window.Shopify.routes.root) 
          || (window.routes && window.routes.root_url) 
          || '/';
        
        var updateCart = fetch(rootUrl + 'cart/update.js',
        {
          headers: {
            'Content-Type': 'application/json',
          },
          method: "POST",
          body: JSON.stringify({
            attributes: {
              ...utmParams
            },
          })
        })
        .then(response => response.json())
        .then(data => {
          return data
        });
      }
    }

    saveUtmParameters();
  })();
</script>




</div><div id="shopify-block-AbGs2R0xnSVR3dGZhd__9271244056961380716" class="shopify-block shopify-app-block"><script type='module' src='https://cdn.shopify.com/extensions/019d6d90-17dc-7f8c-847b-8c206ecf4712/discount-kit-467/assets/dk_cart.js'></script>
<script type='module' src='https://cdn.shopify.com/extensions/019d6d90-17dc-7f8c-847b-8c206ecf4712/discount-kit-467/assets/dk_gift-selector.js'></script>




<!-- BEGIN app snippet: core_script -->







<script>
  // Initialize DiscountKit namespace
  window.discount_kit = window.discount_kit || {};

  // Configuration and data
  window.discount_kit.config = {
    auto_gift: true,
    gift_selector_enabled: false,
    refresh_on_cart_change: false,
    prevent_readd_removed_gifts: true,
    custom_cart_update_event: "discount_kit:cart_changed",
    cart: {"note":null,"attributes":{},"original_total_price":0,"total_price":0,"total_discount":0,"total_weight":0.0,"item_count":0,"items":[],"requires_shipping":false,"currency":"EUR","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0},
    collections: [],
    compare_at_prices: [],
    conversion_rate: 0.8560695,
    discounts: [
      
        
        
        {"id":"gid:\/\/shopify\/DiscountAutomaticNode\/1659048591638","discountType":"GWP","discountTitle":"EB-Mesh","discountStatus":"ACTIVE","discountNode":{"config":{"value":{"test":false,"discountType":"GWP","discountTitle":"EB-Mesh","matchRule":{"all":false,"type":"productSelection","include":[],"selection":[{"id":"10234761412886","variants":null},{"id":"10234743849238","variants":null}],"exclude":[],"excludeSale":false,"purchaseType":"both"},"tiers":[{"buys":{"type":"minimumQuantity","value":1},"gets":{"type":"percentage","value":100,"targetQuantity":1,"matchRule":{"all":false,"type":"productSelection","include":[],"selection":[{"id":"10234765181206","variants":null}],"exclude":[],"excludeSale":false}},"messageTranslations":null}],"customerTags":null,"customerOperator":"oneOf","locationIds":null,"locationOperator":"oneOf","marketHandles":null,"marketOperator":"oneOf","allowB2b":false,"appliesOncePerCustomer":false,"usageLimit":null,"currencyCode":null}}},"startsAt":"2025-10-19T11:12:22Z","endsAt":null}
      
    ]
  };

  // Gift products for GWP
  window.discount_kit.gift_products = [];
  
    
    
    
      window.discount_kit.gift_products.push({
        product: {"id":10234765181206,"title":"Easy Bake Sifter Without Mesh","handle":"easy-bake-sifter-without-mesh-hb01571","description":"","published_at":"2025-11-30T21:12:56+04:00","created_at":"2025-10-05T02:29:56+04:00","vendor":"Huda Beauty US","type":"","tags":["_okendo:syndication_key:easy-bake-sifter-without-mesh-hb01571","disable-atc","HB","hidden-from-search","swym-hide-addtocart"],"price":0,"price_min":0,"price_max":0,"available":false,"price_varies":false,"compare_at_price":null,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":50573547372822,"title":"Default Title","option1":"Default Title","option2":null,"option3":null,"sku":"HB01571","requires_shipping":true,"taxable":true,"featured_image":null,"available":false,"name":"Easy Bake Sifter Without Mesh","public_title":null,"options":["Default Title"],"price":0,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"","requires_selling_plan":false,"selling_plan_allocations":[],"quantity_rule":{"min":1,"max":null,"increment":1}}],"images":["\/\/hudabeauty.com\/cdn\/shop\/files\/1-EB-SIFTER-PDP-WITH-WITHOUT.jpg?v=1759616961","\/\/hudabeauty.com\/cdn\/shop\/files\/2-EB-SIFTER-PDP-STEP-BY-STEP.jpg?v=1759616961"],"featured_image":"\/\/hudabeauty.com\/cdn\/shop\/files\/1-EB-SIFTER-PDP-WITH-WITHOUT.jpg?v=1759616961","options":["Title"],"media":[{"alt":null,"id":42342132547862,"position":1,"preview_image":{"aspect_ratio":1.0,"height":2000,"width":2000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/1-EB-SIFTER-PDP-WITH-WITHOUT.jpg?v=1759616961"},"aspect_ratio":1.0,"height":2000,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/1-EB-SIFTER-PDP-WITH-WITHOUT.jpg?v=1759616961","width":2000},{"alt":null,"id":42342145917206,"position":2,"preview_image":{"aspect_ratio":1.0,"height":2000,"width":2000,"src":"\/\/hudabeauty.com\/cdn\/shop\/files\/2-EB-SIFTER-PDP-STEP-BY-STEP.jpg?v=1759616961"},"aspect_ratio":1.0,"height":2000,"media_type":"image","src":"\/\/hudabeauty.com\/cdn\/shop\/files\/2-EB-SIFTER-PDP-STEP-BY-STEP.jpg?v=1759616961","width":2000}],"requires_selling_plan":false,"selling_plan_groups":[],"content":""},
        options_with_values: [{"name":"Title","position":1,"values":["Default Title"]}]
      });
    
  
</script>

<script
  type='module'
  src='https://cdn.shopify.com/extensions/019d6d90-17dc-7f8c-847b-8c206ecf4712/discount-kit-467/assets/dk_core.js'
></script>
<!-- END app snippet -->






</div><script defer src="https://static.cloudflareinsights.com/beacon.min.js/v8c78df7c7c0f484497ecbca7046644da1771523124516" integrity="sha512-8DS7rgIrAmghBFwoOTujcf6D9rXvH8xm8JQ1Ja01h9QX8EzXldiszufYa4IFfKdLUKTTrnSFXLDkUEOTrZQ8Qg==" data-cf-beacon='{"version":"2024.11.0","token":"8bd7ae14ded34415af9141bd3bc58edb","server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>
</body>
</html>