It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: https://houseofmonac.com

  1. <!doctype html>
  2.  
  3. <html class="no-js" lang="en" dir="ltr">
  4.  <head>
  5. <!-- Google tag (gtag.js) -->
  6. <script async src="https://www.googletagmanager.com/gtag/js?id=G-QWF0043TTT"></script>
  7. <script>
  8.  window.dataLayer = window.dataLayer || [];
  9.  function gtag(){dataLayer.push(arguments);}
  10.  gtag('js', new Date());
  11.  
  12.  gtag('config', 'G-QWF0043TTT');
  13. </script>
  14. <!-- Google Tag Manager -->
  15. <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
  16. new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
  17. j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
  18. 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  19. })(window,document,'script','dataLayer','GTM-KNXFV8HZ');</script>
  20. <!-- End Google Tag Manager -->
  21.  
  22. <script>  
  23.  /**
  24.  * Author: Md Hasanuzzamna
  25.  * Email: webhasan24@gmail.com
  26.  * Linkedin: https://linkedin.com/md-h
  27.  * Version: 2.0
  28.  * Last Update: 27 Dec 2023
  29.  */
  30.  
  31.  (function() {
  32.      class Ultimate_Shopify_DataLayer {
  33.        constructor() {
  34.          window.dataLayer = window.dataLayer || [];
  35.          
  36.          // use a prefix of events name
  37.          this.eventPrefix = '';
  38.  
  39.          //Keep the value false to get non-formatted product ID
  40.          this.formattedItemId = true;
  41.  
  42.          // data schema
  43.          this.dataSchema = {
  44.            ecommerce: {
  45.                show: true
  46.            },
  47.            dynamicRemarketing: {
  48.                show: false,
  49.                business_vertical: 'retail'
  50.            }
  51.          }
  52.  
  53.          // add to wishlist selectors
  54.          this.addToWishListSelectors = {
  55.            'addWishListIcon': '',
  56.            'gridItemSelector': '',
  57.            'productLinkSelector': 'a[href*="/products/"]'
  58.          }
  59.  
  60.          // quick view selectors
  61.          this.quickViewSelector = {
  62.            'quickViewElement': '',
  63.            'gridItemSelector': '',
  64.            'productLinkSelector': 'a[href*="/products/"]'
  65.          }
  66.  
  67.          // mini cart button selector
  68.          this.miniCartButton = [
  69.            'a[href="/cart"]',
  70.          ];
  71.          this.miniCartAppersOn = 'click';
  72.  
  73.  
  74.          // begin checkout buttons/links selectors
  75.          this.beginCheckoutButtons = [
  76.            'input[name="checkout"]',
  77.            'button[name="checkout"]',
  78.            'a[href="/checkout"]',
  79.            '.additional-checkout-buttons',
  80.          ];
  81.  
  82.          // direct checkout button selector
  83.          this.shopifyDirectCheckoutButton = [
  84.            '.shopify-payment-button'
  85.          ]
  86.  
  87.          //Keep the value true if Add to Cart redirects to the cart page
  88.          this.isAddToCartRedirect = false;
  89.          
  90.          // keep the value false if cart items increment/decrement/remove refresh page
  91.          this.isAjaxCartIncrementDecrement = false;
  92.          
  93.  
  94.          // Caution: Do not modify anything below this line, as it may result in it not functioning correctly.
  95.          this.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":"USD","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0}
  96.          this.countryCode = "US";
  97.          this.collectData();  
  98.          this.storeURL = "https://houseofmonac.com";
  99.        }
  100.  
  101.        updateCart() {
  102.          fetch("/cart.js")
  103.          .then((response) => response.json())
  104.          .then((data) => {
  105.            this.cart = data;
  106.          });
  107.        }
  108.  
  109.       debounce(delay) {        
  110.          let timeoutId;
  111.          return function(func) {
  112.            const context = this;
  113.            const args = arguments;
  114.            
  115.            clearTimeout(timeoutId);
  116.            
  117.            timeoutId = setTimeout(function() {
  118.              func.apply(context, args);
  119.            }, delay);
  120.          };
  121.        }
  122.  
  123.        collectData() {
  124.            this.customerData();
  125.            this.ajaxRequestData();
  126.            this.searchPageData();
  127.            this.miniCartData();
  128.            this.beginCheckoutData();
  129.  
  130.            
  131.  
  132.            
  133.  
  134.            
  135.            
  136.            this.addToWishListData();
  137.            this.quickViewData();
  138.            this.formData();
  139.            this.phoneClickData();
  140.            this.emailClickData();
  141.        }        
  142.  
  143.        //logged in customer data
  144.        customerData() {
  145.            const currentUser = {};
  146.            
  147.  
  148.            if (currentUser.email) {
  149.              currentUser.hash_email = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
  150.            }
  151.  
  152.            window.dataLayer = window.dataLayer || [];
  153.            dataLayer.push({
  154.              customer: currentUser
  155.            });
  156.        }
  157.  
  158.        // add_to_cart, remove_from_cart, search
  159.        ajaxRequestData() {
  160.          const self = this;
  161.          
  162.          // handle non-ajax add to cart
  163.          if(this.isAddToCartRedirect) {
  164.            document.addEventListener('submit', function(event) {
  165.              const addToCartForm = event.target.closest('form[action="/cart/add"]');
  166.              if(addToCartForm) {
  167.                event.preventDefault();
  168.                
  169.                const formData = new FormData(addToCartForm);
  170.            
  171.                fetch(window.Shopify.routes.root + 'cart/add.js', {
  172.                  method: 'POST',
  173.                  body: formData
  174.                })
  175.                .then(response => {
  176.                    window.location.href = "/cart";
  177.                })
  178.                .catch((error) => {
  179.                  console.error('Error:', error);
  180.                });
  181.              }
  182.            });
  183.          }
  184.          
  185.          // fetch
  186.          let originalFetch = window.fetch;
  187.          let debounce = this.debounce(800);
  188.          
  189.          window.fetch = function () {
  190.            return originalFetch.apply(this, arguments).then((response) => {
  191.              if (response.ok) {
  192.                let cloneResponse = response.clone();
  193.                let requestURL = arguments[0];
  194.                
  195.                if(/.*\/search\/?.*\?.*q=.+/.test(requestURL) && !requestURL.includes('&requestFrom=uldt')) {  
  196.                  const queryString = requestURL.split('?')[1];
  197.                  const urlParams = new URLSearchParams(queryString);
  198.                  const search_term = urlParams.get("q");
  199.  
  200.                  debounce(function() {
  201.                    fetch(`${self.storeURL}/search/suggest.json?q=${search_term}&resources[type]=product&requestFrom=uldt`)
  202.                      .then(res => res.json())
  203.                      .then(function(data) {
  204.                            const products = data.resources.results.products;
  205.                            if(products.length) {
  206.                              const fetchRequests = products.map(product =>
  207.                                fetch(`${self.storeURL}/${product.url.split('?')[0]}.js`)
  208.                                  .then(response => response.json())
  209.                                  .catch(error => console.error('Error fetching:', error))
  210.                              );
  211.  
  212.                              Promise.all(fetchRequests)
  213.                                .then(products => {
  214.                                    const items = products.map((product) => {
  215.                                      return {
  216.                                        product_id: product.id,
  217.                                        product_title: product.title,
  218.                                        variant_id: product.variants[0].id,
  219.                                        variant_title: product.variants[0].title,
  220.                                        vendor: product.vendor,
  221.                                        total_discount: 0,
  222.                                        final_price: product.price_min,
  223.                                        product_type: product.type,
  224.                                        quantity: 1
  225.                                      }
  226.                                    });
  227.  
  228.                                    self.ecommerceDataLayer('search', {search_term, items});
  229.                                })
  230.                            }else {
  231.                              self.ecommerceDataLayer('search', {search_term, items: []});
  232.                            }
  233.                      });
  234.                  });
  235.                }
  236.                else if (requestURL.includes("/cart/add")) {
  237.                  cloneResponse.text().then((text) => {
  238.                    let data = JSON.parse(text);
  239.  
  240.                    if(data.items && Array.isArray(data.items)) {
  241.                      data.items.forEach(function(item) {
  242.                         self.ecommerceDataLayer('add_to_cart', {items: [item]});
  243.                      })
  244.                    } else {
  245.                      self.ecommerceDataLayer('add_to_carts', {items: [data]});
  246.                    }
  247.                    self.updateCart();
  248.                  });
  249.                }else if(requestURL.includes("/cart/change") || requestURL.includes("/cart/update")) {
  250.                  
  251.                   cloneResponse.text().then((text) => {
  252.                    
  253.                    let newCart = JSON.parse(text);
  254.                    let newCartItems = newCart.items;
  255.                    let oldCartItems = self.cart.items;
  256.  
  257.                    for(let i = 0; i < oldCartItems.length; i++) {
  258.                      let item = oldCartItems[i];
  259.                      let newItem = newCartItems.find(newItems => newItems.id === item.id);
  260.  
  261.  
  262.                      if(newItem) {
  263.  
  264.                        if(newItem.quantity > item.quantity) {
  265.                          // cart item increment
  266.                          let quantity = (newItem.quantity - item.quantity);
  267.                          let updatedItem = {...item, quantity}
  268.                          self.ecommerceDataLayer('add_to_cart', {items: [updatedItem]});
  269.                          self.updateCart();
  270.  
  271.                        }else if(newItem.quantity < item.quantity) {
  272.                          // cart item decrement
  273.                          let quantity = (item.quantity - newItem.quantity);
  274.                          let updatedItem = {...item, quantity}
  275.                          self.ecommerceDataLayer('remove_from_cart', {items: [updatedItem]});
  276.                          self.updateCart();
  277.                        }
  278.                        
  279.  
  280.                      }else {
  281.                        self.ecommerceDataLayer('remove_from_cart', {items: [item]});
  282.                        self.updateCart();
  283.                      }
  284.                    }
  285.                    
  286.                  });
  287.                }
  288.              }
  289.              return response;
  290.            });
  291.          }
  292.          // end fetch
  293.  
  294.  
  295.          //xhr
  296.          var origXMLHttpRequest = XMLHttpRequest;
  297.          XMLHttpRequest = function() {
  298.            var requestURL;
  299.    
  300.            var xhr = new origXMLHttpRequest();
  301.            var origOpen = xhr.open;
  302.            var origSend = xhr.send;
  303.            
  304.            // Override the `open` function.
  305.            xhr.open = function(method, url) {
  306.                requestURL = url;
  307.                return origOpen.apply(this, arguments);
  308.            };
  309.    
  310.    
  311.            xhr.send = function() {
  312.    
  313.                // Only proceed if the request URL matches what we're looking for.
  314.                if (requestURL.includes("/cart/add") || requestURL.includes("/cart/change") || /.*\/search\/?.*\?.*q=.+/.test(requestURL)) {
  315.        
  316.                    xhr.addEventListener('load', function() {
  317.                        if (xhr.readyState === 4) {
  318.                            if (xhr.status >= 200 && xhr.status < 400) {
  319.  
  320.                              if(/.*\/search\/?.*\?.*q=.+/.test(requestURL) && !requestURL.inclides('&requestFrom=uldt')) {
  321.                                const queryString = requestURL.split('?')[1];
  322.                                const urlParams = new URLSearchParams(queryString);
  323.                                const search_term = urlParams.get("q");
  324.  
  325.                                debounce(function() {
  326.                                    fetch(`${self.storeURL}/search/suggest.json?q=${search_term}&resources[type]=product&requestFrom=uldt`)
  327.                                      .then(res => res.json())
  328.                                      .then(function(data) {
  329.                                            const products = data.resources.results.products;
  330.                                            if(products.length) {
  331.                                              const fetchRequests = products.map(product =>
  332.                                                fetch(`${self.storeURL}/${product.url.split('?')[0]}.js`)
  333.                                                  .then(response => response.json())
  334.                                                  .catch(error => console.error('Error fetching:', error))
  335.                                              );
  336.                
  337.                                              Promise.all(fetchRequests)
  338.                                                .then(products => {
  339.                                                    const items = products.map((product) => {
  340.                                                      return {
  341.                                                        product_id: product.id,
  342.                                                        product_title: product.title,
  343.                                                        variant_id: product.variants[0].id,
  344.                                                        variant_title: product.variants[0].title,
  345.                                                        vendor: product.vendor,
  346.                                                        total_discount: 0,
  347.                                                        final_price: product.price_min,
  348.                                                        product_type: product.type,
  349.                                                        quantity: 1
  350.                                                      }
  351.                                                    });
  352.                
  353.                                                    self.ecommerceDataLayer('search', {search_term, items});
  354.                                                })
  355.                                            }else {
  356.                                              self.ecommerceDataLayer('search', {search_term, items: []});
  357.                                            }
  358.                                      });
  359.                                  });
  360.  
  361.                              }
  362.  
  363.                              else if(requestURL.includes("/cart/add")) {
  364.                                
  365.                                   const item = JSON.parse(xhr.responseText);
  366.                                   self.ecommerceDataLayer('add_to_cart', {items: [item]});
  367.                                   self.updateCart();
  368.                                
  369.                               }else if(requestURL.includes("/cart/change")) {
  370.                                
  371.                                  const newCart = JSON.parse(xhr.responseText);
  372.                                  const newCartItems = newCart.items;
  373.                                  let oldCartItems = self.cart.items;
  374.              
  375.                                  for(let i = 0; i < oldCartItems.length; i++) {
  376.                                    let item = oldCartItems[i];
  377.                                    let newItem = newCartItems.find(newItems => newItems.id === item.id);
  378.              
  379.              
  380.                                    if(newItem) {
  381.                                      if(newItem.quantity > item.quantity) {
  382.                                        // cart item increment
  383.                                        let quantity = (newItem.quantity - item.quantity);
  384.                                        let updatedItem = {...item, quantity}
  385.                                        self.ecommerceDataLayer('add_to_cart', {items: [updatedItem]});
  386.                                        self.updateCart();
  387.              
  388.                                      }else if(newItem.quantity < item.quantity) {
  389.                                        // cart item decrement
  390.                                        let quantity = (item.quantity - newItem.quantity);
  391.                                        let updatedItem = {...item, quantity}
  392.                                        self.ecommerceDataLayer('remove_from_cart', {items: [updatedItem]});
  393.                                        self.updateCart();
  394.                                      }
  395.                                      
  396.              
  397.                                    }else {
  398.                                      self.ecommerceDataLayer('remove_from_cart', {items: [item]});
  399.                                      self.updateCart();
  400.                                    }
  401.                                  }
  402.                               }          
  403.                            }
  404.                        }
  405.                    });
  406.                }
  407.    
  408.                return origSend.apply(this, arguments);
  409.            };
  410.    
  411.            return xhr;
  412.          };
  413.          //end xhr
  414.        }
  415.  
  416.        // search event from search page
  417.        searchPageData() {
  418.          const self = this;
  419.          let pageUrl = window.location.href;
  420.          
  421.          if(/.+\/search\?.*\&?q=.+/.test(pageUrl)) {  
  422.            const queryString = pageUrl.split('?')[1];
  423.            const urlParams = new URLSearchParams(queryString);
  424.            const search_term = urlParams.get("q");
  425.                
  426.            fetch(`https://houseofmonac.com/search/suggest.json?q=${search_term}&resources[type]=product&requestFrom=uldt`)
  427.            .then(res => res.json())
  428.            .then(function(data) {
  429.                  const products = data.resources.results.products;
  430.                  if(products.length) {
  431.                    const fetchRequests = products.map(product =>
  432.                      fetch(`${self.storeURL}/${product.url.split('?')[0]}.js`)
  433.                        .then(response => response.json())
  434.                        .catch(error => console.error('Error fetching:', error))
  435.                    );
  436.                    Promise.all(fetchRequests)
  437.                    .then(products => {
  438.                        const items = products.map((product) => {
  439.                            return {
  440.                            product_id: product.id,
  441.                            product_title: product.title,
  442.                            variant_id: product.variants[0].id,
  443.                            variant_title: product.variants[0].title,
  444.                            vendor: product.vendor,
  445.                            total_discount: 0,
  446.                            final_price: product.price_min,
  447.                            product_type: product.type,
  448.                            quantity: 1
  449.                            }
  450.                        });
  451.  
  452.                        self.ecommerceDataLayer('search', {search_term, items});
  453.                    });
  454.                  }else {
  455.                    self.ecommerceDataLayer('search', {search_term, items: []});
  456.                  }
  457.            });
  458.          }
  459.        }
  460.  
  461.        // view_cart
  462.        miniCartData() {
  463.          if(this.miniCartButton.length) {
  464.            let self = this;
  465.            if(this.miniCartAppersOn === 'hover') {
  466.              this.miniCartAppersOn = 'mouseenter';
  467.            }
  468.            this.miniCartButton.forEach((selector) => {
  469.            let miniCartButton = document.querySelector(selector);
  470.  
  471.              if(miniCartButton) {
  472.                miniCartButton.addEventListener(self.miniCartAppersOn, () => {
  473.                  self.ecommerceDataLayer('view_cart', self.cart);
  474.                });
  475.              }
  476.            });
  477.          }
  478.        }
  479.  
  480.        // begin_checkout
  481.        beginCheckoutData() {
  482.          let self = this;
  483.          document.addEventListener('pointerdown', () => {
  484.            let targetElement = event.target.closest(self.beginCheckoutButtons.join(', '));
  485.            if(targetElement) {
  486.              self.ecommerceDataLayer('begin_checkout', self.cart);
  487.            }
  488.          });
  489.        }
  490.  
  491.        // view_cart, add_to_cart, remove_from_cart
  492.        viewCartPageData() {
  493.          
  494.          this.ecommerceDataLayer('view_cart', this.cart);
  495.  
  496.          //if cart quantity chagne reload page
  497.          if(!this.isAjaxCartIncrementDecrement) {
  498.            const self = this;
  499.            document.addEventListener('pointerdown', (event) => {
  500.              const target = event.target.closest('a[href*="/cart/change?"]');
  501.              if(target) {
  502.                const linkUrl = target.getAttribute('href');
  503.                const queryString = linkUrl.split("?")[1];
  504.                const urlParams = new URLSearchParams(queryString);
  505.                const newQuantity = urlParams.get("quantity");
  506.                const line = urlParams.get("line");
  507.                const cart_id = urlParams.get("id");
  508.        
  509.                
  510.                if(newQuantity && (line || cart_id)) {
  511.                  let item = line ? {...self.cart.items[line - 1]} : self.cart.items.find(item => item.key === cart_id);
  512.        
  513.                  let event = 'add_to_cart';
  514.                  if(newQuantity < item.quantity) {
  515.                    event = 'remove_from_cart';
  516.                  }
  517.        
  518.                  let quantity = Math.abs(newQuantity - item.quantity);
  519.                  item['quantity'] = quantity;
  520.        
  521.                  self.ecommerceDataLayer(event, {items: [item]});
  522.                }
  523.              }
  524.            });
  525.          }
  526.        }
  527.  
  528.        productSinglePage() {
  529.        
  530.        }
  531.  
  532.        collectionsPageData() {
  533.          var ecommerce = {
  534.            'items': [
  535.              
  536.              ]
  537.          };
  538.  
  539.          ecommerce['item_list_id'] = null
  540.          ecommerce['item_list_name'] = null
  541.  
  542.          this.ecommerceDataLayer('view_item_list', ecommerce);
  543.        }
  544.        
  545.        
  546.        // add to wishlist
  547.        addToWishListData() {
  548.          if(this.addToWishListSelectors && this.addToWishListSelectors.addWishListIcon) {
  549.            const self = this;
  550.            document.addEventListener('pointerdown', (event) => {
  551.              let target = event.target;
  552.              
  553.              if(target.closest(self.addToWishListSelectors.addWishListIcon)) {
  554.                let pageULR = window.location.href.replace(/\?.+/, '');
  555.                let requestURL = undefined;
  556.          
  557.                if(/\/products\/[^/]+$/.test(pageULR)) {
  558.                  requestURL = pageULR;
  559.                } else if(self.addToWishListSelectors.gridItemSelector && self.addToWishListSelectors.productLinkSelector) {
  560.                  let itemElement = target.closest(self.addToWishListSelectors.gridItemSelector);
  561.                  if(itemElement) {
  562.                    let linkElement = itemElement.querySelector(self.addToWishListSelectors.productLinkSelector);
  563.                    if(linkElement) {
  564.                      let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
  565.                      if(link && /\/products\/[^/]+$/.test(link)) {
  566.                        requestURL = link;
  567.                      }
  568.                    }
  569.                  }
  570.                }
  571.  
  572.                if(requestURL) {
  573.                  fetch(requestURL + '.json')
  574.                    .then(res => res.json())
  575.                    .then(result => {
  576.                      let data = result.product;                    
  577.                      if(data) {
  578.                        let dataLayerData = {
  579.                          product_id: data.id,
  580.                            variant_id: data.variants[0].id,
  581.                            product_title: data.title,
  582.                          quantity: 1,
  583.                          final_price: parseFloat(data.variants[0].price) * 100,
  584.                          total_discount: 0,
  585.                          product_type: data.product_type,
  586.                          vendor: data.vendor,
  587.                          variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
  588.                          sku: data.variants[0].sku,
  589.                        }
  590.  
  591.                        self.ecommerceDataLayer('add_to_wishlist', {items: [dataLayerData]});
  592.                      }
  593.                    });
  594.                }
  595.              }
  596.            });
  597.          }
  598.        }
  599.  
  600.        quickViewData() {
  601.          if(this.quickViewSelector.quickViewElement && this.quickViewSelector.gridItemSelector && this.quickViewSelector.productLinkSelector) {
  602.            const self = this;
  603.            document.addEventListener('pointerdown', (event) => {
  604.              let target = event.target;
  605.              if(target.closest(self.quickViewSelector.quickViewElement)) {
  606.                let requestURL = undefined;
  607.                let itemElement = target.closest(this.quickViewSelector.gridItemSelector );
  608.                
  609.                if(itemElement) {
  610.                  let linkElement = itemElement.querySelector(self.quickViewSelector.productLinkSelector);
  611.                  if(linkElement) {
  612.                    let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
  613.                    if(link && /\/products\/[^/]+$/.test(link)) {
  614.                      requestURL = link;
  615.                    }
  616.                  }
  617.                }  
  618.                
  619.                if(requestURL) {
  620.                    fetch(requestURL + '.json')
  621.                      .then(res => res.json())
  622.                      .then(result => {
  623.                        let data = result.product;                    
  624.                        if(data) {
  625.                          let dataLayerData = {
  626.                            product_id: data.id,
  627.                            variant_id: data.variants[0].id,
  628.                            product_title: data.title,
  629.                            quantity: 1,
  630.                            final_price: parseFloat(data.variants[0].price) * 100,
  631.                            total_discount: 0,
  632.                            product_type: data.product_type,
  633.                            vendor: data.vendor,
  634.                            variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
  635.                            sku: data.variants[0].sku,
  636.                          }
  637.  
  638.                          self.ecommerceDataLayer('view_item', {items: [dataLayerData]});
  639.                          self.quickViewVariants = data.variants;
  640.                          self.quickViewedItem = dataLayerData;
  641.                        }
  642.                      });
  643.                  }
  644.              }
  645.            });
  646.  
  647.            
  648.              if(this.shopifyDirectCheckoutButton.length) {
  649.                let self = this;
  650.                document.addEventListener('pointerdown', (event) => {
  651.                  let target = event.target;
  652.                  let checkoutButton = event.target.closest(this.shopifyDirectCheckoutButton.join(', '));
  653.                  
  654.                  if(self.quickViewVariants && self.quickViewedItem && self.quickViewVariants.length && checkoutButton) {
  655.  
  656.                    let checkoutForm = checkoutButton.closest('form[action*="/cart/add"]');
  657.                    if(checkoutForm) {
  658.                        let quantity = 1;
  659.                        let varientInput = checkoutForm.querySelector('input[name="id"]');
  660.                        let quantitySelector = checkoutForm.getAttribute('id');
  661.  
  662.                        if(quantitySelector) {
  663.                          let quentityInput = document.querySelector('input[name="quantity"][form="'+quantitySelector+'"]');
  664.                          if(quentityInput) {
  665.                              quantity = +quentityInput.value;
  666.                          }
  667.                        }
  668.  
  669.                        if(varientInput) {
  670.                            let variant_id = parseInt(varientInput.value);
  671.  
  672.                            if(variant_id) {
  673.                                const variant = self.quickViewVariants.find(item => item.id === +variant_id);
  674.                                if(variant && self.quickViewedItem) {
  675.                                    self.quickViewedItem['variant_id'] = variant_id;
  676.                                    self.quickViewedItem['variant_title'] = variant.title;
  677.                                    self.quickViewedItem['final_price'] = parseFloat(variant.price) * 100;
  678.                                    self.quickViewedItem['quantity'] = quantity;
  679.    
  680.                                    self.ecommerceDataLayer('add_to_cart', {items: [self.quickViewedItem]});
  681.                                    self.ecommerceDataLayer('begin_checkout', {items: [self.quickViewedItem]});
  682.                                }
  683.                            }
  684.                        }
  685.                    }
  686.  
  687.                  }
  688.                });
  689.            }
  690.            
  691.          }
  692.        }
  693.  
  694.        // all ecommerce events
  695.        ecommerceDataLayer(event, data) {
  696.          const self = this;
  697.          dataLayer.push({ 'ecommerce': null });
  698.          const dataLayerData = {
  699.            "event": this.eventPrefix + event,
  700.            'ecommerce': {
  701.               'currency': this.cart.currency,
  702.               'items': data.items.map((item, index) => {
  703.                 const dataLayerItem = {
  704.                    'index': index,
  705.                    'item_id': this.formattedItemId  ? `shopify_${this.countryCode}_${item.product_id}_${item.variant_id}` : item.product_id.toString(),
  706.                    'product_id': item.product_id.toString(),
  707.                    'variant_id': item.variant_id.toString(),
  708.                    'item_name': item.product_title,
  709.                    'quantity': item.quantity,
  710.                    'price': +((item.final_price / 100).toFixed(2)),
  711.                    'discount': item.total_discount ? +((item.total_discount / 100).toFixed(2)) : 0
  712.                }
  713.  
  714.                if(item.product_type) {
  715.                  dataLayerItem['item_category'] = item.product_type;
  716.                }
  717.                
  718.                if(item.vendor) {
  719.                  dataLayerItem['item_brand'] = item.vendor;
  720.                }
  721.              
  722.                if(item.variant_title && item.variant_title !== 'Default Title') {
  723.                  dataLayerItem['item_variant'] = item.variant_title;
  724.                }
  725.              
  726.                if(item.sku) {
  727.                  dataLayerItem['sku'] = item.sku;
  728.                }
  729.  
  730.                if(item.item_list_name) {
  731.                  dataLayerItem['item_list_name'] = item.item_list_name;
  732.                }
  733.  
  734.                if(item.item_list_id) {
  735.                  dataLayerItem['item_list_id'] = item.item_list_id.toString()
  736.                }
  737.  
  738.                return dataLayerItem;
  739.              })
  740.            }
  741.          }
  742.  
  743.          if(data.total_price !== undefined) {
  744.            dataLayerData['ecommerce']['value'] =  +((data.total_price / 100).toFixed(2));
  745.          } else {
  746.            dataLayerData['ecommerce']['value'] = +(dataLayerData['ecommerce']['items'].reduce((total, item) => total + item.price, 0)).toFixed(2);
  747.          }
  748.          
  749.          if(data.item_list_id) {
  750.            dataLayerData['ecommerce']['item_list_id'] = data.item_list_id;
  751.          }
  752.          
  753.          if(data.item_list_name) {
  754.            dataLayerData['ecommerce']['item_list_name'] = data.item_list_name;
  755.          }
  756.  
  757.          if(data.search_term) {
  758.            dataLayerData['search_term'] = data.search_term;
  759.          }
  760.  
  761.          if(self.dataSchema.dynamicRemarketing && self.dataSchema.dynamicRemarketing.show) {
  762.            dataLayer.push({ 'dynamicRemarketing': null });
  763.            dataLayerData['dynamicRemarketing'] = {
  764.                value: dataLayerData.ecommerce.value,
  765.                items: dataLayerData.ecommerce.items.map(item => ({id: item.item_id, google_business_vertical: self.dataSchema.dynamicRemarketing.business_vertical}))
  766.            }
  767.          }
  768.  
  769.          if(!self.dataSchema.ecommerce ||  !self.dataSchema.ecommerce.show) {
  770.            delete dataLayerData['ecommerce'];
  771.          }
  772.  
  773.          dataLayer.push(dataLayerData);
  774.        }
  775.  
  776.        
  777.        // contact form submit & newsletters signup
  778.        formData() {
  779.          const self = this;
  780.          document.addEventListener('submit', function(event) {
  781.  
  782.            let targetForm = event.target.closest('form[action^="/contact"]');
  783.  
  784.  
  785.            if(targetForm) {
  786.              const formData = {
  787.                form_location: window.location.href,
  788.                form_id: targetForm.getAttribute('id'),
  789.                form_classes: targetForm.getAttribute('class')
  790.              };
  791.                            
  792.              let formType = targetForm.querySelector('input[name="form_type"]');
  793.              let inputs = targetForm.querySelectorAll("input:not([type=hidden]):not([type=submit]), textarea, select");
  794.              
  795.              inputs.forEach(function(input) {
  796.                var inputName = input.name;
  797.                var inputValue = input.value;
  798.                
  799.                if (inputName && inputValue) {
  800.                  var matches = inputName.match(/\[(.*?)\]/);
  801.                  if (matches && matches.length > 1) {
  802.                     var fieldName = matches[1];
  803.                     formData[fieldName] = input.value;
  804.                  }
  805.                }
  806.              });
  807.              
  808.              if(formType && formType.value === 'customer') {
  809.                dataLayer.push({ event: self.eventPrefix + 'newsletter_signup', ...formData});
  810.              } else if(formType && formType.value === 'contact') {
  811.                dataLayer.push({ event: self.eventPrefix + 'contact_form_submit', ...formData});
  812.              }
  813.            }
  814.          });
  815.  
  816.        }
  817.  
  818.        // phone_number_click event
  819.        phoneClickData() {
  820.          const self = this;
  821.          document.addEventListener('click', function(event) {
  822.            let target = event.target.closest('a[href^="tel:"]');
  823.            if(target) {
  824.              let phone_number = target.getAttribute('href').replace('tel:', '');
  825.              dataLayer.push({
  826.                event: self.eventPrefix + 'phone_number_click',
  827.                page_location: window.location.href,
  828.                link_classes: target.getAttribute('class'),
  829.                link_id: target.getAttribute('id'),
  830.                phone_number
  831.              })
  832.            }
  833.          });
  834.        }
  835.  
  836.        // email_click event
  837.        emailClickData() {
  838.          const self = this;
  839.          document.addEventListener('click', function(event) {
  840.            let target = event.target.closest('a[href^="mailto:"]');
  841.            if(target) {
  842.              let email_address = target.getAttribute('href').replace('mailto:', '');
  843.              dataLayer.push({
  844.                event: self.eventPrefix + 'email_click',
  845.                page_location: window.location.href,
  846.                link_classes: target.getAttribute('class'),
  847.                link_id: target.getAttribute('id'),
  848.                email_address
  849.              })
  850.            }
  851.          });
  852.        }
  853.      }
  854.      // end Ultimate_Shopify_DataLayer
  855.  
  856.      document.addEventListener('DOMContentLoaded', function() {
  857.        try{
  858.          new Ultimate_Shopify_DataLayer();
  859.        }catch(error) {
  860.          console.log(error);
  861.        }
  862.      });
  863.    
  864.  })();
  865. </script>
  866.    
  867.    <!-- Meta Pixel Code -->
  868. <script>
  869. !function(f,b,e,v,n,t,s)
  870. {if(f.fbq)return;n=f.fbq=function(){n.callMethod?
  871. n.callMethod.apply(n,arguments):n.queue.push(arguments)};
  872. if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
  873. n.queue=[];t=b.createElement(e);t.async=!0;
  874. t.src=v;s=b.getElementsByTagName(e)[0];
  875. s.parentNode.insertBefore(t,s)}(window, document,'script',
  876. 'https://connect.facebook.net/en_US/fbevents.js');
  877. fbq('init', '486179761752509');
  878. fbq('track', 'PageView');
  879. </script>
  880. <script type="application/ld+json">
  881. {
  882.  "@context": "https://schema.org/",
  883.  "@type": "BreadcrumbList",
  884.  "itemListElement": [{
  885.    "@type": "ListItem",
  886.    "position": 1,
  887.    "name": "Home",
  888.    "item": "https://houseofmonac.com/"  
  889.  },{
  890.    "@type": "ListItem",
  891.    "position": 2,
  892.    "name": "Best Sellers",
  893.    "item": "https://houseofmonac.com/collections/best-sellers"  
  894.  }]
  895. }
  896. </script>
  897.  
  898.  
  899.  
  900. <script type="application/ld+json">
  901. {
  902.  "@context": "https://schema.org",
  903.  "@type": "Organization",
  904.  "name": "HouseofMonac",
  905.  "alternateName": "HouseofMonac",
  906.  "url": "https://houseofmonac.com/",
  907.  "logo": "https://houseofmonac.com/cdn/shop/files/monac_Attar_png-01_430x_8ffa7d40-f382-426c-b38c-f3eddca63588.png?v=1713355635&width=410",
  908.  "sameAs": [
  909.    "https://www.facebook.com/thewhitemaketusa",
  910.    "https://instagram.com/house_of_monac?igshid=NzZlODBkYWE4Ng==",
  911.    "https://www.youtube.com/channel/UCY57yz4vpL962gJ4sjbUJEw"
  912.  ]
  913. }
  914. </script>
  915.  
  916.    
  917. <noscript><img height="1" width="1" style="display:none"
  918. src="https://www.facebook.com/tr?id=486179761752509&ev=PageView&noscript=1"
  919. /></noscript>
  920. <!-- End Meta Pixel Code -->
  921.    <meta name="google-site-verification" content="EMDM2oSOX0mixvY9nrm90StcC86k5eyNaZRjC0fRfCE" />
  922.  
  923.  
  924. <meta name="facebook-domain-verification" content="sedji3j5urb7lzl3lo9hanv8bj7vkx" />
  925.    
  926.    <meta charset="utf-8">
  927.    <meta name="viewport" content="width=device-width, initial-scale=1.0, height=device-height, minimum-scale=1.0, maximum-scale=1.0">
  928.    <meta name="theme-color" content="#ffffff">
  929.  
  930.    <title>Shop Dupe Fragrances, Lotions, Body Wash &amp; Candles</title><meta name="description" content="Luxury scents for less! Shop inspired fragrances, lotions, candles &amp; more. Smell amazing &amp; save—see why our customers keep coming back"><link rel="canonical" href="https://houseofmonac.com/"><link rel="shortcut icon" href="//houseofmonac.com/cdn/shop/files/monac_Attar_png-01.png?v=1710900709&width=96">
  931.      <link rel="apple-touch-icon" href="//houseofmonac.com/cdn/shop/files/monac_Attar_png-01.png?v=1710900709&width=180"><link rel="preconnect" href="https://cdn.shopify.com">
  932.    <link rel="preconnect" href="https://fonts.shopifycdn.com" crossorigin>
  933.    <link rel="dns-prefetch" href="https://productreviews.shopifycdn.com"><link rel="modulepreload" href="//houseofmonac.com/cdn/shop/t/5/assets/vendor.min.js?v=161072099565793977701679774294" as="script">
  934.    <link rel="modulepreload" href="//houseofmonac.com/cdn/shop/t/5/assets/theme.js?v=49892170302731136491697768327" as="script">
  935.    <link rel="modulepreload" href="//houseofmonac.com/cdn/shop/t/5/assets/sections.js?v=77734894065137989411697768380" as="script"><link rel="preload" href="//houseofmonac.com/cdn/fonts/futura/futura_n6.bbe2e25d5b96d13ff36b242171a3d07cf5a60170.woff2?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=205c43b8da48e165ac907fc5ee6842c4662a478f44f389209d0a546bad340c83" as="font" type="font/woff2" crossorigin><link rel="preload" href="//houseofmonac.com/cdn/fonts/futura/futura_n4.df36ce3d9db534a4d7947f4aa825495ed740e410.woff2?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=422bab9319bbfdc4fb3cfbea1e3edf63b112f94c7b56684854e939f5c0c39699" as="font" type="font/woff2" crossorigin><meta property="og:type" content="website">
  936.  <meta property="og:title" content="Shop Dupe Fragrances, Lotions, Body Wash &amp; Candles"><meta property="og:image" content="http://houseofmonac.com/cdn/shop/files/monac_Attar_png-01_430x_8ffa7d40-f382-426c-b38c-f3eddca63588.webp?v=1745039584&width=2048">
  937.  <meta property="og:image:secure_url" content="https://houseofmonac.com/cdn/shop/files/monac_Attar_png-01_430x_8ffa7d40-f382-426c-b38c-f3eddca63588.webp?v=1745039584&width=2048">
  938.  <meta property="og:image:width" content="410">
  939.  <meta property="og:image:height" content="290"><meta property="og:description" content="Luxury scents for less! Shop inspired fragrances, lotions, candles &amp; more. Smell amazing &amp; save—see why our customers keep coming back"><meta property="og:url" content="https://houseofmonac.com/">
  940. <meta property="og:site_name" content="Monac Attar"><meta name="twitter:card" content="summary"><meta name="twitter:title" content="Shop Dupe Fragrances, Lotions, Body Wash &amp; Candles">
  941.  <meta name="twitter:description" content="Luxury scents for less! Shop inspired fragrances, lotions, candles &amp; more. Smell amazing &amp; save—see why our customers keep coming back"><meta name="twitter:image" content="https://houseofmonac.com/cdn/shop/files/monac_Attar_png-01_430x_8ffa7d40-f382-426c-b38c-f3eddca63588.webp?crop=center&height=1200&v=1745039584&width=1200">
  942.  <meta name="twitter:image:alt" content="">
  943.  
  944.  
  945.  <script type="application/ld+json">
  946.  {
  947.    "@context": "https://schema.org",
  948.    "@type": "BreadcrumbList",
  949.  "itemListElement": [{
  950.      "@type": "ListItem",
  951.      "position": 1,
  952.      "name": "Home",
  953.      "item": "https://houseofmonac.com"
  954.    }]
  955.  }
  956.  </script>
  957.  
  958. <script type="application/ld+json">
  959.  [
  960.    {
  961.      "@context": "https://schema.org",
  962.      "@type": "WebSite",
  963.      "name": "Monac Attar",
  964.      "url": "https:\/\/houseofmonac.com",
  965.      "potentialAction": {
  966.        "@type": "SearchAction",
  967.        "target": "https:\/\/houseofmonac.com\/search?q={search_term_string}",
  968.        "query-input": "required name=search_term_string"
  969.      }
  970.    },
  971.    {
  972.      "@context": "https://schema.org",
  973.      "@type": "Organization",
  974.      "name": "Monac Attar","logo": "https:\/\/houseofmonac.com\/cdn\/shop\/files\/monac_Attar_png-01.webp?v=1743702345\u0026width=410","url": "https:\/\/houseofmonac.com"
  975.    }
  976.  ]
  977.  </script><style>/* Typography (heading) */
  978.  @font-face {
  979.  font-family: Futura;
  980.  font-weight: 600;
  981.  font-style: normal;
  982.  font-display: fallback;
  983.  src: url("//houseofmonac.com/cdn/fonts/futura/futura_n6.bbe2e25d5b96d13ff36b242171a3d07cf5a60170.woff2?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=205c43b8da48e165ac907fc5ee6842c4662a478f44f389209d0a546bad340c83") format("woff2"),
  984.       url("//houseofmonac.com/cdn/fonts/futura/futura_n6.66fa8f5c3c4b2c7c04809ecefe751450fa59d995.woff?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=3999d639381681281f280248c49c6333b42c358f2c6665a442e6ff2fd6f8aeea") format("woff");
  985. }
  986.  
  987. @font-face {
  988.  font-family: Futura;
  989.  font-weight: 600;
  990.  font-style: oblique;
  991.  font-display: fallback;
  992.  src: url("//houseofmonac.com/cdn/fonts/futura/futura_o6.2978dbd38bd9b3e8b72ee3299cd940da2900eb72.woff2?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=cd6bd83406cb496286a376bb506f9b7d183516a2ffeb6f5b3ddb84777345496d") format("woff2"),
  993.       url("//houseofmonac.com/cdn/fonts/futura/futura_o6.bbc5bc6e7a675b3182e4866da9f9643bb3821261.woff?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=5a9f00afbd6d8bf5e4a11233f5e662bc228224b9d7dff21d85c866db484b08ab") format("woff");
  994. }
  995.  
  996. /* Typography (body) */
  997.  @font-face {
  998.  font-family: Futura;
  999.  font-weight: 400;
  1000.  font-style: normal;
  1001.  font-display: fallback;
  1002.  src: url("//houseofmonac.com/cdn/fonts/futura/futura_n4.df36ce3d9db534a4d7947f4aa825495ed740e410.woff2?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=422bab9319bbfdc4fb3cfbea1e3edf63b112f94c7b56684854e939f5c0c39699") format("woff2"),
  1003.       url("//houseofmonac.com/cdn/fonts/futura/futura_n4.6bce24beb4ba1ff4ddeb20f7cd6e2fa513a3d6ec.woff?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=1d4e021be27fa38abac9b5d806005abf23e1cb012ce814bfebb6aa2661d20e69") format("woff");
  1004. }
  1005.  
  1006. @font-face {
  1007.  font-family: Futura;
  1008.  font-weight: 400;
  1009.  font-style: oblique;
  1010.  font-display: fallback;
  1011.  src: url("//houseofmonac.com/cdn/fonts/futura/futura_o4.9747e2e6ed2f11b894984527c927b42234e48815.woff2?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=faaa5185cb3df2f13ec8adada7fe1a9e8c4bab20fe717b25ad064e4f24446919") format("woff2"),
  1012.       url("//houseofmonac.com/cdn/fonts/futura/futura_o4.d5edc6b1d9a050bbe0beb9093d73b883bf18c6c1.woff?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=cdc7d5ffc576aefdca65899b020646796fbfa7111a29a9585b2527bd34429192") format("woff");
  1013. }
  1014.  
  1015. @font-face {
  1016.  font-family: Futura;
  1017.  font-weight: 700;
  1018.  font-style: normal;
  1019.  font-display: fallback;
  1020.  src: url("//houseofmonac.com/cdn/fonts/futura/futura_n7.153f8fffad8e901382179997bbb87aa7a5ff33b3.woff2?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=7debade8d27e1da6fc0a2760c5816c26e81bc4ebbe647a0049ddd141ae1bfd81") format("woff2"),
  1021.       url("//houseofmonac.com/cdn/fonts/futura/futura_n7.711e9243b3eccc2745ecf4731eba61651a122376.woff?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=4cfd13ab4f4dbc263ff9093478d7f26f3fa6fe3f5812e4374bc6a151c9a7ffe3") format("woff");
  1022. }
  1023.  
  1024. @font-face {
  1025.  font-family: Futura;
  1026.  font-weight: 700;
  1027.  font-style: oblique;
  1028.  font-display: fallback;
  1029.  src: url("//houseofmonac.com/cdn/fonts/futura/futura_o7.ece1472e1fefbb598873ba72dc2bfa2e050347c1.woff2?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=11706f57fc98cd992069ff56b56796255a7878deb382a906bbdf6c3792b6d644") format("woff2"),
  1030.       url("//houseofmonac.com/cdn/fonts/futura/futura_o7.7028291332320745f0217c346c800da7522a22b2.woff?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=e0522baa9e147298f6cae60d7726415b8f5f18332fa30a46c9d25740f54f437b") format("woff");
  1031. }
  1032.  
  1033. :root {
  1034.    /**
  1035.     * ---------------------------------------------------------------------
  1036.     * SPACING VARIABLES
  1037.     *
  1038.     * We are using a spacing inspired from frameworks like Tailwind CSS.
  1039.     * ---------------------------------------------------------------------
  1040.     */
  1041.    --spacing-0-5: 0.125rem; /* 2px */
  1042.    --spacing-1: 0.25rem; /* 4px */
  1043.    --spacing-1-5: 0.375rem; /* 6px */
  1044.    --spacing-2: 0.5rem; /* 8px */
  1045.    --spacing-2-5: 0.625rem; /* 10px */
  1046.    --spacing-3: 0.75rem; /* 12px */
  1047.    --spacing-3-5: 0.875rem; /* 14px */
  1048.    --spacing-4: 1rem; /* 16px */
  1049.    --spacing-4-5: 1.125rem; /* 18px */
  1050.    --spacing-5: 1.25rem; /* 20px */
  1051.    --spacing-5-5: 1.375rem; /* 22px */
  1052.    --spacing-6: 1.5rem; /* 24px */
  1053.    --spacing-6-5: 1.625rem; /* 26px */
  1054.    --spacing-7: 1.75rem; /* 28px */
  1055.    --spacing-7-5: 1.875rem; /* 30px */
  1056.    --spacing-8: 2rem; /* 32px */
  1057.    --spacing-8-5: 2.125rem; /* 34px */
  1058.    --spacing-9: 2.25rem; /* 36px */
  1059.    --spacing-9-5: 2.375rem; /* 38px */
  1060.    --spacing-10: 2.5rem; /* 40px */
  1061.    --spacing-11: 2.75rem; /* 44px */
  1062.    --spacing-12: 3rem; /* 48px */
  1063.    --spacing-14: 3.5rem; /* 56px */
  1064.    --spacing-16: 4rem; /* 64px */
  1065.    --spacing-18: 4.5rem; /* 72px */
  1066.    --spacing-20: 5rem; /* 80px */
  1067.    --spacing-24: 6rem; /* 96px */
  1068.    --spacing-28: 7rem; /* 112px */
  1069.    --spacing-32: 8rem; /* 128px */
  1070.    --spacing-36: 9rem; /* 144px */
  1071.    --spacing-40: 10rem; /* 160px */
  1072.    --spacing-44: 11rem; /* 176px */
  1073.    --spacing-48: 12rem; /* 192px */
  1074.    --spacing-52: 13rem; /* 208px */
  1075.    --spacing-56: 14rem; /* 224px */
  1076.    --spacing-60: 15rem; /* 240px */
  1077.    --spacing-64: 16rem; /* 256px */
  1078.    --spacing-72: 18rem; /* 288px */
  1079.    --spacing-80: 20rem; /* 320px */
  1080.    --spacing-96: 24rem; /* 384px */
  1081.  
  1082.    /* Container */
  1083.    --container-max-width: 1800px;
  1084.    --container-narrow-max-width: 1550px;
  1085.    --container-gutter: var(--spacing-5);
  1086.    --section-outer-spacing-block: var(--spacing-10);
  1087.    --section-inner-max-spacing-block: var(--spacing-9);
  1088.    --section-inner-spacing-inline: var(--container-gutter);
  1089.    --section-stack-spacing-block: var(--spacing-8);
  1090.  
  1091.    /* Grid gutter */
  1092.    --grid-gutter: var(--spacing-5);
  1093.  
  1094.    /* Product list settings */
  1095.    --product-list-row-gap: var(--spacing-8);
  1096.    --product-list-column-gap: var(--grid-gutter);
  1097.  
  1098.    /* Form settings */
  1099.    --input-gap: var(--spacing-2);
  1100.    --input-height: 2.625rem;
  1101.    --input-padding-inline: var(--spacing-4);
  1102.  
  1103.    /* Other sizes */
  1104.    --sticky-area-height: calc(var(--sticky-announcement-bar-enabled, 0) * var(--announcement-bar-height, 0px) + var(--sticky-header-enabled, 0) * var(--header-height, 0px));
  1105.  
  1106.    /* RTL support */
  1107.    --transform-logical-flip: 1;
  1108.    --transform-origin-start: left;
  1109.    --transform-origin-end: right;
  1110.  
  1111.    /**
  1112.     * ---------------------------------------------------------------------
  1113.     * TYPOGRAPHY
  1114.     * ---------------------------------------------------------------------
  1115.     */
  1116.  
  1117.    /* Font properties */
  1118.    --heading-font-family: Futura, sans-serif;
  1119.    --heading-font-weight: 600;
  1120.    --heading-font-style: normal;
  1121.    --heading-text-transform: normal;
  1122.    --heading-letter-spacing: -0.02em;
  1123.    --text-font-family: Futura, sans-serif;
  1124.    --text-font-weight: 400;
  1125.    --text-font-style: normal;
  1126.    --text-letter-spacing: 0.0em;
  1127.  
  1128.    /* Font sizes */
  1129.    --text-h0: 2.75rem;
  1130.    --text-h1: 2rem;
  1131.    --text-h2: 1.75rem;
  1132.    --text-h3: 1.375rem;
  1133.    --text-h4: 1.125rem;
  1134.    --text-h5: 1.125rem;
  1135.    --text-h6: 1rem;
  1136.    --text-xs: 0.6875rem;
  1137.    --text-sm: 0.75rem;
  1138.    --text-base: 0.875rem;
  1139.    --text-lg: 1.125rem;
  1140.  
  1141.    /**
  1142.     * ---------------------------------------------------------------------
  1143.     * COLORS
  1144.     * ---------------------------------------------------------------------
  1145.     */
  1146.  
  1147.    /* Color settings */--accent: 26 26 26;
  1148.    --text-primary: 26 26 26;
  1149.    --background-primary: 255 255 255;
  1150.    --dialog-background: 255 255 255;
  1151.    --border-color: var(--text-color, var(--text-primary)) / 0.12;
  1152.  
  1153.    /* Button colors */
  1154.    --button-background-primary: 26 26 26;
  1155.    --button-text-primary: 255 255 255;
  1156.    --button-background-secondary: 240 196 23;
  1157.    --button-text-secondary: 26 26 26;
  1158.  
  1159.    /* Status colors */
  1160.    --success-background: 224 244 232;
  1161.    --success-text: 0 163 65;
  1162.    --warning-background: 255 246 233;
  1163.    --warning-text: 255 183 74;
  1164.    --error-background: 254 231 231;
  1165.    --error-text: 248 58 58;
  1166.  
  1167.    /* Product colors */
  1168.    --on-sale-text: 248 58 58;
  1169.    --on-sale-badge-background: 248 58 58;
  1170.    --on-sale-badge-text: 255 255 255;
  1171.    --sold-out-badge-background: 0 0 0;
  1172.    --sold-out-badge-text: 255 255 255;
  1173.    --primary-badge-background: 128 60 238;
  1174.    --primary-badge-text: 255 255 255;
  1175.    --star-color: 255 183 74;
  1176.    --product-card-background: 255 255 255;
  1177.    --product-card-text: 26 26 26;
  1178.  
  1179.    /* Header colors */
  1180.    --header-background: 255 255 255;
  1181.    --header-text: 26 26 26;
  1182.  
  1183.    /* Footer colors */
  1184.    --footer-background: 0 0 0;
  1185.    --footer-text: 255 255 255;
  1186.  
  1187.    /* Rounded variables (used for border radius) */
  1188.    --rounded-xs: 0.25rem;
  1189.    --rounded-sm: 0.375rem;
  1190.    --rounded: 0.75rem;
  1191.    --rounded-lg: 1.5rem;
  1192.    --rounded-full: 9999px;
  1193.  
  1194.    --rounded-button: 0.0rem;
  1195.    --rounded-input: 0.5rem;
  1196.  
  1197.    /* Box shadow */
  1198.    --shadow-sm: 0 2px 8px rgb(var(--text-primary) / 0.1);
  1199.    --shadow: 0 5px 15px rgb(var(--text-primary) / 0.1);
  1200.    --shadow-md: 0 5px 30px rgb(var(--text-primary) / 0.1);
  1201.    --shadow-block: 0px 18px 50px rgb(var(--text-primary) / 0.1);
  1202.  
  1203.    /**
  1204.     * ---------------------------------------------------------------------
  1205.     * OTHER
  1206.     * ---------------------------------------------------------------------
  1207.     */
  1208.  
  1209.    --cursor-close-svg-url: url(//houseofmonac.com/cdn/shop/t/5/assets/cursor-close.svg?v=147174565022153725511679774310);
  1210.    --cursor-zoom-in-svg-url: url(//houseofmonac.com/cdn/shop/t/5/assets/cursor-zoom-in.svg?v=154953035094101115921679774310);
  1211.    --cursor-zoom-out-svg-url: url(//houseofmonac.com/cdn/shop/t/5/assets/cursor-zoom-out.svg?v=16155520337305705181679774310);
  1212.    --checkmark-svg-url: url(//houseofmonac.com/cdn/shop/t/5/assets/checkmark.svg?v=77552481021870063511679774310);
  1213.  }
  1214.  
  1215.  [dir="rtl"]:root {
  1216.    /* RTL support */
  1217.    --transform-logical-flip: -1;
  1218.    --transform-origin-start: right;
  1219.    --transform-origin-end: left;
  1220.  }
  1221.  
  1222.  @media screen and (min-width: 700px) {
  1223.    :root {
  1224.      /* Typography (font size) */
  1225.      --text-h0: 3.5rem;
  1226.      --text-h1: 2.5rem;
  1227.      --text-h2: 2rem;
  1228.      --text-h3: 1.625rem;
  1229.      --text-h4: 1.375rem;
  1230.      --text-h5: 1.125rem;
  1231.      --text-h6: 1rem;
  1232.  
  1233.      --text-xs: 0.75rem;
  1234.      --text-sm: 0.875rem;
  1235.      --text-base: 1.0rem;
  1236.      --text-lg: 1.25rem;
  1237.  
  1238.      /* Spacing */
  1239.      --container-gutter: 2rem;
  1240.      --section-outer-spacing-block: var(--spacing-14);
  1241.      --section-inner-max-spacing-block: var(--spacing-10);
  1242.      --section-inner-spacing-inline: var(--spacing-12);
  1243.      --section-stack-spacing-block: var(--spacing-12);
  1244.  
  1245.      /* Grid gutter */
  1246.      --grid-gutter: var(--spacing-6);
  1247.  
  1248.      /* Product list settings */
  1249.      --product-list-row-gap: var(--spacing-12);
  1250.  
  1251.      /* Form settings */
  1252.      --input-gap: 1rem;
  1253.      --input-height: 3.125rem;
  1254.      --input-padding-inline: var(--spacing-5);
  1255.    }
  1256.  }
  1257.  
  1258.  @media screen and (min-width: 1000px) {
  1259.    :root {
  1260.      /* Spacing settings */
  1261.      --container-gutter: var(--spacing-12);
  1262.      --section-outer-spacing-block: var(--spacing-16);
  1263.      --section-inner-max-spacing-block: var(--spacing-14);
  1264.      --section-inner-spacing-inline: var(--spacing-16);
  1265.      --section-stack-spacing-block: var(--spacing-12);
  1266.    }
  1267.  }
  1268.  
  1269.  @media screen and (min-width: 1150px) {
  1270.    :root {
  1271.      /* Spacing settings */
  1272.      --container-gutter: var(--spacing-12);
  1273.      --section-outer-spacing-block: var(--spacing-16);
  1274.      --section-inner-max-spacing-block: var(--spacing-14);
  1275.      --section-inner-spacing-inline: var(--spacing-16);
  1276.      --section-stack-spacing-block: var(--spacing-12);
  1277.    }
  1278.  }
  1279.  
  1280.  @media screen and (min-width: 1400px) {
  1281.    :root {
  1282.      /* Typography (font size) */
  1283.      --text-h0: 4.5rem;
  1284.      --text-h1: 3.5rem;
  1285.      --text-h2: 2.75rem;
  1286.      --text-h3: 2rem;
  1287.      --text-h4: 1.75rem;
  1288.      --text-h5: 1.375rem;
  1289.      --text-h6: 1.25rem;
  1290.  
  1291.      --section-outer-spacing-block: var(--spacing-20);
  1292.      --section-inner-max-spacing-block: var(--spacing-16);
  1293.      --section-inner-spacing-inline: var(--spacing-18);
  1294.    }
  1295.  }
  1296.  
  1297.  @media screen and (min-width: 1600px) {
  1298.    :root {
  1299.      --section-outer-spacing-block: var(--spacing-20);
  1300.      --section-inner-max-spacing-block: var(--spacing-18);
  1301.      --section-inner-spacing-inline: var(--spacing-20);
  1302.    }
  1303.  }
  1304.  
  1305.  /**
  1306.   * ---------------------------------------------------------------------
  1307.   * LIQUID DEPENDANT CSS
  1308.   *
  1309.   * Our main CSS is Liquid free, but some very specific features depend on
  1310.   * theme settings, so we have them here
  1311.   * ---------------------------------------------------------------------
  1312.   */@media screen and (pointer: fine) {
  1313.        .button:not([disabled]):hover, .btn:not([disabled]):hover, .shopify-payment-button__button--unbranded:not([disabled]):hover {
  1314.          --button-background-opacity: 0.85;
  1315.        }
  1316.  
  1317.        .button--subdued:not([disabled]):hover {
  1318.          --button-background: var(--text-color) / .05 !important;
  1319.        }
  1320.      }</style><script>
  1321.  document.documentElement.classList.replace('no-js', 'js');
  1322.  
  1323.  // This allows to expose several variables to the global scope, to be used in scripts
  1324.  window.themeVariables = {
  1325.    settings: {
  1326.      showPageTransition: true,
  1327.      headingApparition: "split_fade",
  1328.      pageType: "index",
  1329.      moneyFormat: "${{amount}}",
  1330.      moneyWithCurrencyFormat: "${{amount}} USD",
  1331.      currencyCodeEnabled: false,
  1332.      cartType: "drawer",
  1333.      showDiscount: true,
  1334.      discountMode: "saving"
  1335.    },
  1336.  
  1337.    strings: {
  1338.      accessibilityClose: "Close",
  1339.      accessibilityNext: "Next",
  1340.      accessibilityPrevious: "Previous",
  1341.      addToCartButton: "Add to cart",
  1342.      soldOutButton: "Sold out",
  1343.      preOrderButton: "Pre-order",
  1344.      unavailableButton: "Unavailable",
  1345.      closeGallery: "Close gallery",
  1346.      zoomGallery: "Zoom",
  1347.      errorGallery: "Image cannot be loaded",
  1348.      soldOutBadge: "Sold out",
  1349.      discountBadge: "Save @@",
  1350.      sku: "SKU:",
  1351.      searchNoResults: "No results could be found.",
  1352.      addOrderNote: "Add order note",
  1353.      editOrderNote: "Edit order note",
  1354.      shippingEstimatorNoResults: "Sorry, we do not ship to your address.",
  1355.      shippingEstimatorOneResult: "There is one shipping rate for your address:",
  1356.      shippingEstimatorMultipleResults: "There are several shipping rates for your address:",
  1357.      shippingEstimatorError: "One or more error occurred while retrieving shipping rates:"
  1358.    },
  1359.  
  1360.    breakpoints: {
  1361.      'sm': 'screen and (min-width: 700px)',
  1362.      'md': 'screen and (min-width: 1000px)',
  1363.      'lg': 'screen and (min-width: 1150px)',
  1364.      'xl': 'screen and (min-width: 1400px)',
  1365.  
  1366.      'sm-max': 'screen and (max-width: 699px)',
  1367.      'md-max': 'screen and (max-width: 999px)',
  1368.      'lg-max': 'screen and (max-width: 1149px)',
  1369.      'xl-max': 'screen and (max-width: 1399px)'
  1370.    }
  1371.  };window.addEventListener('DOMContentLoaded', () => {
  1372.      const isReloaded = (window.performance.navigation && window.performance.navigation.type === 1) || window.performance.getEntriesByType('navigation').map((nav) => nav.type).includes('reload');
  1373.  
  1374.      if ('animate' in document.documentElement && window.matchMedia('(prefers-reduced-motion: no-preference)').matches && document.referrer.includes(location.host) && !isReloaded) {
  1375.        document.body.animate({opacity: [0, 1]}, {duration: 115, fill: 'forwards'});
  1376.      }
  1377.    });
  1378.  
  1379.    window.addEventListener('pageshow', (event) => {
  1380.      document.body.classList.remove('page-transition');
  1381.  
  1382.      if (event.persisted) {
  1383.        document.body.animate({opacity: [0, 1]}, {duration: 0, fill: 'forwards'});
  1384.      }
  1385.    });// For detecting native share
  1386.  document.documentElement.classList.add(`native-share--${navigator.share ? 'enabled' : 'disabled'}`);</script><script type="module" src="//houseofmonac.com/cdn/shop/t/5/assets/vendor.min.js?v=161072099565793977701679774294"></script>
  1387.    <script type="module" src="//houseofmonac.com/cdn/shop/t/5/assets/theme.js?v=49892170302731136491697768327"></script>
  1388.    <script type="module" src="//houseofmonac.com/cdn/shop/t/5/assets/sections.js?v=77734894065137989411697768380"></script>
  1389.  
  1390.    <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta name="google-site-verification" content="EMDM2oSOX0mixvY9nrm90StcC86k5eyNaZRjC0fRfCE">
  1391. <meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/71899971858/digital_wallets/dialog">
  1392. <meta name="shopify-checkout-api-token" content="0e829a237eaa9a51bb114f386e51b471">
  1393. <meta id="in-context-paypal-metadata" data-shop-id="71899971858" data-venmo-supported="true" data-environment="production" data-locale="en_US" data-paypal-v4="true" data-currency="USD">
  1394. <script async="async" src="/checkouts/internal/preloads.js?locale=en-US"></script>
  1395. <link rel="preconnect" href="https://shop.app" crossorigin="anonymous">
  1396. <script async="async" src="https://shop.app/checkouts/internal/preloads.js?locale=en-US&shop_id=71899971858" crossorigin="anonymous"></script>
  1397. <script id="apple-pay-shop-capabilities" type="application/json">{"shopId":71899971858,"countryCode":"US","currencyCode":"USD","merchantCapabilities":["supports3DS"],"merchantId":"gid:\/\/shopify\/Shop\/71899971858","merchantName":"Monac Attar","requiredBillingContactFields":["postalAddress","email","phone"],"requiredShippingContactFields":["postalAddress","email","phone"],"shippingType":"shipping","supportedNetworks":["visa","masterCard","amex","discover","elo","jcb"],"total":{"type":"pending","label":"Monac Attar","amount":"1.00"},"shopifyPaymentsEnabled":true,"supportsSubscriptions":true}</script>
  1398. <script id="shopify-features" type="application/json">{"accessToken":"0e829a237eaa9a51bb114f386e51b471","betas":["rich-media-storefront-analytics"],"domain":"houseofmonac.com","predictiveSearch":true,"shopId":71899971858,"locale":"en"}</script>
  1399. <script>var Shopify = Shopify || {};
  1400. Shopify.shop = "the-white-market-2718.myshopify.com";
  1401. Shopify.locale = "en";
  1402. Shopify.currency = {"active":"USD","rate":"1.0"};
  1403. Shopify.country = "US";
  1404. Shopify.theme = {"name":"Impact version 4.0.2","id":146188894482,"schema_name":"Impact","schema_version":"4.0.2","theme_store_id":null,"role":"main"};
  1405. Shopify.theme.handle = "null";
  1406. Shopify.theme.style = {"id":null,"handle":null};
  1407. Shopify.cdnHost = "houseofmonac.com/cdn";
  1408. Shopify.routes = Shopify.routes || {};
  1409. Shopify.routes.root = "/";</script>
  1410. <script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
  1411. <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>
  1412. <script>window.ShopifyPay = window.ShopifyPay || {};
  1413. window.ShopifyPay.apiHost = "shop.app\/pay";</script>
  1414. <script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script>
  1415. <script>
  1416.  window.Shopify = window.Shopify || {};
  1417.  if (!window.Shopify.featureAssets) window.Shopify.featureAssets = {};
  1418.  window.Shopify.featureAssets['shop-js'] = {"init-shop-email-lookup-coordinator":["modules/v2/client.init-shop-email-lookup-coordinator_BUKIXhNj.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js"],"shop-cash-offers":["modules/v2/client.shop-cash-offers_D4Vq8dJk.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js","modules/v2/chunk.modal_jJmqkf_E.esm.js"],"shop-button":["modules/v2/client.shop-button_BIqK537a.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js"],"shop-toast-manager":["modules/v2/client.shop-toast-manager_mP7SeWdA.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js"],"checkout-modal":["modules/v2/client.checkout-modal_ojhjTf2F.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js","modules/v2/chunk.modal_jJmqkf_E.esm.js"],"init-windoid":["modules/v2/client.init-windoid_Dt4BuwVN.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js"],"pay-button":["modules/v2/client.pay-button_CN_b5Zcy.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js"],"init-fed-cm":["modules/v2/client.init-fed-cm_DJVLnZM5.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js"],"init-shop-for-new-customer-accounts":["modules/v2/client.init-shop-for-new-customer-accounts_BrN919g7.en.esm.js","modules/v2/client.shop-login-button_M8xp_x_L.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js","modules/v2/chunk.modal_jJmqkf_E.esm.js"],"init-customer-accounts":["modules/v2/client.init-customer-accounts_CfjhVuD6.en.esm.js","modules/v2/client.shop-login-button_M8xp_x_L.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js","modules/v2/chunk.modal_jJmqkf_E.esm.js"],"shop-follow-button":["modules/v2/client.shop-follow-button_CVrazUaV.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js","modules/v2/chunk.modal_jJmqkf_E.esm.js"],"avatar":["modules/v2/client.avatar_BTnouDA3.en.esm.js"],"init-customer-accounts-sign-up":["modules/v2/client.init-customer-accounts-sign-up_BMfyjBWA.en.esm.js","modules/v2/client.shop-login-button_M8xp_x_L.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js","modules/v2/chunk.modal_jJmqkf_E.esm.js"],"shop-login-button":["modules/v2/client.shop-login-button_M8xp_x_L.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js","modules/v2/chunk.modal_jJmqkf_E.esm.js"],"lead-capture":["modules/v2/client.lead-capture_DjiAY4zI.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js","modules/v2/chunk.modal_jJmqkf_E.esm.js"],"payment-terms":["modules/v2/client.payment-terms_ofniXy4E.en.esm.js","modules/v2/chunk.common_AfVYrPAm.esm.js","modules/v2/chunk.modal_jJmqkf_E.esm.js"]};
  1419. </script>
  1420. <script>(function() {
  1421.  function asyncLoad() {
  1422.    var urls = ["https:\/\/intg.snapchat.com\/shopify\/shopify-scevent-init.js?id=c1426a39-06ae-4037-ba85-e1a021b8d23a\u0026shop=the-white-market-2718.myshopify.com","https:\/\/widgets.juniphq.com\/v1\/junip_shopify.js?shop=the-white-market-2718.myshopify.com"];
  1423.    for (var i = 0; i < urls.length; i++) {
  1424.      var s = document.createElement('script');
  1425.      s.type = 'text/javascript';
  1426.      s.async = true;
  1427.      s.src = urls[i];
  1428.      var x = document.getElementsByTagName('script')[0];
  1429.      x.parentNode.insertBefore(s, x);
  1430.    }
  1431.  };
  1432.  if(window.attachEvent) {
  1433.    window.attachEvent('onload', asyncLoad);
  1434.  } else {
  1435.    window.addEventListener('load', asyncLoad, false);
  1436.  }
  1437. })();</script>
  1438. <script id="__st">var __st={"a":71899971858,"offset":-14400,"reqid":"b2d4a05a-0953-4032-825b-f19b1e1704b1-1751324424","pageurl":"houseofmonac.com\/","u":"0e795cbfc67f","p":"home"};</script>
  1439. <script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
  1440. <script id="captcha-bootstrap">!function(){'use strict';const t='contact',e='account',n='new_comment',o=[[t,t],['blogs',n],['comments',n],[t,'customer']],c=[[e,'customer_login'],[e,'guest_login'],[e,'recover_customer_password'],[e,'create_customer']],r=t=>t.map((([t,e])=>`form[action*='/${t}']:not([data-nocaptcha='true']) input[name='form_type'][value='${e}']`)).join(','),a=t=>()=>t?[...document.querySelectorAll(t)].map((t=>t.form)):[];function s(){const t=[...o],e=r(t);return a(e)}const i='password',u='form_key',d=['recaptcha-v3-token','g-recaptcha-response','h-captcha-response',i],f=()=>{try{return window.sessionStorage}catch{return}},m='__shopify_v',_=t=>t.elements[u];function p(t,e,n=!1){try{const o=window.sessionStorage,c=JSON.parse(o.getItem(e)),{data:r}=function(t){const{data:e,action:n}=t;return t[m]||n?{data:e,action:n}:{data:t,action:n}}(c);for(const[e,n]of Object.entries(r))t.elements[e]&&(t.elements[e].value=n);n&&o.removeItem(e)}catch(o){console.error('form repopulation failed',{error:o})}}const l='form_type',E='cptcha';function T(t){t.dataset[E]=!0}const w=window,h=w.document,L='Shopify',v='ce_forms',y='captcha';let A=!1;((t,e)=>{const n=(g='f06e6c50-85a8-45c8-87d0-21a2b65856fe',I='https://cdn.shopify.com/shopifycloud/storefront-forms-hcaptcha/ce_storefront_forms_captcha_hcaptcha.v1.5.2.iife.js',D={infoText:'Protected by hCaptcha',privacyText:'Privacy',termsText:'Terms'},(t,e,n)=>{const o=w[L][v],c=o.bindForm;if(c)return c(t,g,e,D).then(n);var r;o.q.push([[t,g,e,D],n]),r=I,A||(h.body.append(Object.assign(h.createElement('script'),{id:'captcha-provider',async:!0,src:r})),A=!0)});var g,I,D;w[L]=w[L]||{},w[L][v]=w[L][v]||{},w[L][v].q=[],w[L][y]=w[L][y]||{},w[L][y].protect=function(t,e){n(t,void 0,e),T(t)},Object.freeze(w[L][y]),function(t,e,n,w,h,L){const[v,y,A,g]=function(t,e,n){const i=e?o:[],u=t?c:[],d=[...i,...u],f=r(d),m=r(i),_=r(d.filter((([t,e])=>n.includes(e))));return[a(f),a(m),a(_),s()]}(w,h,L),I=t=>{const e=t.target;return e instanceof HTMLFormElement?e:e&&e.form},D=t=>v().includes(t);t.addEventListener('submit',(t=>{const e=I(t);if(!e)return;const n=D(e)&&!e.dataset.hcaptchaBound&&!e.dataset.recaptchaBound,o=_(e),c=g().includes(e)&&(!o||!o.value);(n||c)&&t.preventDefault(),c&&!n&&(function(t){try{if(!f())return;!function(t){const e=f();if(!e)return;const n=_(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){_(t)||t.append(Object.assign(document.createElement('input'),{type:'hidden',name:u})),t.elements[u].value=e}(t,e),function(t,e){const n=f();if(!n)return;const o=[...t.querySelectorAll(`input[type='${i}']`)].map((({name:t})=>t)),c=[...d,...o],r={};for(const[a,s]of new FormData(t).entries())c.includes(a)||(r[a]=s);n.setItem(e,JSON.stringify({[m]:1,action:t.action,data:r}))}(t,e)}catch(e){console.error('failed to persist form',e)}}(e),e.submit())}));const S=(t,e)=>{t&&!t.dataset[E]&&(n(t,e.some((e=>e===t))),T(t))};for(const o of['focusin','change'])t.addEventListener(o,(t=>{const e=I(t);D(e)&&S(e,y())}));const B=e.get('form_key'),M=e.get(l),P=B&&M;t.addEventListener('DOMContentLoaded',(()=>{const t=y();if(P)for(const e of t)e.elements[l].value===M&&p(e,B);[...new Set([...A(),...v().filter((t=>'true'===t.dataset.shopifyCaptcha))])].forEach((e=>S(e,t)))}))}(h,new URLSearchParams(w.location.search),n,t,e,['guest_login'])})(!0,!0)}();</script>
  1441. <script integrity="sha256-DTN/DDRLW4ijBM7GedgYZhatFOf+PYQ7/WEM4Q6kiFw=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//houseofmonac.com/cdn/shopifycloud/shopify/assets/storefront/load_feature-0d337f0c344b5b88a304cec679d8186616ad14e7fe3d843bfd610ce10ea4885c.js" crossorigin="anonymous"></script>
  1442. <script crossorigin="anonymous" defer="defer" src="//houseofmonac.com/cdn/shopifycloud/shopify/assets/shopify_pay/storefront-9846a8162782d0b340b9256e1835a4bf4ccf7ab521e1221004c475e86df911f4.js?v=20220906"></script>
  1443. <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://houseofmonac.com/cdn/shopifycloud/portable-wallets/latest/portable-wallets.en.js",t.type="module",document.head.appendChild(t)}};
  1444. </script>
  1445. <script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
  1446.  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);
  1447. </script>
  1448. <script>
  1449.  function portableWalletsCleanup(e){e&&e.src&&console.error("Failed to load portable wallets script "+e.src);var t=document.querySelectorAll("shopify-accelerated-checkout .shopify-payment-button__skeleton, shopify-accelerated-checkout-cart .wallet-cart-button__skeleton"),e=document.getElementById("shopify-buyer-consent");for(let e=0;e<t.length;e++)t[e].remove();e&&e.remove()}function portableWalletsNotLoadedAsModule(e){e instanceof ErrorEvent&&"string"==typeof e.message&&e.message.includes("import.meta")&&"string"==typeof e.filename&&e.filename.includes("portable-wallets")&&(window.removeEventListener("error",portableWalletsNotLoadedAsModule),window.Shopify.PaymentButton.failedToLoad=e,"loading"===document.readyState?document.addEventListener("DOMContentLoaded",window.Shopify.PaymentButton.init):window.Shopify.PaymentButton.init())}window.addEventListener("error",portableWalletsNotLoadedAsModule);
  1450. </script>
  1451.  
  1452. <script type="module" src="https://houseofmonac.com/cdn/shopifycloud/portable-wallets/latest/portable-wallets.en.js" onError="portableWalletsCleanup(this)" crossorigin="anonymous"></script>
  1453. <script nomodule>
  1454.  document.addEventListener("DOMContentLoaded", portableWalletsCleanup);
  1455. </script>
  1456.  
  1457. <script id='scb4127' type='text/javascript' async='' src='https://houseofmonac.com/cdn/shopifycloud/privacy-banner/storefront-banner.js'></script>
  1458. <link rel="stylesheet" media="screen" href="https://houseofmonac.com/cdn/shopifycloud/portable-wallets/latest/accelerated-checkout-backwards-compat.css" crossorigin="anonymous">
  1459.  
  1460. <style id="shopify-accelerated-checkout-cart">
  1461.        #shopify-buyer-consent {
  1462.  margin-top: 1em;
  1463.  display: inline-block;
  1464.  width: 100%;
  1465. }
  1466.  
  1467. #shopify-buyer-consent.hidden {
  1468.  display: none;
  1469. }
  1470.  
  1471. #shopify-subscription-policy-button {
  1472.  background: none;
  1473.  border: none;
  1474.  padding: 0;
  1475.  text-decoration: underline;
  1476.  font-size: inherit;
  1477.  cursor: pointer;
  1478. }
  1479.  
  1480. #shopify-subscription-policy-button::before {
  1481.  box-shadow: none;
  1482. }
  1483.  
  1484.      </style>
  1485. <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>
  1486. <link href="//houseofmonac.com/cdn/shop/t/5/assets/theme.css?v=68771120327901222161710526423" rel="stylesheet" type="text/css" media="all" /><!-- BEGIN app block: shopify://apps/storeseo/blocks/store_seo_meta/64b24496-16f9-4afc-a800-84e6acc4a36c --><!-- BEGIN app snippet: google_site_verification_meta --><!-- END app snippet --><!-- BEGIN app snippet: no_follow_no_index --><!-- END app snippet --><!-- BEGIN app snippet: social_media_preview --><!-- END app snippet --><!-- BEGIN app snippet: canonical_url --><!-- END app snippet --><!-- BEGIN app snippet: redirect_out_of_stock --><!-- END app snippet --><!-- BEGIN app snippet: local_seo --><!-- END app snippet --><!-- BEGIN app snippet: local_seo_breadcrumb -->
  1487.  
  1488.  
  1489.    <script
  1490.      type="application/ld+json"
  1491.      injected-by-storeseo="true"
  1492.    >
  1493.      {
  1494.        "@context": "https://schema.org",
  1495.        "@type": "BreadcrumbList",
  1496.        "itemListElement": [{
  1497.          "@type": "ListItem",
  1498.          "position": 1,
  1499.          "name": "Home",
  1500.          "item": "https:\/\/houseofmonac.com"
  1501.        }
  1502.        
  1503.        ,{
  1504.          "@type": "ListItem",
  1505.          "position": 2,
  1506.          "name": "Shop Dupe Fragrances, Lotions, Body Wash \u0026amp; Candles"
  1507.        }
  1508.        
  1509.        ]
  1510.      }
  1511.    </script>
  1512.  
  1513.  
  1514. <!-- END app snippet --><!-- BEGIN app snippet: local_seo_collection -->
  1515. <!-- END app snippet --><!-- BEGIN app snippet: local_seo_blogs -->
  1516. <!-- END app snippet --><!-- BEGIN app snippet: local_seo_product --><!-- END app snippet --><!-- BEGIN app snippet: local_seo_article --><!-- END app snippet --><!-- BEGIN app snippet: local_seo_organization -->
  1517.    
  1518.    
  1519.  
  1520.    
  1521.  
  1522.  
  1523. <!-- END app snippet --><!-- BEGIN app snippet: local_seo_local_business -->
  1524.    
  1525.    
  1526.  
  1527.    
  1528.  
  1529. <!-- END app snippet -->
  1530.  
  1531.  
  1532. <!-- END app block --><script src="https://cdn.shopify.com/extensions/ca001aef-6799-4e4c-bc7d-92ac861e488c/inbox-1238/assets/inbox-chat-loader.js" type="text/javascript" defer="defer"></script>
  1533. <link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
  1534. <script>(function(){if ("sendBeacon" in navigator && "performance" in window) {var session_token = document.cookie.match(/_shopify_s=([^;]*)/);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: 71899971858,url: window.location.href,navigation_start,duration: currentMs - navigation_start,session_token: session_token && session_token.length === 2 ? session_token[1] : "",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>
  1535. <script id="web-pixels-manager-setup">(function e(e,d,r,n,o,i){if(void 0===i&&(i={}),!Boolean(null===(t=null===(a=window.Shopify)||void 0===a?void 0:a.analytics)||void 0===t?void 0:t.replayQueue)){var a,t;window.Shopify=window.Shopify||{};var s=window.Shopify;s.analytics=s.analytics||{};var l=s.analytics;l.replayQueue=[],l.publish=function(e,d,r){return l.replayQueue.push([e,d,r]),!0};try{self.performance.mark("wpm:start")}catch(e){}var u=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"}(),c="modern"===u?"modern":"legacy",f=(null!=o?o:{modern:"",legacy:""})[c],m=function(e){return[e.baseUrl,"/wpm","/b",e.hashVersion,"modern"===e.buildTarget?"m":"l",".js"].join("")}({baseUrl:r,hashVersion:n,buildTarget:c}),p=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:n,bundleTarget:u,surface:e.surface,pageUrl:self.location.href,monorailEndpoint:e.monorailEndpoint});try{i.browserTarget=u,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:m,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 r=window.webPixelsManager.init(e)||void 0;if(r){d(r);var n=window.Shopify.analytics;n.replayQueue.forEach((function(e){var d=e[0],n=e[1],o=e[2];r.publishCustomEvent(d,n,o)})),n.replayQueue=[],n.publish=r.publishCustomEvent,n.visitor=r.visitor,n.initialized=!0}}},onerror:function(){return p.emit({status:"failed",errorMsg:"".concat(m," has failed to load")})},sri:function(e){var d=/^sha384-[A-Za-z0-9+/=]+$/;return"string"==typeof e&&d.test(e)}(f)?f:"",scriptDataAttributes:i}),p.emit({status:"loading"})}catch(e){p.emit({status:"failed",errorMsg:(null==e?void 0:e.message)||"Unknown error"})}}})({shopId: 71899971858,storefrontBaseUrl: "https://houseofmonac.com",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",monorailEndpoint: "https://monorail-edge.shopifysvc.com/unstable/produce_batch",surface: "storefront-renderer",enabledBetaFlags: ["ac843a20"],webPixelsConfigList: [{"id":"789283090","configuration":"{\"config\":\"{\\\"google_tag_ids\\\":[\\\"G-M3W8S30CWH\\\",\\\"GT-K824VXJK\\\",\\\"G-QWF0043TTT\\\"],\\\"target_country\\\":\\\"US\\\",\\\"gtag_events\\\":[{\\\"type\\\":\\\"search\\\",\\\"action_label\\\":[\\\"G-M3W8S30CWH\\\",\\\"AW-863753678\\/m3uvCLic6t0aEM6r75sD\\\",\\\"G-QWF0043TTT\\\"]},{\\\"type\\\":\\\"begin_checkout\\\",\\\"action_label\\\":[\\\"G-M3W8S30CWH\\\",\\\"AW-863753678\\/Rx8WCIiZ6t0aEM6r75sD\\\",\\\"G-QWF0043TTT\\\"]},{\\\"type\\\":\\\"view_item\\\",\\\"action_label\\\":[\\\"G-M3W8S30CWH\\\",\\\"AW-863753678\\/XvWoCLWc6t0aEM6r75sD\\\",\\\"MC-GV5D758D4D\\\",\\\"G-QWF0043TTT\\\"]},{\\\"type\\\":\\\"purchase\\\",\\\"action_label\\\":[\\\"G-M3W8S30CWH\\\",\\\"AW-863753678\\/bHHACIWZ6t0aEM6r75sD\\\",\\\"MC-GV5D758D4D\\\",\\\"G-QWF0043TTT\\\"]},{\\\"type\\\":\\\"page_view\\\",\\\"action_label\\\":[\\\"G-M3W8S30CWH\\\",\\\"AW-863753678\\/GEtvCI6Z6t0aEM6r75sD\\\",\\\"MC-GV5D758D4D\\\",\\\"G-QWF0043TTT\\\"]},{\\\"type\\\":\\\"add_payment_info\\\",\\\"action_label\\\":[\\\"G-M3W8S30CWH\\\",\\\"AW-863753678\\/5ZhoCLuc6t0aEM6r75sD\\\",\\\"G-QWF0043TTT\\\"]},{\\\"type\\\":\\\"add_to_cart\\\",\\\"action_label\\\":[\\\"G-M3W8S30CWH\\\",\\\"AW-863753678\\/oh1cCIuZ6t0aEM6r75sD\\\",\\\"G-QWF0043TTT\\\"]}],\\\"enable_monitoring_mode\\\":false}\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"26a08df6fb732969dd50810ae4fdc2c1","type":"APP","apiClientId":1780363,"privacyPurposes":[]},{"id":"700121362","configuration":"{\"pixelCode\":\"CLPAFDRC77U7NENNNS40\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"22e92c2ad45662f435e4801458fb78cc","type":"APP","apiClientId":4383523,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"388137234","configuration":"{\"pixel_id\":\"163094182903498\",\"pixel_type\":\"facebook_pixel\",\"metaapp_system_user_token\":\"-\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"b0d5a11b80f868de49df845559dff0d6","type":"APP","apiClientId":2329312,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"188350738","configuration":"{\"tagID\":\"2612466467270\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"a89c2bcc8138c8634a19a76241c7876a","type":"APP","apiClientId":3009811,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"29196562","configuration":"{\"pixelId\":\"c1426a39-06ae-4037-ba85-e1a021b8d23a\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"22f8c536e7873873f3de636ed467f321","type":"APP","apiClientId":2556259,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0420","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0420","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,effectiveTopLevelDomain: "com",initData: {"shop":{"name":"Monac Attar","paymentSettings":{"currencyCode":"USD"},"myshopifyDomain":"the-white-market-2718.myshopify.com","countryCode":"US","storefrontUrl":"https://houseofmonac.com"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"purchasingCompany":null},},function pageEvents(webPixelsManagerAPI) {webPixelsManagerAPI.publish("page_viewed", {});},"https://houseofmonac.com/cdn","6f677fd0w3c093ab1p02f691e5m32dd6af7",{"modern":"","legacy":""},{"shopId":"71899971858","storefrontBaseUrl":"https://houseofmonac.com","extensionBaseUrl":"https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager","surface":"storefront-renderer","enabledBetaFlags":"[\"ac843a20\"]","isMerchantRequest":"false","hashVersion":"6f677fd0w3c093ab1p02f691e5m32dd6af7"});</script><script>
  1536.  window.ShopifyAnalytics = window.ShopifyAnalytics || {};
  1537.  window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
  1538.  window.ShopifyAnalytics.meta.currency = 'USD';
  1539.  var meta = {"page":{"pageType":"home"}};
  1540.  for (var attr in meta) {
  1541.    window.ShopifyAnalytics.meta[attr] = meta[attr];
  1542.  }
  1543. </script>
  1544. <script class="analytics">
  1545.  (function () {
  1546.    var customDocumentWrite = function(content) {
  1547.      var jquery = null;
  1548.  
  1549.      if (window.jQuery) {
  1550.        jquery = window.jQuery;
  1551.      } else if (window.Checkout && window.Checkout.$) {
  1552.        jquery = window.Checkout.$;
  1553.      }
  1554.  
  1555.      if (jquery) {
  1556.        jquery('body').append(content);
  1557.      }
  1558.    };
  1559.  
  1560.    var hasLoggedConversion = function(token) {
  1561.      if (token) {
  1562.        return document.cookie.indexOf('loggedConversion=' + token) !== -1;
  1563.      }
  1564.      return false;
  1565.    }
  1566.  
  1567.    var setCookieIfConversion = function(token) {
  1568.      if (token) {
  1569.        var twoMonthsFromNow = new Date(Date.now());
  1570.        twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);
  1571.  
  1572.        document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
  1573.      }
  1574.    }
  1575.  
  1576.    var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
  1577.    if (trekkie.integrations) {
  1578.      return;
  1579.    }
  1580.    trekkie.methods = [
  1581.      'identify',
  1582.      'page',
  1583.      'ready',
  1584.      'track',
  1585.      'trackForm',
  1586.      'trackLink'
  1587.    ];
  1588.    trekkie.factory = function(method) {
  1589.      return function() {
  1590.        var args = Array.prototype.slice.call(arguments);
  1591.        args.unshift(method);
  1592.        trekkie.push(args);
  1593.        return trekkie;
  1594.      };
  1595.    };
  1596.    for (var i = 0; i < trekkie.methods.length; i++) {
  1597.      var key = trekkie.methods[i];
  1598.      trekkie[key] = trekkie.factory(key);
  1599.    }
  1600.    trekkie.load = function(config) {
  1601.      trekkie.config = config || {};
  1602.      trekkie.config.initialDocumentCookie = document.cookie;
  1603.      var first = document.getElementsByTagName('script')[0];
  1604.      var script = document.createElement('script');
  1605.      script.type = 'text/javascript';
  1606.      script.onerror = function(e) {
  1607.        var scriptFallback = document.createElement('script');
  1608.        scriptFallback.type = 'text/javascript';
  1609.        scriptFallback.onerror = function(error) {
  1610.                var Monorail = {
  1611.      produce: function produce(monorailDomain, schemaId, payload) {
  1612.        var currentMs = new Date().getTime();
  1613.        var event = {
  1614.          schema_id: schemaId,
  1615.          payload: payload,
  1616.          metadata: {
  1617.            event_created_at_ms: currentMs,
  1618.            event_sent_at_ms: currentMs
  1619.          }
  1620.        };
  1621.        return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
  1622.      },
  1623.      sendRequest: function sendRequest(endpointUrl, payload) {
  1624.        // Try the sendBeacon API
  1625.        if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
  1626.          var blobData = new window.Blob([payload], {
  1627.            type: 'text/plain'
  1628.          });
  1629.  
  1630.          if (window.navigator.sendBeacon(endpointUrl, blobData)) {
  1631.            return true;
  1632.          } // sendBeacon was not successful
  1633.  
  1634.        } // XHR beacon
  1635.  
  1636.        var xhr = new XMLHttpRequest();
  1637.  
  1638.        try {
  1639.          xhr.open('POST', endpointUrl);
  1640.          xhr.setRequestHeader('Content-Type', 'text/plain');
  1641.          xhr.send(payload);
  1642.        } catch (e) {
  1643.          console.log(e);
  1644.        }
  1645.  
  1646.        return false;
  1647.      },
  1648.      isIos12: function isIos12() {
  1649.        return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
  1650.      }
  1651.    };
  1652.    Monorail.produce('monorail-edge.shopifysvc.com',
  1653.      'trekkie_storefront_load_errors/1.1',
  1654.      {shop_id: 71899971858,
  1655.      theme_id: 146188894482,
  1656.      app_name: "storefront",
  1657.      context_url: window.location.href,
  1658.      source_url: "//houseofmonac.com/cdn/s/trekkie.storefront.7f48c99429cb25be36839f7a7bcca2ac8a69827d.min.js"});
  1659.  
  1660.        };
  1661.        scriptFallback.async = true;
  1662.        scriptFallback.src = '//houseofmonac.com/cdn/s/trekkie.storefront.7f48c99429cb25be36839f7a7bcca2ac8a69827d.min.js';
  1663.        first.parentNode.insertBefore(scriptFallback, first);
  1664.      };
  1665.      script.async = true;
  1666.      script.src = '//houseofmonac.com/cdn/s/trekkie.storefront.7f48c99429cb25be36839f7a7bcca2ac8a69827d.min.js';
  1667.      first.parentNode.insertBefore(script, first);
  1668.    };
  1669.    trekkie.load(
  1670.      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":71899971858,"isMerchantRequest":null,"themeId":146188894482,"themeCityHash":"12171347175286495334","contentLanguage":"en","currency":"USD"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain"},"Session Attribution":{},"S2S":{"facebookCapiEnabled":true,"source":"trekkie-storefront-renderer","apiClientId":580111}}
  1671.    );
  1672.  
  1673.    var loaded = false;
  1674.    trekkie.ready(function() {
  1675.      if (loaded) return;
  1676.      loaded = true;
  1677.  
  1678.      window.ShopifyAnalytics.lib = window.trekkie;
  1679.  
  1680.      var originalDocumentWrite = document.write;
  1681.      document.write = customDocumentWrite;
  1682.      try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
  1683.      document.write = originalDocumentWrite;
  1684.  
  1685.      window.ShopifyAnalytics.lib.page(null,{"pageType":"home","shopifyEmitted":true});
  1686.  
  1687.      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
  1688.      var token = match? match[1]: undefined;
  1689.      if (!hasLoggedConversion(token)) {
  1690.        setCookieIfConversion(token);
  1691.        
  1692.      }
  1693.    });
  1694.  
  1695.  
  1696.        var eventsListenerScript = document.createElement('script');
  1697.        eventsListenerScript.async = true;
  1698.        eventsListenerScript.src = "//houseofmonac.com/cdn/shopifycloud/shopify/assets/shop_events_listener-1d89eace2351930ad947448cd92e0cd236cb81ecc8f6bbf9ce2331557cb884b2.js";
  1699.        document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
  1700.  
  1701. })();</script>
  1702. <script
  1703.  defer
  1704.  src="https://houseofmonac.com/cdn/shopifycloud/perf-kit/shopify-perf-kit-1.6.6.min.js"
  1705.  data-application="storefront-renderer"
  1706.  data-shop-id="71899971858"
  1707.  data-render-region="gcp-us-east1"
  1708.  data-page-type="index"
  1709.  data-theme-instance-id="146188894482"
  1710.  data-theme-name="Impact"
  1711.  data-theme-version="4.0.2"
  1712.  data-monorail-region="shop_domain"
  1713.  data-resource-timing-sampling-rate="10"
  1714.  data-shs="true"
  1715. ></script>
  1716. </head>
  1717.  
  1718.  <body class="page-transition zoom-image--enabled"><!-- DRAWER -->
  1719. <template id="drawer-default-template">
  1720.  <style>
  1721.    [hidden] {
  1722.      display: none !important;
  1723.    }
  1724.  </style>
  1725.  
  1726.  <button part="outside-close-button" is="close-button" aria-label="Close"><svg role="presentation" stroke-width="2" focusable="false" width="24" height="24" class="icon icon-close" viewBox="0 0 24 24">
  1727.        <path d="M17.658 6.343 6.344 17.657M17.658 17.657 6.344 6.343" stroke="currentColor"></path>
  1728.      </svg></button>
  1729.  
  1730.  <div part="overlay"></div>
  1731.  
  1732.  <div part="content">
  1733.    <header part="header">
  1734.      <slot name="header"></slot>
  1735.  
  1736.      <button part="close-button" is="close-button" aria-label="Close"><svg role="presentation" stroke-width="2" focusable="false" width="24" height="24" class="icon icon-close" viewBox="0 0 24 24">
  1737.        <path d="M17.658 6.343 6.344 17.657M17.658 17.657 6.344 6.343" stroke="currentColor"></path>
  1738.      </svg></button>
  1739.    </header>
  1740.  
  1741.    <div part="body">
  1742.      <slot></slot>
  1743.    </div>
  1744.  
  1745.    <footer part="footer">
  1746.      <slot name="footer"></slot>
  1747.    </footer>
  1748.  </div>
  1749. </template>
  1750.  
  1751. <!-- POPOVER -->
  1752. <template id="popover-default-template">
  1753.  <button part="outside-close-button" is="close-button" aria-label="Close"><svg role="presentation" stroke-width="2" focusable="false" width="24" height="24" class="icon icon-close" viewBox="0 0 24 24">
  1754.        <path d="M17.658 6.343 6.344 17.657M17.658 17.657 6.344 6.343" stroke="currentColor"></path>
  1755.      </svg></button>
  1756.  
  1757.  <div part="overlay"></div>
  1758.  
  1759.  <div part="content">
  1760.    <header part="title">
  1761.      <slot name="title"></slot>
  1762.    </header>
  1763.  
  1764.    <div part="body">
  1765.      <slot></slot>
  1766.    </div>
  1767.  </div>
  1768. </template><a href="#main" class="skip-to-content sr-only">Skip to content</a><!-- BEGIN sections: header-group -->
  1769. <aside id="shopify-section-sections--18347439554834__announcement-bar" class="shopify-section shopify-section-group-header-group shopify-section--announcement-bar"><style>
  1770.    :root {
  1771.      --sticky-announcement-bar-enabled:1;
  1772.    }#shopify-section-sections--18347439554834__announcement-bar {
  1773.        position: sticky;
  1774.        top: 0;
  1775.        z-index: 20;
  1776.      }
  1777.  
  1778.      .shopify-section--header ~ #shopify-section-sections--18347439554834__announcement-bar {
  1779.        top: calc(var(--sticky-header-enabled, 0) * var(--header-height, 0px));
  1780.      }</style><height-observer variable="announcement-bar">
  1781.    <div class="announcement-bar bg-custom text-custom"style="--background: 26 26 26; --text-color: 255 255 255;"><marquee-text scrolling-speed="10" class="announcement-bar__scrolling-list"><span class="announcement-bar__item" ><p class="bold text-base" >4Th Of July Sale Use Code - Freedom For 20% Off
  1782. </p>
  1783.  
  1784.              <span class="shape-circle shape--sm"></span></span><span class="announcement-bar__item" aria-hidden="true"><p class="bold text-base" >4Th Of July Sale Use Code - Freedom For 20% Off
  1785. </p>
  1786.  
  1787.              <span class="shape-circle shape--sm"></span></span><span class="announcement-bar__item" aria-hidden="true"><p class="bold text-base" >4Th Of July Sale Use Code - Freedom For 20% Off
  1788. </p>
  1789.  
  1790.              <span class="shape-circle shape--sm"></span></span><span class="announcement-bar__item" aria-hidden="true"><p class="bold text-base" >4Th Of July Sale Use Code - Freedom For 20% Off
  1791. </p>
  1792.  
  1793.              <span class="shape-circle shape--sm"></span></span><span class="announcement-bar__item" aria-hidden="true"><p class="bold text-base" >4Th Of July Sale Use Code - Freedom For 20% Off
  1794. </p>
  1795.  
  1796.              <span class="shape-circle shape--sm"></span></span><span class="announcement-bar__item" aria-hidden="true"><p class="bold text-base" >4Th Of July Sale Use Code - Freedom For 20% Off
  1797. </p>
  1798.  
  1799.              <span class="shape-circle shape--sm"></span></span><span class="announcement-bar__item" aria-hidden="true"><p class="bold text-base" >4Th Of July Sale Use Code - Freedom For 20% Off
  1800. </p>
  1801.  
  1802.              <span class="shape-circle shape--sm"></span></span><span class="announcement-bar__item" aria-hidden="true"><p class="bold text-base" >4Th Of July Sale Use Code - Freedom For 20% Off
  1803. </p>
  1804.  
  1805.              <span class="shape-circle shape--sm"></span></span><span class="announcement-bar__item" aria-hidden="true"><p class="bold text-base" >4Th Of July Sale Use Code - Freedom For 20% Off
  1806. </p>
  1807.  
  1808.              <span class="shape-circle shape--sm"></span></span><span class="announcement-bar__item" aria-hidden="true"><p class="bold text-base" >4Th Of July Sale Use Code - Freedom For 20% Off
  1809. </p>
  1810.  
  1811.              <span class="shape-circle shape--sm"></span></span></marquee-text></div>
  1812.  </height-observer>
  1813.  
  1814.  <script>
  1815.    document.documentElement.style.setProperty('--announcement-bar-height', Math.round(document.getElementById('shopify-section-sections--18347439554834__announcement-bar').clientHeight) + 'px');
  1816.  </script></aside><header id="shopify-section-sections--18347439554834__header" class="shopify-section shopify-section-group-header-group shopify-section--header"><style>
  1817.  :root {
  1818.    --sticky-header-enabled:1;
  1819.  }
  1820.  
  1821.  #shopify-section-sections--18347439554834__header {
  1822.    --header-grid-template: "main-nav logo secondary-nav" / minmax(0, 1fr) auto minmax(0, 1fr);
  1823.    --header-padding-block: var(--spacing-4-5);
  1824.    --header-background-opacity: 1.0;
  1825.    --header-background-blur-radius: 0px;
  1826.    --header-transparent-text-color: 0 0 0;--header-logo-width: 130px;
  1827.      --header-logo-height: 92px;position: sticky;
  1828.    top: 0;
  1829.    z-index: 10;
  1830.  }.shopify-section--announcement-bar ~ #shopify-section-sections--18347439554834__header {
  1831.      top: calc(var(--sticky-announcement-bar-enabled, 0) * var(--announcement-bar-height, 0px));
  1832.    }@media screen and (min-width: 700px) {
  1833.    #shopify-section-sections--18347439554834__header {--header-logo-width: 205px;
  1834.        --header-logo-height: 145px;--header-padding-block: var(--spacing-8-5);
  1835.    }
  1836.  }</style>
  1837.  
  1838. <height-observer variable="header">
  1839.  <store-header class="header"  sticky>
  1840.    <div class="header__wrapper"><div class="header__main-nav">
  1841.        <div class="header__icon-list">
  1842.          <button type="button" class="tap-area lg:hidden" aria-controls="header-sidebar-menu">
  1843.            <span class="sr-only">Open navigation menu</span><svg role="presentation" stroke-width="2" focusable="false" width="22" height="22" class="icon icon-hamburger" viewBox="0 0 22 22">
  1844.        <path d="M1 5h20M1 11h20M1 17h20" stroke="currentColor" stroke-linecap="round"></path>
  1845.      </svg></button>
  1846.  
  1847.          <a href="/search" class="tap-area sm:hidden" aria-controls="search-drawer">
  1848.            <span class="sr-only">Open search</span><svg role="presentation" stroke-width="2" focusable="false" width="22" height="22" class="icon icon-search" viewBox="0 0 22 22">
  1849.        <circle cx="11" cy="10" r="7" fill="none" stroke="currentColor"></circle>
  1850.        <path d="m16 15 3 3" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path>
  1851.      </svg></a><nav class="header__link-list  wrap" role="navigation">
  1852.              <ul class="contents" role="list">
  1853.  
  1854.                  <li><a href="/" class="bold link-faded-reverse" aria-current="page">Home</a></li>
  1855.  
  1856.                  <li><details class="relative" is="dropdown-disclosure" trigger="click">
  1857.                          <summary class="text-with-icon gap-2.5 bold link-faded-reverse" data-url="/collections/all">Shop Now<svg role="presentation" focusable="false" width="10" height="7" class="icon icon-chevron-bottom" viewBox="0 0 10 7">
  1858.        <path d="m1 1 4 4 4-4" fill="none" stroke="currentColor" stroke-width="2"></path>
  1859.      </svg></summary>
  1860.  
  1861.                          <div class="dropdown-menu">
  1862.                            <ul class="contents" role="list"><li><a href="/collections/all" class="dropdown-menu__item group" >
  1863.                                      <span><span class="reversed-link">All Products</span></span>
  1864.                                    </a></li><li><a href="/collections/fragrance" class="dropdown-menu__item group" >
  1865.                                      <span><span class="reversed-link">Fragrances</span></span>
  1866.                                    </a></li><li><a href="/collections/body-lotions" class="dropdown-menu__item group" >
  1867.                                      <span><span class="reversed-link">Body Lotion</span></span>
  1868.                                    </a></li><li><a href="/collections/body-wash" class="dropdown-menu__item group" >
  1869.                                      <span><span class="reversed-link">Body Wash</span></span>
  1870.                                    </a></li><li><a href="/collections/candle" class="dropdown-menu__item group" >
  1871.                                      <span><span class="reversed-link">Candles</span></span>
  1872.                                    </a></li><li><details class="relative" is="dropdown-disclosure" trigger="click">
  1873.                                      <summary class="dropdown-menu__item group" data-url="/collections/inspired-by-amouage">
  1874.                                        <span><span class="reversed-link">Shop By Inspirations</span></span><svg role="presentation" focusable="false" width="7" height="10" class="icon icon-chevron-right" viewBox="0 0 7 10">
  1875.        <path d="m1 9 4-4-4-4" fill="none" stroke="currentColor" stroke-width="2"></path>
  1876.      </svg></summary>
  1877.  
  1878.                                      <div class="dropdown-menu">
  1879.                                        <ul class="contents" role="list"><li>
  1880.                                              <a href="/collections/inspired-by-bond-no-9" class="dropdown-menu__item group" >
  1881.                                                <span><span class="reversed-link">Inspired by Bond No 9</span></span>
  1882.                                              </a>
  1883.                                            </li><li>
  1884.                                              <a href="/collections/inspired-by-bdk" class="dropdown-menu__item group" >
  1885.                                                <span><span class="reversed-link">Inspired by BDK</span></span>
  1886.                                              </a>
  1887.                                            </li><li>
  1888.                                              <a href="/collections/inspired-by-amouage" class="dropdown-menu__item group" >
  1889.                                                <span><span class="reversed-link">Inspired by Amouage</span></span>
  1890.                                              </a>
  1891.                                            </li><li>
  1892.                                              <a href="/collections/inspired-by-chanel" class="dropdown-menu__item group" >
  1893.                                                <span><span class="reversed-link">Inspired by Chanel</span></span>
  1894.                                              </a>
  1895.                                            </li><li>
  1896.                                              <a href="/collections/inspired-by-clive-christian" class="dropdown-menu__item group" >
  1897.                                                <span><span class="reversed-link">Inspired By Clive Christian</span></span>
  1898.                                              </a>
  1899.                                            </li><li>
  1900.                                              <a href="/collections/inspired-by-creed" class="dropdown-menu__item group" >
  1901.                                                <span><span class="reversed-link">Inspired by Creed</span></span>
  1902.                                              </a>
  1903.                                            </li><li>
  1904.                                              <a href="/collections/inspired-by-dior" class="dropdown-menu__item group" >
  1905.                                                <span><span class="reversed-link">Inspired by Dior</span></span>
  1906.                                              </a>
  1907.                                            </li><li>
  1908.                                              <a href="/collections/inspired-by-ex-nihilo" class="dropdown-menu__item group" >
  1909.                                                <span><span class="reversed-link">Inspired by Ex Nihilo</span></span>
  1910.                                              </a>
  1911.                                            </li><li>
  1912.                                              <a href="/collections/inspired-by-frederic-malle" class="dropdown-menu__item group" >
  1913.                                                <span><span class="reversed-link">Inspired by Frederic Malle</span></span>
  1914.                                              </a>
  1915.                                            </li><li>
  1916.                                              <a href="/collections/inspired-by-giardini" class="dropdown-menu__item group" >
  1917.                                                <span><span class="reversed-link">Inspired by Giardini</span></span>
  1918.                                              </a>
  1919.                                            </li><li>
  1920.                                              <a href="/collections/inspired-by-gueralin" class="dropdown-menu__item group" >
  1921.                                                <span><span class="reversed-link">Inspired by Gueralin</span></span>
  1922.                                              </a>
  1923.                                            </li><li>
  1924.                                              <a href="/collections/inspired-by-initio" class="dropdown-menu__item group" >
  1925.                                                <span><span class="reversed-link">Inspired by Initio</span></span>
  1926.                                              </a>
  1927.                                            </li><li>
  1928.                                              <a href="/collections/inspired-by-jean-paul-gaultier" class="dropdown-menu__item group" >
  1929.                                                <span><span class="reversed-link">Inspired by Jean Paul Gaultier</span></span>
  1930.                                              </a>
  1931.                                            </li><li>
  1932.                                              <a href="/collections/inspired-by-kayali" class="dropdown-menu__item group" >
  1933.                                                <span><span class="reversed-link">Inspired by Kayali</span></span>
  1934.                                              </a>
  1935.                                            </li><li>
  1936.                                              <a href="/collections/inspired-by-killian" class="dropdown-menu__item group" >
  1937.                                                <span><span class="reversed-link">Inspired by Killian</span></span>
  1938.                                              </a>
  1939.                                            </li><li>
  1940.                                              <a href="/collections/inspired-by-maison-crivelli" class="dropdown-menu__item group" >
  1941.                                                <span><span class="reversed-link">Inspired by Maison Crivelli</span></span>
  1942.                                              </a>
  1943.                                            </li><li>
  1944.                                              <a href="/collections/inspired-by-mancera" class="dropdown-menu__item group" >
  1945.                                                <span><span class="reversed-link">Inspired by Mancera</span></span>
  1946.                                              </a>
  1947.                                            </li><li>
  1948.                                              <a href="/collections/inspired-by-masion-francis-kurkdjian" class="dropdown-menu__item group" >
  1949.                                                <span><span class="reversed-link">Inspired By Masion Francis Kurkdjian</span></span>
  1950.                                              </a>
  1951.                                            </li><li>
  1952.                                              <a href="/collections/inspired-by-nishane" class="dropdown-menu__item group" >
  1953.                                                <span><span class="reversed-link">Inspired by Nishane</span></span>
  1954.                                              </a>
  1955.                                            </li><li>
  1956.                                              <a href="/collections/inspired-by-parfums-de-marly" class="dropdown-menu__item group" >
  1957.                                                <span><span class="reversed-link">Inspired By Parfums De Marly</span></span>
  1958.                                              </a>
  1959.                                            </li><li>
  1960.                                              <a href="/collections/inspired-by-prada" class="dropdown-menu__item group" >
  1961.                                                <span><span class="reversed-link">Inspired by Prada</span></span>
  1962.                                              </a>
  1963.                                            </li><li>
  1964.                                              <a href="/collections/inspired-by-stronger-with-you" class="dropdown-menu__item group" >
  1965.                                                <span><span class="reversed-link">Inspired by Soleil De Jeddah</span></span>
  1966.                                              </a>
  1967.                                            </li><li>
  1968.                                              <a href="/collections/inspired-by-sospiro" class="dropdown-menu__item group" >
  1969.                                                <span><span class="reversed-link">Inspired by Sospiro</span></span>
  1970.                                              </a>
  1971.                                            </li><li>
  1972.                                              <a href="/collections/inspired-by-stephane-humbert-lucas" class="dropdown-menu__item group" >
  1973.                                                <span><span class="reversed-link">Inspired by Stephane Humbert Lucas</span></span>
  1974.                                              </a>
  1975.                                            </li><li>
  1976.                                              <a href="/collections/inspired-by-thierry-mugler" class="dropdown-menu__item group" >
  1977.                                                <span><span class="reversed-link">Inspired by Thierry Mugler</span></span>
  1978.                                              </a>
  1979.                                            </li><li>
  1980.                                              <a href="/collections/inspired-by-tiziana-terenzi" class="dropdown-menu__item group" >
  1981.                                                <span><span class="reversed-link">Inspired by Tiziana Terenzi</span></span>
  1982.                                              </a>
  1983.                                            </li><li>
  1984.                                              <a href="/collections/inspired-by-tom-ford" class="dropdown-menu__item group" >
  1985.                                                <span><span class="reversed-link">Inspired by Tom Ford</span></span>
  1986.                                              </a>
  1987.                                            </li><li>
  1988.                                              <a href="/collections/inspired-by-valentino" class="dropdown-menu__item group" >
  1989.                                                <span><span class="reversed-link">Inspired by Valentino</span></span>
  1990.                                              </a>
  1991.                                            </li><li>
  1992.                                              <a href="/collections/inspired-by-viktor-and-rolf" class="dropdown-menu__item group" >
  1993.                                                <span><span class="reversed-link">Inspired by Viktor and Rolf</span></span>
  1994.                                              </a>
  1995.                                            </li><li>
  1996.                                              <a href="/collections/inspired-by-xerjoff" class="dropdown-menu__item group" >
  1997.                                                <span><span class="reversed-link">Inspired BY Xerjoff</span></span>
  1998.                                              </a>
  1999.                                            </li><li>
  2000.                                              <a href="/collections/inspired-by-yves-saint-laurent" class="dropdown-menu__item group" >
  2001.                                                <span><span class="reversed-link">Inspired by Yves Saint Laurent</span></span>
  2002.                                              </a>
  2003.                                            </li><li>
  2004.                                              <a href="/collections/louis-vuitton" class="dropdown-menu__item group" >
  2005.                                                <span><span class="reversed-link">Louis Vuitton</span></span>
  2006.                                              </a>
  2007.                                            </li></ul>
  2008.                                      </div>
  2009.                                    </details></li></ul>
  2010.                          </div>
  2011.                        </details></li>
  2012.  
  2013.                  <li><a href="/blogs/news" class="bold link-faded-reverse" >Blogs</a></li>
  2014.  
  2015.                  <li><a href="/pages/press" class="bold link-faded-reverse" >Press</a></li>
  2016.  
  2017.                  <li><a href="https://junip.co/reviews/the-white-market?utm_source=powered_by_footer&referrer=https%3A%2F%2Fhouseofmonac.com%2F#reviews" class="bold link-faded-reverse" >Reviews </a></li></ul>
  2018.            </nav></div>
  2019.      </div><h1 class="header__logo">
  2020.          <a href="/"><span class="sr-only">Monac Attar</span><img src="//houseofmonac.com/cdn/shop/files/monac_Attar_png-01_430x_8ffa7d40-f382-426c-b38c-f3eddca63588.png?v=1713355635&amp;width=430" alt="" srcset="//houseofmonac.com/cdn/shop/files/monac_Attar_png-01_430x_8ffa7d40-f382-426c-b38c-f3eddca63588.png?v=1713355635&amp;width=410 410w, //houseofmonac.com/cdn/shop/files/monac_Attar_png-01_430x_8ffa7d40-f382-426c-b38c-f3eddca63588.png?v=1713355635&amp;width=430 430w" width="430" height="304" sizes="205px" class="header__logo-image"></a>
  2021.        </h1>
  2022.      
  2023. <div class="header__secondary-nav"><div class="header__icon-list"><a href="/search" class="hidden tap-area sm:block" aria-controls="search-drawer">
  2024.            <span class="sr-only">Open search</span><svg role="presentation" stroke-width="2" focusable="false" width="22" height="22" class="icon icon-search" viewBox="0 0 22 22">
  2025.        <circle cx="11" cy="10" r="7" fill="none" stroke="currentColor"></circle>
  2026.        <path d="m16 15 3 3" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path>
  2027.      </svg></a><a href="/account" class="hidden tap-area sm:block">
  2028.              <span class="sr-only">Open account page</span><svg role="presentation" stroke-width="2" focusable="false" width="22" height="22" class="icon icon-account" viewBox="0 0 22 22">
  2029.        <circle cx="11" cy="7" r="4" fill="none" stroke="currentColor"></circle>
  2030.        <path d="M3.5 19c1.421-2.974 4.247-5 7.5-5s6.079 2.026 7.5 5" fill="none" stroke="currentColor" stroke-linecap="round"></path>
  2031.      </svg></a><a href="/cart" data-no-instant class="relative tap-area" aria-controls="cart-drawer">
  2032.            <span class="sr-only">Open cart</span><svg role="presentation" stroke-width="2" focusable="false" width="22" height="22" class="icon icon-cart" viewBox="0 0 22 22">
  2033.        <path d="M11 7H3.577A2 2 0 0 0 1.64 9.497l2.051 8A2 2 0 0 0 5.63 19H16.37a2 2 0 0 0 1.937-1.503l2.052-8A2 2 0 0 0 18.422 7H11Zm0 0V1" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path>
  2034.      </svg><div class="header__cart-count">
  2035.              <cart-count class="count-bubble opacity-0" aria-hidden="true">0</cart-count>
  2036.            </div>
  2037.          </a>
  2038.        </div>
  2039.      </div>
  2040.    </div>
  2041.  </store-header>
  2042. </height-observer><navigation-drawer mobile-opening="bottom" open-from="left" id="header-sidebar-menu" class="navigation-drawer drawer lg:hidden" >
  2043.    <button is="close-button" aria-label="Close"class="sm-max:hidden"><svg role="presentation" stroke-width="2" focusable="false" width="19" height="19" class="icon icon-close" viewBox="0 0 24 24">
  2044.        <path d="M17.658 6.343 6.344 17.657M17.658 17.657 6.344 6.343" stroke="currentColor"></path>
  2045.      </svg></button><div class="panel-list__wrapper">
  2046.  <div class="panel">
  2047.    <div class="panel__wrapper" >
  2048.      <div class="panel__scroller v-stack gap-8"><ul class="v-stack gap-4">
  2049. <li class="h3 sm:h4"><a href="/" class="group block w-full">
  2050.                  <span><span class="reversed-link">Home</span></span>
  2051.                </a></li>
  2052. <li class="h3 sm:h4"><button class="text-with-icon w-full group justify-between" aria-expanded="false" data-panel="1-0">
  2053.                  <span>Shop Now</span>
  2054.                  <span class="circle-chevron group-hover:colors group-expanded:colors"><svg role="presentation" focusable="false" width="5" height="8" class="icon icon-chevron-right-small reverse-icon" viewBox="0 0 5 8">
  2055.        <path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
  2056.      </svg></span>
  2057.                </button></li>
  2058. <li class="h3 sm:h4"><a href="/blogs/news" class="group block w-full">
  2059.                  <span><span class="reversed-link">Blogs</span></span>
  2060.                </a></li>
  2061. <li class="h3 sm:h4"><a href="/pages/press" class="group block w-full">
  2062.                  <span><span class="reversed-link">Press</span></span>
  2063.                </a></li>
  2064. <li class="h3 sm:h4"><a href="https://junip.co/reviews/the-white-market?utm_source=powered_by_footer&referrer=https%3A%2F%2Fhouseofmonac.com%2F#reviews" class="group block w-full">
  2065.                  <span><span class="reversed-link">Reviews </span></span>
  2066.                </a></li></ul></div><div class="panel-footer v-stack gap-5"><ul class="social-media " role="list"><li>
  2067.      <a href="https://www.facebook.com/thewhitemaketusa" class="tap-area" target="_blank" rel="noopener" aria-label="Follow on Facebook"><svg role="presentation" focusable="false" width="27" height="27" class="icon icon-facebook" viewBox="0 0 24 24">
  2068.        <path fill-rule="evenodd" clip-rule="evenodd" d="M10.183 21.85v-8.868H7.2V9.526h2.983V6.982a4.17 4.17 0 0 1 4.44-4.572 22.33 22.33 0 0 1 2.667.144v3.084h-1.83a1.44 1.44 0 0 0-1.713 1.68v2.208h3.423l-.447 3.456h-2.97v8.868h-3.57Z" fill="currentColor"/>
  2069.      </svg></a>
  2070.    </li><li>
  2071.      <a href="https://instagram.com/house_of_monac?igshid=NzZlODBkYWE4Ng==" class="tap-area" target="_blank" rel="noopener" aria-label="Follow on Instagram"><svg role="presentation" focusable="false" width="27" height="27" class="icon icon-instagram" viewBox="0 0 24 24">
  2072.        <path fill-rule="evenodd" clip-rule="evenodd" d="M12 2.4c-2.607 0-2.934.011-3.958.058-1.022.046-1.72.209-2.33.446a4.705 4.705 0 0 0-1.7 1.107 4.706 4.706 0 0 0-1.108 1.7c-.237.611-.4 1.31-.446 2.331C2.41 9.066 2.4 9.392 2.4 12c0 2.607.011 2.934.058 3.958.046 1.022.209 1.72.446 2.33a4.706 4.706 0 0 0 1.107 1.7c.534.535 1.07.863 1.7 1.108.611.237 1.309.4 2.33.446 1.025.047 1.352.058 3.959.058s2.934-.011 3.958-.058c1.022-.046 1.72-.209 2.33-.446a4.706 4.706 0 0 0 1.7-1.107 4.706 4.706 0 0 0 1.108-1.7c.237-.611.4-1.31.446-2.33.047-1.025.058-1.352.058-3.959s-.011-2.934-.058-3.958c-.047-1.022-.209-1.72-.446-2.33a4.706 4.706 0 0 0-1.107-1.7 4.705 4.705 0 0 0-1.7-1.108c-.611-.237-1.31-.4-2.331-.446C14.934 2.41 14.608 2.4 12 2.4Zm0 1.73c2.563 0 2.867.01 3.88.056.935.042 1.443.199 1.782.33.448.174.768.382 1.104.718.336.336.544.656.718 1.104.131.338.287.847.33 1.783.046 1.012.056 1.316.056 3.879 0 2.563-.01 2.867-.056 3.88-.043.935-.199 1.444-.33 1.782a2.974 2.974 0 0 1-.719 1.104 2.974 2.974 0 0 1-1.103.718c-.339.131-.847.288-1.783.33-1.012.046-1.316.056-3.88.056-2.563 0-2.866-.01-3.878-.056-.936-.042-1.445-.199-1.783-.33a2.974 2.974 0 0 1-1.104-.718 2.974 2.974 0 0 1-.718-1.104c-.131-.338-.288-.847-.33-1.783-.047-1.012-.056-1.316-.056-3.879 0-2.563.01-2.867.056-3.88.042-.935.199-1.443.33-1.782.174-.448.382-.768.718-1.104a2.974 2.974 0 0 1 1.104-.718c.338-.131.847-.288 1.783-.33C9.133 4.14 9.437 4.13 12 4.13Zm0 11.07a3.2 3.2 0 1 1 0-6.4 3.2 3.2 0 0 1 0 6.4Zm0-8.13a4.93 4.93 0 1 0 0 9.86 4.93 4.93 0 0 0 0-9.86Zm6.276-.194a1.152 1.152 0 1 1-2.304 0 1.152 1.152 0 0 1 2.304 0Z" fill="currentColor"/>
  2073.      </svg></a>
  2074.    </li><li>
  2075.      <a href="https://www.youtube.com/channel/UCY57yz4vpL962gJ4sjbUJEw" class="tap-area" target="_blank" rel="noopener" aria-label="Follow on YouTube"><svg role="presentation" focusable="false" width="27" height="27" class="icon icon-youtube" viewBox="0 0 24 24">
  2076.        <path fill-rule="evenodd" clip-rule="evenodd" d="M20.44 5.243c.929.244 1.66.963 1.909 1.876.451 1.654.451 5.106.451 5.106s0 3.452-.451 5.106a2.681 2.681 0 0 1-1.91 1.876c-1.684.443-8.439.443-8.439.443s-6.754 0-8.439-.443a2.682 2.682 0 0 1-1.91-1.876c-.45-1.654-.45-5.106-.45-5.106s0-3.452.45-5.106a2.681 2.681 0 0 1 1.91-1.876c1.685-.443 8.44-.443 8.44-.443s6.754 0 8.438.443Zm-5.004 6.982L9.792 15.36V9.091l5.646 3.134Z" fill="currentColor"/>
  2077.      </svg></a>
  2078.    </li><li>
  2079.      <a href="https://www.tiktok.com/@monacattarfragrances?_t=8gen3HTA89z&_r=1" class="tap-area" target="_blank" rel="noopener" aria-label="Follow on TikTok"><svg role="presentation" focusable="false" width="27" height="27" class="icon icon-tiktok" viewBox="0 0 24 24">
  2080.        <path d="M20.027 10.168a5.125 5.125 0 0 1-4.76-2.294v7.893a5.833 5.833 0 1 1-5.834-5.834c.122 0 .241.011.361.019v2.874c-.12-.014-.237-.036-.36-.036a2.977 2.977 0 0 0 0 5.954c1.644 0 3.096-1.295 3.096-2.94L12.56 2.4h2.75a5.122 5.122 0 0 0 4.72 4.573v3.195" fill="currentColor"/>
  2081.      </svg></a>
  2082.    </li></ul><div class="panel-footer__localization-wrapper h-stack gap-6 border-t md:hidden"><a href="/account" class="panel-footer__account-link bold text-sm">Account</a></div></div></div>
  2083.  </div><div class="panel gap-8">
  2084.      <div class="panel__wrapper"  hidden>
  2085.                  <ul class="v-stack gap-4">
  2086.                    <li class="lg:hidden">
  2087.                      <button class="text-with-icon h6 text-subdued" data-panel="0"><svg role="presentation" focusable="false" width="7" height="10" class="icon icon-chevron-left reverse-icon" viewBox="0 0 7 10">
  2088.        <path d="M6 1 2 5l4 4" fill="none" stroke="currentColor" stroke-width="2"></path>
  2089.      </svg>Shop Now
  2090.                      </button>
  2091.                    </li><li class="h3 sm:h4"><a class="group block w-full" href="/collections/all"><span><span class="reversed-link">All Products</span></span>
  2092.                            </a></li><li class="h3 sm:h4"><a class="group block w-full" href="/collections/fragrance"><span><span class="reversed-link">Fragrances</span></span>
  2093.                            </a></li><li class="h3 sm:h4"><a class="group block w-full" href="/collections/body-lotions"><span><span class="reversed-link">Body Lotion</span></span>
  2094.                            </a></li><li class="h3 sm:h4"><a class="group block w-full" href="/collections/body-wash"><span><span class="reversed-link">Body Wash</span></span>
  2095.                            </a></li><li class="h3 sm:h4"><a class="group block w-full" href="/collections/candle"><span><span class="reversed-link">Candles</span></span>
  2096.                            </a></li><li class="h3 sm:h4"><button class="text-with-icon w-full justify-between" aria-expanded="false" data-panel="2-0">
  2097.                              <span>Shop By Inspirations</span>
  2098.                              <span class="circle-chevron group-hover:colors group-expanded:colors"><svg role="presentation" focusable="false" width="5" height="8" class="icon icon-chevron-right-small reverse-icon" viewBox="0 0 5 8">
  2099.        <path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
  2100.      </svg></span>
  2101.                            </button></li></ul></div>
  2102.    </div>
  2103.    <div class="panel">
  2104.      <div class="panel__wrapper" hidden>
  2105.                              <ul class="v-stack gap-4">
  2106.                                <li class="text-with-icon lg:hidden">
  2107.                                  <button class="text-with-icon h6 text-subdued" data-panel="1"><svg role="presentation" focusable="false" width="7" height="10" class="icon icon-chevron-left reverse-icon" viewBox="0 0 7 10">
  2108.        <path d="M6 1 2 5l4 4" fill="none" stroke="currentColor" stroke-width="2"></path>
  2109.      </svg>Shop By Inspirations
  2110.                                  </button>
  2111.                                </li><li class="h5 sm:h5">
  2112.                                    <a class="group block w-full"
  2113.                                       href="/collections/inspired-by-bond-no-9"><span><span class="reversed-link">Inspired by Bond No 9</span></span>
  2114.                                    </a>
  2115.                                  </li><li class="h5 sm:h5">
  2116.                                    <a class="group block w-full"
  2117.                                       href="/collections/inspired-by-bdk"><span><span class="reversed-link">Inspired by BDK</span></span>
  2118.                                    </a>
  2119.                                  </li><li class="h5 sm:h5">
  2120.                                    <a class="group block w-full"
  2121.                                       href="/collections/inspired-by-amouage"><span><span class="reversed-link">Inspired by Amouage</span></span>
  2122.                                    </a>
  2123.                                  </li><li class="h5 sm:h5">
  2124.                                    <a class="group block w-full"
  2125.                                       href="/collections/inspired-by-chanel"><span><span class="reversed-link">Inspired by Chanel</span></span>
  2126.                                    </a>
  2127.                                  </li><li class="h5 sm:h5">
  2128.                                    <a class="group block w-full"
  2129.                                       href="/collections/inspired-by-clive-christian"><span><span class="reversed-link">Inspired By Clive Christian</span></span>
  2130.                                    </a>
  2131.                                  </li><li class="h5 sm:h5">
  2132.                                    <a class="group block w-full"
  2133.                                       href="/collections/inspired-by-creed"><span><span class="reversed-link">Inspired by Creed</span></span>
  2134.                                    </a>
  2135.                                  </li><li class="h5 sm:h5">
  2136.                                    <a class="group block w-full"
  2137.                                       href="/collections/inspired-by-dior"><span><span class="reversed-link">Inspired by Dior</span></span>
  2138.                                    </a>
  2139.                                  </li><li class="h5 sm:h5">
  2140.                                    <a class="group block w-full"
  2141.                                       href="/collections/inspired-by-ex-nihilo"><span><span class="reversed-link">Inspired by Ex Nihilo</span></span>
  2142.                                    </a>
  2143.                                  </li><li class="h5 sm:h5">
  2144.                                    <a class="group block w-full"
  2145.                                       href="/collections/inspired-by-frederic-malle"><span><span class="reversed-link">Inspired by Frederic Malle</span></span>
  2146.                                    </a>
  2147.                                  </li><li class="h5 sm:h5">
  2148.                                    <a class="group block w-full"
  2149.                                       href="/collections/inspired-by-giardini"><span><span class="reversed-link">Inspired by Giardini</span></span>
  2150.                                    </a>
  2151.                                  </li><li class="h5 sm:h5">
  2152.                                    <a class="group block w-full"
  2153.                                       href="/collections/inspired-by-gueralin"><span><span class="reversed-link">Inspired by Gueralin</span></span>
  2154.                                    </a>
  2155.                                  </li><li class="h5 sm:h5">
  2156.                                    <a class="group block w-full"
  2157.                                       href="/collections/inspired-by-initio"><span><span class="reversed-link">Inspired by Initio</span></span>
  2158.                                    </a>
  2159.                                  </li><li class="h5 sm:h5">
  2160.                                    <a class="group block w-full"
  2161.                                       href="/collections/inspired-by-jean-paul-gaultier"><span><span class="reversed-link">Inspired by Jean Paul Gaultier</span></span>
  2162.                                    </a>
  2163.                                  </li><li class="h5 sm:h5">
  2164.                                    <a class="group block w-full"
  2165.                                       href="/collections/inspired-by-kayali"><span><span class="reversed-link">Inspired by Kayali</span></span>
  2166.                                    </a>
  2167.                                  </li><li class="h5 sm:h5">
  2168.                                    <a class="group block w-full"
  2169.                                       href="/collections/inspired-by-killian"><span><span class="reversed-link">Inspired by Killian</span></span>
  2170.                                    </a>
  2171.                                  </li><li class="h5 sm:h5">
  2172.                                    <a class="group block w-full"
  2173.                                       href="/collections/inspired-by-maison-crivelli"><span><span class="reversed-link">Inspired by Maison Crivelli</span></span>
  2174.                                    </a>
  2175.                                  </li><li class="h5 sm:h5">
  2176.                                    <a class="group block w-full"
  2177.                                       href="/collections/inspired-by-mancera"><span><span class="reversed-link">Inspired by Mancera</span></span>
  2178.                                    </a>
  2179.                                  </li><li class="h5 sm:h5">
  2180.                                    <a class="group block w-full"
  2181.                                       href="/collections/inspired-by-masion-francis-kurkdjian"><span><span class="reversed-link">Inspired By Masion Francis Kurkdjian</span></span>
  2182.                                    </a>
  2183.                                  </li><li class="h5 sm:h5">
  2184.                                    <a class="group block w-full"
  2185.                                       href="/collections/inspired-by-nishane"><span><span class="reversed-link">Inspired by Nishane</span></span>
  2186.                                    </a>
  2187.                                  </li><li class="h5 sm:h5">
  2188.                                    <a class="group block w-full"
  2189.                                       href="/collections/inspired-by-parfums-de-marly"><span><span class="reversed-link">Inspired By Parfums De Marly</span></span>
  2190.                                    </a>
  2191.                                  </li><li class="h5 sm:h5">
  2192.                                    <a class="group block w-full"
  2193.                                       href="/collections/inspired-by-prada"><span><span class="reversed-link">Inspired by Prada</span></span>
  2194.                                    </a>
  2195.                                  </li><li class="h5 sm:h5">
  2196.                                    <a class="group block w-full"
  2197.                                       href="/collections/inspired-by-stronger-with-you"><span><span class="reversed-link">Inspired by Soleil De Jeddah</span></span>
  2198.                                    </a>
  2199.                                  </li><li class="h5 sm:h5">
  2200.                                    <a class="group block w-full"
  2201.                                       href="/collections/inspired-by-sospiro"><span><span class="reversed-link">Inspired by Sospiro</span></span>
  2202.                                    </a>
  2203.                                  </li><li class="h5 sm:h5">
  2204.                                    <a class="group block w-full"
  2205.                                       href="/collections/inspired-by-stephane-humbert-lucas"><span><span class="reversed-link">Inspired by Stephane Humbert Lucas</span></span>
  2206.                                    </a>
  2207.                                  </li><li class="h5 sm:h5">
  2208.                                    <a class="group block w-full"
  2209.                                       href="/collections/inspired-by-thierry-mugler"><span><span class="reversed-link">Inspired by Thierry Mugler</span></span>
  2210.                                    </a>
  2211.                                  </li><li class="h5 sm:h5">
  2212.                                    <a class="group block w-full"
  2213.                                       href="/collections/inspired-by-tiziana-terenzi"><span><span class="reversed-link">Inspired by Tiziana Terenzi</span></span>
  2214.                                    </a>
  2215.                                  </li><li class="h5 sm:h5">
  2216.                                    <a class="group block w-full"
  2217.                                       href="/collections/inspired-by-tom-ford"><span><span class="reversed-link">Inspired by Tom Ford</span></span>
  2218.                                    </a>
  2219.                                  </li><li class="h5 sm:h5">
  2220.                                    <a class="group block w-full"
  2221.                                       href="/collections/inspired-by-valentino"><span><span class="reversed-link">Inspired by Valentino</span></span>
  2222.                                    </a>
  2223.                                  </li><li class="h5 sm:h5">
  2224.                                    <a class="group block w-full"
  2225.                                       href="/collections/inspired-by-viktor-and-rolf"><span><span class="reversed-link">Inspired by Viktor and Rolf</span></span>
  2226.                                    </a>
  2227.                                  </li><li class="h5 sm:h5">
  2228.                                    <a class="group block w-full"
  2229.                                       href="/collections/inspired-by-xerjoff"><span><span class="reversed-link">Inspired BY Xerjoff</span></span>
  2230.                                    </a>
  2231.                                  </li><li class="h5 sm:h5">
  2232.                                    <a class="group block w-full"
  2233.                                       href="/collections/inspired-by-yves-saint-laurent"><span><span class="reversed-link">Inspired by Yves Saint Laurent</span></span>
  2234.                                    </a>
  2235.                                  </li><li class="h5 sm:h5">
  2236.                                    <a class="group block w-full"
  2237.                                       href="/collections/louis-vuitton"><span><span class="reversed-link">Louis Vuitton</span></span>
  2238.                                    </a>
  2239.                                  </li></ul>
  2240.                            </div>
  2241.    </div></div></navigation-drawer><script>
  2242.  document.documentElement.style.setProperty('--header-height', Math.round(document.getElementById('shopify-section-sections--18347439554834__header').clientHeight) + 'px');
  2243. </script>
  2244.  
  2245. </header>
  2246. <!-- END sections: header-group --><!-- BEGIN sections: overlay-group -->
  2247. <div id="shopify-section-sections--18347439653138__newsletter-popup" class="shopify-section shopify-section-group-overlay-group shopify-section--popup"><newsletter-popup id="newsletter-drawer" open-from="right" class="drawer newsletter-drawer" only-once apparition-delay="5"  handle-section-events>
  2248.      <button is="close-button" aria-label="Close" class="sm-max:hidden"><svg role="presentation" stroke-width="2" focusable="false" width="19" height="19" class="icon icon-close" viewBox="0 0 24 24">
  2249.        <path d="M17.658 6.343 6.344 17.657M17.658 17.657 6.344 6.343" stroke="currentColor"></path>
  2250.      </svg></button><img src="//houseofmonac.com/cdn/shop/files/Untitled_design_3.jpg?v=1679934949&amp;width=800" alt="" srcset="//houseofmonac.com/cdn/shop/files/Untitled_design_3.jpg?v=1679934949&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Untitled_design_3.jpg?v=1679934949&amp;width=800 800w" width="800" height="533" loading="lazy" sizes="min(calc(100vw - 16px), 445px)"><div class="newsletter-drawer__content v-stack gap-4 text-center">
  2251.        <div class="v-stack gap-6"><p class="h5">Signup for our newsletter</p><form method="post" action="/contact#newsletter-sections--18347439653138__newsletter-popup" id="newsletter-sections--18347439653138__newsletter-popup" accept-charset="UTF-8" class="form"><input type="hidden" name="form_type" value="customer" /><input type="hidden" name="utf8" value="✓" /><div class="fieldset">
  2252.                <input type="hidden" name="contact[tags]" value="newsletter"><div class="form-control" ><input id="input-sections--18347439653138__newsletter-popup-049069293" class="input is-floating" type="email" dir="ltr" name="contact[email]" placeholder=" "
  2253.  
  2254.  
  2255.  
  2256.  
  2257.  autocomplete="email"
  2258.  
  2259.  
  2260.  required
  2261. ><label for="input-sections--18347439653138__newsletter-popup-049069293" class="floating-label">E-mail</label></div></div>
  2262. <button type="submit" class="button button--xl"
  2263.  
  2264.  
  2265.  
  2266.  
  2267.  
  2268.  
  2269.  
  2270.  is="custom-button"
  2271. >
  2272.    <div class="text-with-icon justify-center"><svg role="presentation" fill="none" focusable="false" stroke-width="2" width="18" height="18" class="icon icon-picto-envelope" viewBox="0 0 24 24">
  2273.        <path d="M1.77 18.063a3.586 3.586 0 0 0 3.174 3.11c2.278.24 4.637.49 7.056.49 2.417 0 4.778-.252 7.056-.49a3.584 3.584 0 0 0 3.175-3.11c.243-1.96.483-3.987.483-6.063 0-2.074-.24-4.102-.483-6.063a3.586 3.586 0 0 0-3.175-3.112c-2.278-.236-4.639-.487-7.056-.487s-4.778.252-7.056.49a3.583 3.583 0 0 0-3.175 3.11c-.243 1.96-.483 3.988-.483 6.062 0 2.074.24 4.102.483 6.063Z" fill="currentColor" fill-opacity=".12" stroke="currentColor" stroke-linejoin="round"/>
  2274.        <path d="m1.817 5.493 8.06 6.356a3.428 3.428 0 0 0 4.245 0l8.06-6.356" stroke="currentColor" stroke-linejoin="round"/>
  2275.      </svg>Subscribe</div></button></form></div><p class="text-xs text-subdued">Describe what your customers will receive when subscribing to your newsletter.</p></div>
  2276.    </newsletter-popup></div><div id="shopify-section-sections--18347439653138__privacy-banner" class="shopify-section shopify-section-group-overlay-group shopify-section--privacy-banner"><privacy-bar class="privacy-bar" hidden>
  2277.  <div class="privacy-bar__inner">
  2278.    <button type="button" class="privacy-bar__close" data-action="close">
  2279.      <span class="sr-only">Close</span><svg role="presentation" stroke-width="2" focusable="false" width="10" height="10" class="icon icon-delete" viewBox="0 0 10 10">
  2280.        <path d="m.757.757 8.486 8.486m-8.486 0L9.243.757" stroke="currentColor"></path>
  2281.      </svg></button>
  2282.  
  2283.    <div class="v-stack gap-4">
  2284.      <div class="v-stack gap-2"><p class="bold">Cookie policy</p><div class="prose text-xs"><p>We use cookies and similar technologies to provide the best experience on our website. Refer to our Privacy Policy for more information.</p></div></div>
  2285.  
  2286.      <div class="h-stack gap-2">
  2287.        <button type="button" class="button button--sm" data-action="accept">Accept</button>
  2288.        <button type="button" class="button button--sm button--subdued" data-action="decline">Decline</button>
  2289.      </div>
  2290.    </div>
  2291.  </div>
  2292. </privacy-bar>
  2293.  
  2294. </div><div id="shopify-section-sections--18347439653138__cart-drawer" class="shopify-section shopify-section-group-overlay-group"><cart-drawer  class="cart-drawer drawer drawer--lg" id="cart-drawer"><button is="close-button" aria-label="Close"><svg role="presentation" stroke-width="2" focusable="false" width="24" height="24" class="icon icon-close" viewBox="0 0 24 24">
  2295.        <path d="M17.658 6.343 6.344 17.657M17.658 17.657 6.344 6.343" stroke="currentColor"></path>
  2296.      </svg></button>
  2297.  
  2298.    <div class="empty-state align-self-center">
  2299.      <div class="empty-state__icon-wrapper"><svg role="presentation" stroke-width="1" focusable="false" width="32" height="32" class="icon icon-cart" viewBox="0 0 22 22">
  2300.        <path d="M11 7H3.577A2 2 0 0 0 1.64 9.497l2.051 8A2 2 0 0 0 5.63 19H16.37a2 2 0 0 0 1.937-1.503l2.052-8A2 2 0 0 0 18.422 7H11Zm0 0V1" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path>
  2301.      </svg><span class="count-bubble count-bubble--lg">0</span>
  2302.      </div>
  2303.  
  2304.      <div class="prose">
  2305.        <p class="h5">Your cart is empty</p>
  2306. <a class="button button--xl"
  2307.  
  2308.  
  2309.  
  2310.  
  2311.  
  2312.  href="/collections/all"
  2313.  
  2314.  
  2315. >Continue shopping</a></div>
  2316.    </div></cart-drawer>
  2317.  
  2318. </div><div id="shopify-section-sections--18347439653138__search-drawer" class="shopify-section shopify-section-group-overlay-group"><search-drawer  class="search-drawer search-drawer--full drawer drawer--lg" id="search-drawer">
  2319.  <form action="/search" method="get" class="v-stack gap-5 sm:gap-8" role="search">
  2320.    <div class="search-input">
  2321.      <input type="search" name="q" placeholder="Search for..." autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" aria-label="Search">
  2322.      <button type="reset" class="text-subdued">Clear</button>
  2323.      <button type="button" is="close-button">
  2324.        <span class="sr-only">Close</span><svg role="presentation" stroke-width="2" focusable="false" width="24" height="24" class="icon icon-close" viewBox="0 0 24 24">
  2325.        <path d="M17.658 6.343 6.344 17.657M17.658 17.657 6.344 6.343" stroke="currentColor"></path>
  2326.      </svg></button>
  2327.    </div>
  2328.  
  2329.    <style>
  2330.      #shopify-section-sections--18347439653138__search-drawer {
  2331.        --predictive-search-column-count: 3;
  2332.      }
  2333.    </style>
  2334.  
  2335.    <input type="hidden" name="type" value="product">
  2336.  
  2337.    <predictive-search class="predictive-search" section-id="sections--18347439653138__search-drawer"><div slot="results"></div>
  2338.  
  2339.      <div slot="loading">
  2340.        <div class="v-stack gap-5 sm:gap-6 md:hidden">
  2341.          <div class="h-stack gap-4 sm:gap-5"><span class="skeleton skeleton--tab"></span><span class="skeleton skeleton--tab"></span><span class="skeleton skeleton--tab"></span></div>
  2342.  
  2343.          <div class="v-stack gap-4 sm:gap-6"><div class="h-stack align-center gap-5 sm:gap-6">
  2344.                <span class="skeleton skeleton--thumbnail"></span>
  2345.  
  2346.                <div class="v-stack gap-3 w-full">
  2347.                  <span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
  2348.                  <span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
  2349.                  <span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
  2350.                </div>
  2351.              </div><div class="h-stack align-center gap-5 sm:gap-6">
  2352.                <span class="skeleton skeleton--thumbnail"></span>
  2353.  
  2354.                <div class="v-stack gap-3 w-full">
  2355.                  <span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
  2356.                  <span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
  2357.                  <span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
  2358.                </div>
  2359.              </div><div class="h-stack align-center gap-5 sm:gap-6">
  2360.                <span class="skeleton skeleton--thumbnail"></span>
  2361.  
  2362.                <div class="v-stack gap-3 w-full">
  2363.                  <span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
  2364.                  <span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
  2365.                  <span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
  2366.                </div>
  2367.              </div><div class="h-stack align-center gap-5 sm:gap-6">
  2368.                <span class="skeleton skeleton--thumbnail"></span>
  2369.  
  2370.                <div class="v-stack gap-3 w-full">
  2371.                  <span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
  2372.                  <span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
  2373.                  <span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
  2374.                </div>
  2375.              </div></div>
  2376.        </div><div class="predictive-search__skeleton-full-width hidden"><div class="v-stack gap-8">
  2377.                <span class="skeleton skeleton--tab"></span><div class="h-stack align-center gap-5 sm:gap-6">
  2378.                    <span class="skeleton skeleton--thumbnail"></span>
  2379.  
  2380.                    <div class="v-stack gap-3 w-full">
  2381.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
  2382.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
  2383.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
  2384.                    </div>
  2385.                  </div><div class="h-stack align-center gap-5 sm:gap-6">
  2386.                    <span class="skeleton skeleton--thumbnail"></span>
  2387.  
  2388.                    <div class="v-stack gap-3 w-full">
  2389.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
  2390.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
  2391.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
  2392.                    </div>
  2393.                  </div><div class="h-stack align-center gap-5 sm:gap-6">
  2394.                    <span class="skeleton skeleton--thumbnail"></span>
  2395.  
  2396.                    <div class="v-stack gap-3 w-full">
  2397.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
  2398.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
  2399.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
  2400.                    </div>
  2401.                  </div><div class="h-stack align-center gap-5 sm:gap-6">
  2402.                    <span class="skeleton skeleton--thumbnail"></span>
  2403.  
  2404.                    <div class="v-stack gap-3 w-full">
  2405.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
  2406.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
  2407.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
  2408.                    </div>
  2409.                  </div></div><div class="v-stack gap-8">
  2410.                <span class="skeleton skeleton--tab"></span><div class="h-stack align-center gap-5 sm:gap-6">
  2411.                    <span class="skeleton skeleton--thumbnail"></span>
  2412.  
  2413.                    <div class="v-stack gap-3 w-full">
  2414.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
  2415.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
  2416.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
  2417.                    </div>
  2418.                  </div><div class="h-stack align-center gap-5 sm:gap-6">
  2419.                    <span class="skeleton skeleton--thumbnail"></span>
  2420.  
  2421.                    <div class="v-stack gap-3 w-full">
  2422.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
  2423.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
  2424.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
  2425.                    </div>
  2426.                  </div><div class="h-stack align-center gap-5 sm:gap-6">
  2427.                    <span class="skeleton skeleton--thumbnail"></span>
  2428.  
  2429.                    <div class="v-stack gap-3 w-full">
  2430.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
  2431.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
  2432.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
  2433.                    </div>
  2434.                  </div><div class="h-stack align-center gap-5 sm:gap-6">
  2435.                    <span class="skeleton skeleton--thumbnail"></span>
  2436.  
  2437.                    <div class="v-stack gap-3 w-full">
  2438.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
  2439.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
  2440.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
  2441.                    </div>
  2442.                  </div></div><div class="v-stack gap-8">
  2443.                <span class="skeleton skeleton--tab"></span><div class="h-stack align-center gap-5 sm:gap-6">
  2444.                    <span class="skeleton skeleton--thumbnail"></span>
  2445.  
  2446.                    <div class="v-stack gap-3 w-full">
  2447.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
  2448.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
  2449.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
  2450.                    </div>
  2451.                  </div><div class="h-stack align-center gap-5 sm:gap-6">
  2452.                    <span class="skeleton skeleton--thumbnail"></span>
  2453.  
  2454.                    <div class="v-stack gap-3 w-full">
  2455.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
  2456.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
  2457.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
  2458.                    </div>
  2459.                  </div><div class="h-stack align-center gap-5 sm:gap-6">
  2460.                    <span class="skeleton skeleton--thumbnail"></span>
  2461.  
  2462.                    <div class="v-stack gap-3 w-full">
  2463.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
  2464.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
  2465.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
  2466.                    </div>
  2467.                  </div><div class="h-stack align-center gap-5 sm:gap-6">
  2468.                    <span class="skeleton skeleton--thumbnail"></span>
  2469.  
  2470.                    <div class="v-stack gap-3 w-full">
  2471.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
  2472.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
  2473.                      <span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
  2474.                    </div>
  2475.                  </div></div></div></div>
  2476.    </predictive-search>
  2477.  </form>
  2478. </search-drawer>
  2479.  
  2480. </div>
  2481. <!-- END sections: overlay-group --><main role="main" id="main" class="anchor">
  2482.      <section id="shopify-section-template--18347438506258__slideshow" class="shopify-section shopify-section--slideshow"><style>#shopify-section-template--18347438506258__slideshow {
  2483.    --slideshow-background: linear-gradient(60deg, rgba(60, 65, 68, 1), rgba(23, 29, 33, 1) 98%);
  2484.    --slideshow-controls-background: ;
  2485.    --slideshow-controls-color: 255 255 255;margin-block-start: calc(-1 * var(--header-height) * var(--section-is-first));}#block-image_ziknnH {--slideshow-slide-background: linear-gradient(60deg, rgba(60, 65, 68, 1), rgba(23, 29, 33, 1) 98%);
  2486.      --slideshow-slide-controls-background: ;
  2487.      --slideshow-slide-controls-color: 255 255 255;
  2488.    }</style><x-slideshow class="slideshow  " allow-transparent-header><slideshow-carousel id="slideshow-template--18347438506258__slideshow" class="slideshow__carousel" reveal-on-scroll="true" selector=".slideshow__slide" transition="fade_with_text" autoplay="6" role="region"><div id="block-image_ziknnH" class="slideshow__slide is-selected" role="group" ><div class="content-over-media content-over-media--auto " style="--content-over-media-content-max-width: 720px; --content-over-media-overlay: 0 0 0 / 0.0"><img src="//houseofmonac.com/cdn/shop/files/4_July_post_5_Banner_Size_700_x_500_px.jpg?v=1751318900&amp;width=700" alt="" srcset="//houseofmonac.com/cdn/shop/files/4_July_post_5_Banner_Size_700_x_500_px.jpg?v=1751318900&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/4_July_post_5_Banner_Size_700_x_500_px.jpg?v=1751318900&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/4_July_post_5_Banner_Size_700_x_500_px.jpg?v=1751318900&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/4_July_post_5_Banner_Size_700_x_500_px.jpg?v=1751318900&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/4_July_post_5_Banner_Size_700_x_500_px.jpg?v=1751318900&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/4_July_post_5_Banner_Size_700_x_500_px.jpg?v=1751318900&amp;width=700 700w" width="700" height="500" loading="eager" fetchpriority="high" sizes="100vw" class="hidden sm:block"><img src="//houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-06-30_at_5.18.00_PM.jpg?v=1751319091&amp;width=1080" alt="" srcset="//houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-06-30_at_5.18.00_PM.jpg?v=1751319091&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-06-30_at_5.18.00_PM.jpg?v=1751319091&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-06-30_at_5.18.00_PM.jpg?v=1751319091&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-06-30_at_5.18.00_PM.jpg?v=1751319091&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-06-30_at_5.18.00_PM.jpg?v=1751319091&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-06-30_at_5.18.00_PM.jpg?v=1751319091&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-06-30_at_5.18.00_PM.jpg?v=1751319091&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-06-30_at_5.18.00_PM.jpg?v=1751319091&amp;width=900 900w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-06-30_at_5.18.00_PM.jpg?v=1751319091&amp;width=1000 1000w" width="1080" height="1080" loading="eager" fetchpriority="high" sizes="100vw" class="sm:hidden"><div class="place-self-center text-center sm:place-self-center sm:text-center  text-custom"style="--text-color: 255 255 255;">
  2489.            <div class="prose"></div>
  2490.          </div>
  2491.        </div></div></slideshow-carousel>
  2492. </x-slideshow>
  2493.  
  2494. </section><section id="shopify-section-template--18347438506258__collection_list_Jw6rKV" class="shopify-section shopify-section--collection-list"><style>
  2495.  #shopify-section-template--18347438506258__collection_list_Jw6rKV {
  2496.    --section-background-hash: 0;
  2497.  }
  2498.  
  2499.  #shopify-section-template--18347438506258__collection_list_Jw6rKV + * {
  2500.    --previous-section-background-hash: 0;
  2501.  }</style><style>
  2502.  #shopify-section-template--18347438506258__collection_list_Jw6rKV .collection-list {
  2503.    --collection-list-grid: auto / auto-flow 73vw;
  2504.  }
  2505.  
  2506.  @media screen and (min-width: 700px) {
  2507.    #shopify-section-template--18347438506258__collection_list_Jw6rKV .collection-list {
  2508.      --collection-list-grid: auto / auto-flow 36vw;
  2509.    }
  2510.  }
  2511.  
  2512.  @media screen and (min-width: 1000px) {
  2513.    #shopify-section-template--18347438506258__collection_list_Jw6rKV .collection-list {
  2514.      --collection-list-grid: auto / auto-flow calc(var(--container-inner-width) / 5 - (var(--grid-gutter) / 3 * 2));
  2515.    }
  2516.  }
  2517.  
  2518.  @media screen and (min-width: 1400px) {
  2519.    #shopify-section-template--18347438506258__collection_list_Jw6rKV .collection-list {
  2520.      --collection-list-grid: auto / auto-flow calc(var(--container-inner-width) / 5 - (var(--grid-gutter) / 5 * 4));
  2521.    }
  2522.  }
  2523. </style><div class="section   section-blends section-full">
  2524.  <div class="section-stack">
  2525.  <section-header class="section-header "><div class="prose"><h2 class="h2" reveal-on-scroll="true"><split-lines>Shop By Category</split-lines></h2></div><a href="" class="text-with-icon group">
  2526.        <span class="reversed-link">View all</span>
  2527.        <span class="circle-chevron group-hover:colors"><svg role="presentation" focusable="false" width="5" height="8" class="icon icon-chevron-right-small reverse-icon" viewBox="0 0 5 8">
  2528.        <path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
  2529.      </svg></span>
  2530.      </a></section-header><div class="scrollable-with-controls"><scroll-carousel selector=".collection-card" id="scroll-area-template--18347438506258__collection_list_Jw6rKV" class="scroll-area bleed ">
  2531.        <collection-list class="collection-list"><a href="/collections/sales" class="collection-card  shadow" reveal-js>
  2532.              <div class="content-over-media group rounded-sm" style="--content-over-media-overlay: 0 0 0 / 0.35"><img src="//houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&amp;width=2048" alt="Cherry - Monac" srcset="//houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&amp;width=1600 1600w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 73vw, 360px" class="zoom-image"><div class="collection-card__content-wrapper text-custom place-self-center text-center" style="--text-color: 255 255 255"><div class="collection-card__content prose"><p class="h2">Sale</p>
  2533.                    </div><svg role="presentation" focusable="false" width="40" height="40" class="icon icon-circle-button-right-clipped" viewBox="0 0 24 24">
  2534.        <path fill-rule="evenodd" clip-rule="evenodd" d="M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12ZM10.47 9.53 12.94 12l-2.47 2.47 1.06 1.06 3-3 .53-.53-.53-.53-3-3-1.06 1.06Z" fill="currentColor"></path>
  2535.      </svg></div></div>
  2536.            </a><a href="/collections/body-lotions" class="collection-card  shadow" reveal-js>
  2537.              <div class="content-over-media group rounded-sm" style="--content-over-media-overlay: 0 0 0 / 0.4"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&amp;width=1080" alt="" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 73vw, 360px" class="zoom-image"><div class="collection-card__content-wrapper text-custom place-self-center text-center" style="--text-color: 255 255 255"><div class="collection-card__content prose"><p class="h2">Body Lotions</p>
  2538.                    </div><svg role="presentation" focusable="false" width="40" height="40" class="icon icon-circle-button-right-clipped" viewBox="0 0 24 24">
  2539.        <path fill-rule="evenodd" clip-rule="evenodd" d="M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12ZM10.47 9.53 12.94 12l-2.47 2.47 1.06 1.06 3-3 .53-.53-.53-.53-3-3-1.06 1.06Z" fill="currentColor"></path>
  2540.      </svg></div></div>
  2541.            </a><a href="/collections/fragrance" class="collection-card  shadow" reveal-js>
  2542.              <div class="content-over-media group rounded-sm" style="--content-over-media-overlay: 0 0 0 / 0.4"><img src="//houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&amp;width=2560" alt="Imagine Inspired by Imagination" srcset="//houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&amp;width=1600 1600w" width="2560" height="2560" loading="lazy" sizes="(max-width: 699px) 73vw, 360px" class="zoom-image"><div class="collection-card__content-wrapper text-custom place-self-center text-center" style="--text-color: 255 255 255"><div class="collection-card__content prose"><p class="h2">Fragrances</p>
  2543.                    </div><svg role="presentation" focusable="false" width="40" height="40" class="icon icon-circle-button-right-clipped" viewBox="0 0 24 24">
  2544.        <path fill-rule="evenodd" clip-rule="evenodd" d="M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12ZM10.47 9.53 12.94 12l-2.47 2.47 1.06 1.06 3-3 .53-.53-.53-.53-3-3-1.06 1.06Z" fill="currentColor"></path>
  2545.      </svg></div></div>
  2546.            </a><a href="/collections/body-wash" class="collection-card  shadow" reveal-js>
  2547.              <div class="content-over-media group rounded-sm" style="--content-over-media-overlay: 0 0 0 / 0.4"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&amp;width=2048" alt="Imagine Body Wash Inspired By Imagination" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&amp;width=1600 1600w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 73vw, 360px" class="zoom-image"><div class="collection-card__content-wrapper text-custom place-self-center text-center" style="--text-color: 255 255 255"><div class="collection-card__content prose"><p class="h2">Body Wash</p>
  2548.                    </div><svg role="presentation" focusable="false" width="40" height="40" class="icon icon-circle-button-right-clipped" viewBox="0 0 24 24">
  2549.        <path fill-rule="evenodd" clip-rule="evenodd" d="M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12ZM10.47 9.53 12.94 12l-2.47 2.47 1.06 1.06 3-3 .53-.53-.53-.53-3-3-1.06 1.06Z" fill="currentColor"></path>
  2550.      </svg></div></div>
  2551.            </a><a href="/collections/candle" class="collection-card  shadow" reveal-js>
  2552.              <div class="content-over-media group rounded-sm" style="--content-over-media-overlay: 0 0 0 / 0.4"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-11-30-039.jpg?v=1724773828&amp;width=2048" alt="Intensely Candle Inspired By Armani Stronger With You Intensely" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-11-30-039.jpg?v=1724773828&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-11-30-039.jpg?v=1724773828&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-11-30-039.jpg?v=1724773828&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-11-30-039.jpg?v=1724773828&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-11-30-039.jpg?v=1724773828&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-11-30-039.jpg?v=1724773828&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-11-30-039.jpg?v=1724773828&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-11-30-039.jpg?v=1724773828&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-11-30-039.jpg?v=1724773828&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-11-30-039.jpg?v=1724773828&amp;width=1600 1600w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 73vw, 360px" class="zoom-image"><div class="collection-card__content-wrapper text-custom place-self-center text-center" style="--text-color: 255 255 255"><div class="collection-card__content prose"><p class="h2">Candles</p>
  2553.                    </div><svg role="presentation" focusable="false" width="40" height="40" class="icon icon-circle-button-right-clipped" viewBox="0 0 24 24">
  2554.        <path fill-rule="evenodd" clip-rule="evenodd" d="M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12ZM10.47 9.53 12.94 12l-2.47 2.47 1.06 1.06 3-3 .53-.53-.53-.53-3-3-1.06 1.06Z" fill="currentColor"></path>
  2555.      </svg></div></div>
  2556.            </a></collection-list>
  2557.      </scroll-carousel><div class="scrollbar peer-not-scrollable:hidden">
  2558.  <scroll-progress observes="scroll-area-template--18347438506258__collection_list_Jw6rKV" class="scrollbar__progress" style="--scroll-progress: 1.0"></scroll-progress><div aria-controls="scroll-area-template--18347438506258__collection_list_Jw6rKV" class="scrollbar__buttons">
  2559.      <button is="prev-button" class="circle-button ring group" aria-controls="scroll-area-template--18347438506258__collection_list_Jw6rKV" disabled>
  2560.        <span class="sr-only">Previous</span>
  2561.        <span class="animated-arrow animated-arrow--reverse"></span>
  2562.      </button>
  2563.  
  2564.      <button is="next-button" class="circle-button ring group" aria-controls="scroll-area-template--18347438506258__collection_list_Jw6rKV">
  2565.        <span class="sr-only">Next</span>
  2566.        <span class="animated-arrow"></span>
  2567.      </button>
  2568.    </div></div></div>
  2569.  </div>
  2570. </div>
  2571.  
  2572. </section><section id="shopify-section-template--18347438506258__1747687338c0d013ff" class="shopify-section shopify-section--apps"><style>
  2573.  #shopify-section-template--18347438506258__1747687338c0d013ff {
  2574.    --section-background-hash: 0;
  2575.  }
  2576.  
  2577.  #shopify-section-template--18347438506258__1747687338c0d013ff + * {
  2578.    --previous-section-background-hash: 0;
  2579.  }</style><style>
  2580.    #shopify-section-template--18347438506258__1747687338c0d013ff {
  2581.      
  2582.      
  2583.    }
  2584.  </style>
  2585.  
  2586.  <div class="section   section-blends section-full"><div id="shopify-block-AVWVjbjg0OG5rL1VsR__junip_junip_review_carousel_Nc7fmx" class="shopify-block shopify-app-block"><div
  2587.  class="junip-review-carousel "
  2588.  data-reviews-type=product_reviews
  2589.  data-show-summary=true
  2590.  data-title="Reviews"
  2591.  data-product-id=""
  2592.  style="padding-top: 48px; padding-bottom: 48px;"
  2593. >
  2594. </div>
  2595.  
  2596. </div></div>
  2597. </section><section id="shopify-section-template--18347438506258__featured_collection_TYmrnt" class="shopify-section shopify-section--featured-collection"><style>
  2598.  #shopify-section-template--18347438506258__featured_collection_TYmrnt {
  2599.    --section-background-hash: 0;
  2600.  }
  2601.  
  2602.  #shopify-section-template--18347438506258__featured_collection_TYmrnt + * {
  2603.    --previous-section-background-hash: 0;
  2604.  }</style><style>#shopify-section-template--18347438506258__featured_collection_TYmrnt .product-list {
  2605.    --product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
  2606.    --product-list-items-per-row: 1;
  2607.    --product-list-carousel-item-width: 74vw;
  2608.    --product-list-grid: auto / auto-flow var(--product-list-carousel-item-width);
  2609.  }
  2610.  
  2611.  @media screen and (min-width: 700px) {
  2612.    #shopify-section-template--18347438506258__featured_collection_TYmrnt .product-list {
  2613.      --product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
  2614.      --product-list-items-per-row: 2;
  2615.      --product-list-carousel-item-width: 36vw;
  2616.    }
  2617.  }
  2618.  
  2619.  @media screen and (min-width: 1000px) {
  2620.    #shopify-section-template--18347438506258__featured_collection_TYmrnt .product-list {
  2621.      --product-list-items-per-row: 5;
  2622.      --product-list-carousel-item-width: calc(var(--container-inner-width) / 5 - (var(--product-list-column-gap) / 5 * 4));
  2623.    }
  2624.  }
  2625. </style>
  2626.  
  2627. <div class="section   section-blends section-full">
  2628.  <div class="section-stack">
  2629.  <section-header class="section-header "><div class="prose"><h2 class="h2" reveal-on-scroll="true"><split-lines>Sale Items</split-lines></h2></div><a href="/collections/sales" class="text-with-icon group">
  2630.        <span class="reversed-link">View all</span>
  2631.        <span class="circle-chevron group-hover:colors"><svg role="presentation" focusable="false" width="5" height="8" class="icon icon-chevron-right-small reverse-icon" viewBox="0 0 5 8">
  2632.        <path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
  2633.      </svg></span>
  2634.      </a></section-header><div class="scrollable-with-controls"><scroll-carousel selector="product-card" id="scroll-area-template--18347438506258__featured_collection_TYmrnt" class="scroll-area bleed is-scrollable">
  2635.        <reveal-items selector=".product-list > *">
  2636.          <product-list class="product-list"><product-card handle="cherry-inspired-by-tom-ford-lost-cherry"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><on-sale-badge  discount-mode="saving"  class="badge badge--on-sale">On sale</on-sale-badge></div><div class="product-card__figure">
  2637.      <a href="/products/cherry-inspired-by-tom-ford-lost-cherry" data-instant><img src="//houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&amp;width=2048" alt="Cherry - Monac" srcset="//houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&amp;width=1800 1800w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-02-29_14-14-20-293.jpg?v=1742240294&amp;width=1080" alt="Tom Ford Lost Cherry Fragrance, Luxury Scent, warm, spicy, sweet, amber scent notes" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-02-29_14-14-20-293.jpg?v=1742240294&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-02-29_14-14-20-293.jpg?v=1742240294&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-02-29_14-14-20-293.jpg?v=1742240294&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-02-29_14-14-20-293.jpg?v=1742240294&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-02-29_14-14-20-293.jpg?v=1742240294&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-02-29_14-14-20-293.jpg?v=1742240294&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-02-29_14-14-20-293.jpg?v=1742240294&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-02-29_14-14-20-293.jpg?v=1742240294&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2638.          <span class="product-card__title"><a href="/products/cherry-inspired-by-tom-ford-lost-cherry" class="bold" data-instant>Cherry</a></span><a href="/products/cherry-inspired-by-tom-ford-lost-cherry#shopify-product-reviews" class="rating " title="3 reviews" ><span class="text-sm">4.7</span><div class="rating__stars" role="img" aria-label="4.7 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  2639.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  2640.      </svg></div>
  2641.  </a></div><p style="background-color:#F4F4F4;">inspired by Tom Ford Lost Cherry (Reatil $405)</p><price-list  class="price-list  " ><sale-price class="text-on-sale">
  2642.          <span class="sr-only">Sale price</span>From $19.99</sale-price>
  2643.  
  2644.        <compare-at-price class="text-subdued line-through">
  2645.          <span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
  2646. </product-card><product-card handle="why-inspired-by-yves-saint-laurent-y"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><on-sale-badge  discount-mode="saving"  class="badge badge--on-sale">On sale</on-sale-badge></div><div class="product-card__figure">
  2647.      <a href="/products/why-inspired-by-yves-saint-laurent-y" data-instant><img src="//houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&amp;width=2048" alt="Why - Monac" srcset="//houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&amp;width=1800 1800w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.24PM.jpg?v=1741978190&amp;width=1080" alt="ysl y clone dupe luxury scent notes" srcset="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.24PM.jpg?v=1741978190&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.24PM.jpg?v=1741978190&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.24PM.jpg?v=1741978190&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.24PM.jpg?v=1741978190&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.24PM.jpg?v=1741978190&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.24PM.jpg?v=1741978190&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.24PM.jpg?v=1741978190&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.24PM.jpg?v=1741978190&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2648.          <span class="product-card__title"><a href="/products/why-inspired-by-yves-saint-laurent-y" class="bold" data-instant>Why</a></span><a href="/products/why-inspired-by-yves-saint-laurent-y#shopify-product-reviews" class="rating " title="2 reviews" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  2649.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  2650.      </svg></div>
  2651.  </a></div><p style="background-color:#F4F4F4;"> Inspired By YSL Y EDP (Retail $190)</p><price-list  class="price-list  " ><sale-price class="text-on-sale">
  2652.          <span class="sr-only">Sale price</span>From $19.00</sale-price>
  2653.  
  2654.        <compare-at-price class="text-subdued line-through">
  2655.          <span class="sr-only">Regular price</span>$29.00</compare-at-price></price-list></div></div>
  2656. </product-card><product-card handle="millionaire-prive-inspired-by-1-million-prive"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><sold-out-badge   class="badge badge--sold-out">Sold out</sold-out-badge></div><div class="product-card__figure">
  2657.      <a href="/products/millionaire-prive-inspired-by-1-million-prive" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&amp;width=2048" alt="Millionaire Prive - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&amp;width=1800 1800w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-05-16_12-23-03-233.jpg?v=1742360371&amp;width=1080" alt="Millionaire Prive Inspired by 1 Million Prive" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-05-16_12-23-03-233.jpg?v=1742360371&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-16_12-23-03-233.jpg?v=1742360371&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-16_12-23-03-233.jpg?v=1742360371&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-16_12-23-03-233.jpg?v=1742360371&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-16_12-23-03-233.jpg?v=1742360371&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-16_12-23-03-233.jpg?v=1742360371&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-16_12-23-03-233.jpg?v=1742360371&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-16_12-23-03-233.jpg?v=1742360371&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2658.          <span class="product-card__title"><a href="/products/millionaire-prive-inspired-by-1-million-prive" class="bold" data-instant>Millionaire Prive</a></span></div><p style="background-color:#F4F4F4;"> Inspired By One Million Prive (Retail $260)</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  2659.        <span class="sr-only">Sale price</span>From $19.99
  2660. </sale-price></price-list></div></div>
  2661. </product-card><product-card handle="french-river-inspired-by-mancera-french-riviera"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><on-sale-badge  discount-mode="saving"  class="badge badge--on-sale">On sale</on-sale-badge></div><div class="product-card__figure">
  2662.      <a href="/products/french-river-inspired-by-mancera-french-riviera" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-03-07_15-41-40-741.jpg?v=1743102344&amp;width=3464" alt="French River Inspired By Mancera French Riviera " srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-03-07_15-41-40-741.jpg?v=1743102344&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_15-41-40-741.jpg?v=1743102344&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_15-41-40-741.jpg?v=1743102344&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_15-41-40-741.jpg?v=1743102344&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_15-41-40-741.jpg?v=1743102344&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_15-41-40-741.jpg?v=1743102344&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_15-41-40-741.jpg?v=1743102344&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_15-41-40-741.jpg?v=1743102344&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_15-41-40-741.jpg?v=1743102344&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_15-41-40-741.jpg?v=1743102344&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_15-41-40-741.jpg?v=1743102344&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_15-41-40-741.jpg?v=1743102344&amp;width=1800 1800w" width="3464" height="3464" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-01-13_11-54-12-152.jpg?v=1743102344&amp;width=3464" alt="French River Inspired By Mancera French Riviera " srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-01-13_11-54-12-152.jpg?v=1743102344&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-13_11-54-12-152.jpg?v=1743102344&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-13_11-54-12-152.jpg?v=1743102344&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-13_11-54-12-152.jpg?v=1743102344&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-13_11-54-12-152.jpg?v=1743102344&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-13_11-54-12-152.jpg?v=1743102344&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-13_11-54-12-152.jpg?v=1743102344&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-13_11-54-12-152.jpg?v=1743102344&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-13_11-54-12-152.jpg?v=1743102344&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-13_11-54-12-152.jpg?v=1743102344&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-13_11-54-12-152.jpg?v=1743102344&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-13_11-54-12-152.jpg?v=1743102344&amp;width=1800 1800w" width="3464" height="3464" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2663.          <span class="product-card__title"><a href="/products/french-river-inspired-by-mancera-french-riviera" class="bold" data-instant>French River</a></span></div><p style="background-color:#F4F4F4;">Inspired By French Riviera mancera  (Retail $190)</p><price-list  class="price-list  " ><sale-price class="text-on-sale">
  2664.          <span class="sr-only">Sale price</span>From $19.99</sale-price>
  2665.  
  2666.        <compare-at-price class="text-subdued line-through">
  2667.          <span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
  2668. </product-card><product-card handle="savage-elixir-inspired-by-sauvage-elixir"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><on-sale-badge  discount-mode="saving"  class="badge badge--on-sale">On sale</on-sale-badge></div><div class="product-card__figure">
  2669.      <a href="/products/savage-elixir-inspired-by-sauvage-elixir" data-instant><img src="//houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&amp;width=2048" alt="Savage Elixir - Monac" srcset="//houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&amp;width=1800 1800w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-10at3.38.17PM_2.jpg?v=1745943778&amp;width=1080" alt=" Sauvage Elixir Clone, Dupe, woody, citrusy, luxury scent notes" srcset="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-10at3.38.17PM_2.jpg?v=1745943778&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-10at3.38.17PM_2.jpg?v=1745943778&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-10at3.38.17PM_2.jpg?v=1745943778&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-10at3.38.17PM_2.jpg?v=1745943778&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-10at3.38.17PM_2.jpg?v=1745943778&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-10at3.38.17PM_2.jpg?v=1745943778&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-10at3.38.17PM_2.jpg?v=1745943778&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-10at3.38.17PM_2.jpg?v=1745943778&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2670.          <span class="product-card__title"><a href="/products/savage-elixir-inspired-by-sauvage-elixir" class="bold" data-instant>Savage Elixir</a></span><a href="/products/savage-elixir-inspired-by-sauvage-elixir#shopify-product-reviews" class="rating " title="1 review" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  2671.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  2672.      </svg></div>
  2673.  </a></div><p style="background-color:#F4F4F4;">Inspired By Sauvage Elixir (Retail $220)</p><price-list  class="price-list  " ><sale-price class="text-on-sale">
  2674.          <span class="sr-only">Sale price</span>From $19.99</sale-price>
  2675.  
  2676.        <compare-at-price class="text-subdued line-through">
  2677.          <span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
  2678. </product-card><product-card handle="gio-inspired-by-armani-acqua-di-gio"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><sold-out-badge   class="badge badge--sold-out">Sold out</sold-out-badge></div><div class="product-card__figure">
  2679.      <a href="/products/gio-inspired-by-armani-acqua-di-gio" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&amp;width=2048" alt="Gio - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&amp;width=1800 1800w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-13at9.44.54PM_2.jpg?v=1742362165&amp;width=1080" alt="Acqua Di Gio Clone, Dupe, Fresh, Aquatic, marine, luxury scent notes" srcset="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-13at9.44.54PM_2.jpg?v=1742362165&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-13at9.44.54PM_2.jpg?v=1742362165&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-13at9.44.54PM_2.jpg?v=1742362165&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-13at9.44.54PM_2.jpg?v=1742362165&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-13at9.44.54PM_2.jpg?v=1742362165&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-13at9.44.54PM_2.jpg?v=1742362165&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-13at9.44.54PM_2.jpg?v=1742362165&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-13at9.44.54PM_2.jpg?v=1742362165&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2680.          <span class="product-card__title"><a href="/products/gio-inspired-by-armani-acqua-di-gio" class="bold" data-instant>Gio</a></span></div><p style="background-color:#F4F4F4;">Inspired By Acqua di Gio Profondo (Retail $115)</p><price-list  class="price-list  " ><sale-price class="text-on-sale">
  2681.          <span class="sr-only">Sale price</span>From $19.99</sale-price>
  2682.  
  2683.        <compare-at-price class="text-subdued line-through">
  2684.          <span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
  2685. </product-card><product-card handle="pineapple-beach"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2686.      <a href="/products/pineapple-beach" data-instant><img src="//houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&amp;width=2560" alt="Pineapple Beach - Monac" srcset="//houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&amp;width=1800 1800w" width="2560" height="2560" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/IMG-20240710-WA0021.jpg?v=1742311570&amp;width=1080" alt="Pineapple Beach Gourmand Fragrance" srcset="//houseofmonac.com/cdn/shop/files/IMG-20240710-WA0021.jpg?v=1742311570&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0021.jpg?v=1742311570&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0021.jpg?v=1742311570&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0021.jpg?v=1742311570&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0021.jpg?v=1742311570&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0021.jpg?v=1742311570&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0021.jpg?v=1742311570&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0021.jpg?v=1742311570&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2687.          <span class="product-card__title"><a href="/products/pineapple-beach" class="bold" data-instant>Pineapple Beach</a></span></div><p style="background-color:#F4F4F4;">Pineapple Beach</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  2688.        <span class="sr-only">Sale price</span>From $19.99
  2689. </sale-price></price-list></div></div>
  2690. </product-card><product-card handle="vanilla-rose-inspired-by-mancera-roses-vanilla"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><on-sale-badge  discount-mode="saving"  class="badge badge--on-sale">On sale</on-sale-badge></div><div class="product-card__figure">
  2691.      <a href="/products/vanilla-rose-inspired-by-mancera-roses-vanilla" data-instant><img src="//houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&amp;width=2048" alt="Vanilla Rose Inspired By Mancera Roses Vanilla" srcset="//houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&amp;width=1800 1800w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-09-53-089.jpg?v=1743623227&amp;width=3464" alt="Vanilla Rose Inspired By Mancera Roses Vanilla" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-09-53-089.jpg?v=1743623227&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-09-53-089.jpg?v=1743623227&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-09-53-089.jpg?v=1743623227&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-09-53-089.jpg?v=1743623227&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-09-53-089.jpg?v=1743623227&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-09-53-089.jpg?v=1743623227&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-09-53-089.jpg?v=1743623227&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-09-53-089.jpg?v=1743623227&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-09-53-089.jpg?v=1743623227&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-09-53-089.jpg?v=1743623227&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-09-53-089.jpg?v=1743623227&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-09-53-089.jpg?v=1743623227&amp;width=1800 1800w" width="3464" height="3464" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2692.          <span class="product-card__title"><a href="/products/vanilla-rose-inspired-by-mancera-roses-vanilla" class="bold" data-instant>Vanilla Rose</a></span></div><p style="background-color:#F4F4F4;">Inspired By Mancera Roses Vanilla (Retail $190)</p><price-list  class="price-list  " ><sale-price class="text-on-sale">
  2693.          <span class="sr-only">Sale price</span>From $19.99</sale-price>
  2694.  
  2695.        <compare-at-price class="text-subdued line-through">
  2696.          <span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
  2697. </product-card><product-card handle="warm-apple-pie"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2698.      <a href="/products/warm-apple-pie" data-instant><img src="//houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&amp;width=2560" alt="Warm Apple Pie - Monac" srcset="//houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&amp;width=1800 1800w" width="2560" height="2560" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM.jpg?v=1742312248&amp;width=1080" alt="Warm Apple Pie Gourmand Frangrance, sweet, delicious, savory, luxury scent notes" srcset="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM.jpg?v=1742312248&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM.jpg?v=1742312248&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM.jpg?v=1742312248&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM.jpg?v=1742312248&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM.jpg?v=1742312248&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM.jpg?v=1742312248&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM.jpg?v=1742312248&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM.jpg?v=1742312248&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2699.          <span class="product-card__title"><a href="/products/warm-apple-pie" class="bold" data-instant>Warm Apple Pie</a></span></div><p style="background-color:#F4F4F4;"></p><price-list  class="price-list  " ><sale-price class="text-subdued">
  2700.        <span class="sr-only">Sale price</span>From $19.99
  2701. </sale-price></price-list></div></div>
  2702. </product-card><product-card handle="strawberry-shortcake"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2703.      <a href="/products/strawberry-shortcake" data-instant><img src="//houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=2560" alt="Strawberry Shortcake - Monac" srcset="//houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=1800 1800w" width="2560" height="2560" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&amp;width=1080" alt="Strawberry Shortcake Gourmand Fragrance, sweet, delicious, savory, luxury scent notes" srcset="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2704.          <span class="product-card__title"><a href="/products/strawberry-shortcake" class="bold" data-instant>Strawberry Shortcake</a></span><a href="/products/strawberry-shortcake#shopify-product-reviews" class="rating " title="1 review" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  2705.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  2706.      </svg></div>
  2707.  </a></div><p style="background-color:#F4F4F4;"></p><price-list  class="price-list  " ><sale-price class="text-subdued">
  2708.        <span class="sr-only">Sale price</span>From $19.99
  2709. </sale-price></price-list></div></div>
  2710. </product-card><product-card handle="paradux-inspired-by-prada-paradoxe"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><on-sale-badge  discount-mode="saving"  class="badge badge--on-sale">On sale</on-sale-badge></div><div class="product-card__figure">
  2711.      <a href="/products/paradux-inspired-by-prada-paradoxe" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-03-18_17-49-27-058.jpg?v=1743697009&amp;width=2048" alt="Paradux Inspired By Prada Paradoxe " srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-03-18_17-49-27-058.jpg?v=1743697009&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_17-49-27-058.jpg?v=1743697009&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_17-49-27-058.jpg?v=1743697009&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_17-49-27-058.jpg?v=1743697009&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_17-49-27-058.jpg?v=1743697009&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_17-49-27-058.jpg?v=1743697009&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_17-49-27-058.jpg?v=1743697009&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_17-49-27-058.jpg?v=1743697009&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_17-49-27-058.jpg?v=1743697009&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_17-49-27-058.jpg?v=1743697009&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_17-49-27-058.jpg?v=1743697009&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_17-49-27-058.jpg?v=1743697009&amp;width=1800 1800w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-09-06_14-33-20-882.jpg?v=1743697010&amp;width=1080" alt="Paradux Inspired By Prada Paradoxe " srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-09-06_14-33-20-882.jpg?v=1743697010&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-09-06_14-33-20-882.jpg?v=1743697010&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-09-06_14-33-20-882.jpg?v=1743697010&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-09-06_14-33-20-882.jpg?v=1743697010&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-09-06_14-33-20-882.jpg?v=1743697010&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-09-06_14-33-20-882.jpg?v=1743697010&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-09-06_14-33-20-882.jpg?v=1743697010&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-09-06_14-33-20-882.jpg?v=1743697010&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2712.          <span class="product-card__title"><a href="/products/paradux-inspired-by-prada-paradoxe" class="bold" data-instant>Paradux</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Prada Paradoxe (Retail $165)</p><price-list  class="price-list  " ><sale-price class="text-on-sale">
  2713.          <span class="sr-only">Sale price</span>From $19.99</sale-price>
  2714.  
  2715.        <compare-at-price class="text-subdued line-through">
  2716.          <span class="sr-only">Regular price</span>$29.00</compare-at-price></price-list></div></div>
  2717. </product-card><product-card handle="arab-tonka-inspired-by-montale-arabians-tonka"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><on-sale-badge  discount-mode="saving"  class="badge badge--on-sale">On sale</on-sale-badge></div><div class="product-card__figure">
  2718.      <a href="/products/arab-tonka-inspired-by-montale-arabians-tonka" data-instant><img src="//houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&amp;width=2560" alt="Arab Tonka Inspired By Montale Arabians Tonka" srcset="//houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&amp;width=1800 1800w" width="2560" height="2560" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-35-53-522.jpg?v=1743017263&amp;width=3464" alt="Arab Tonka Inspired By Montale Arabians Tonka" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-35-53-522.jpg?v=1743017263&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-35-53-522.jpg?v=1743017263&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-35-53-522.jpg?v=1743017263&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-35-53-522.jpg?v=1743017263&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-35-53-522.jpg?v=1743017263&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-35-53-522.jpg?v=1743017263&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-35-53-522.jpg?v=1743017263&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-35-53-522.jpg?v=1743017263&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-35-53-522.jpg?v=1743017263&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-35-53-522.jpg?v=1743017263&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-35-53-522.jpg?v=1743017263&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-35-53-522.jpg?v=1743017263&amp;width=1800 1800w" width="3464" height="3464" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2719.          <span class="product-card__title"><a href="/products/arab-tonka-inspired-by-montale-arabians-tonka" class="bold" data-instant>Arab Tonka</a></span><a href="/products/arab-tonka-inspired-by-montale-arabians-tonka#shopify-product-reviews" class="rating " title="2 reviews" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  2720.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  2721.      </svg></div>
  2722.  </a></div><p style="background-color:#F4F4F4;">Inspired By Montale Arabians Tonka (Retail $180)</p><price-list  class="price-list  " ><sale-price class="text-on-sale">
  2723.          <span class="sr-only">Sale price</span>From $19.99</sale-price>
  2724.  
  2725.        <compare-at-price class="text-subdued line-through">
  2726.          <span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
  2727. </product-card><product-card handle="wild-berry-cheese-cake"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2728.      <a href="/products/wild-berry-cheese-cake" data-instant><img src="//houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&amp;width=2560" alt="Wild Berry Cheese Cake - Monac" srcset="//houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&amp;width=1800 1800w" width="2560" height="2560" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.37.33PM.jpg?v=1742311818&amp;width=1080" alt="Wild berry cheesecake gourmand fragrance, sweet, savory, luxury notes" srcset="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.37.33PM.jpg?v=1742311818&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.37.33PM.jpg?v=1742311818&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.37.33PM.jpg?v=1742311818&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.37.33PM.jpg?v=1742311818&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.37.33PM.jpg?v=1742311818&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.37.33PM.jpg?v=1742311818&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.37.33PM.jpg?v=1742311818&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.37.33PM.jpg?v=1742311818&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2729.          <span class="product-card__title"><a href="/products/wild-berry-cheese-cake" class="bold" data-instant>Wild Berry Cheese Cake</a></span></div><p style="background-color:#F4F4F4;"></p><price-list  class="price-list  " ><sale-price class="text-subdued">
  2730.        <span class="sr-only">Sale price</span>From $19.99
  2731. </sale-price></price-list></div></div>
  2732. </product-card><product-card handle="watermelon-lemonade"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><sold-out-badge   class="badge badge--sold-out">Sold out</sold-out-badge></div><div class="product-card__figure">
  2733.      <a href="/products/watermelon-lemonade" data-instant><img src="//houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&amp;width=2560" alt="Watermelon Lemonade - Monac" srcset="//houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&amp;width=1800 1800w" width="2560" height="2560" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-04-12_17-30-08-245.jpg?v=1742311965&amp;width=1080" alt="Watermelon Lemonade Gourmand Fragrance, juicy and refreshing lemonade touched with lemon burst and sweet southern sugar notes" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-04-12_17-30-08-245.jpg?v=1742311965&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-12_17-30-08-245.jpg?v=1742311965&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-12_17-30-08-245.jpg?v=1742311965&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-12_17-30-08-245.jpg?v=1742311965&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-12_17-30-08-245.jpg?v=1742311965&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-12_17-30-08-245.jpg?v=1742311965&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-12_17-30-08-245.jpg?v=1742311965&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-12_17-30-08-245.jpg?v=1742311965&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2734.          <span class="product-card__title"><a href="/products/watermelon-lemonade" class="bold" data-instant>Watermelon Lemonade</a></span><a href="/products/watermelon-lemonade#shopify-product-reviews" class="rating " title="1 review" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  2735.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  2736.      </svg></div>
  2737.  </a></div><p style="background-color:#F4F4F4;"></p><price-list  class="price-list  " ><sale-price class="text-subdued">
  2738.        <span class="sr-only">Sale price</span>From $19.99
  2739. </sale-price></price-list></div></div>
  2740. </product-card><product-card handle="genious-ginger-inspired-by-ingenious-ginger"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2741.      <a href="/products/genious-ginger-inspired-by-ingenious-ginger" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-41-09-505.jpg?v=1749581298&amp;width=3464" alt="Genious Ginger Inspired By Ingenious Ginger" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-41-09-505.jpg?v=1749581298&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-41-09-505.jpg?v=1749581298&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-41-09-505.jpg?v=1749581298&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-41-09-505.jpg?v=1749581298&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-41-09-505.jpg?v=1749581298&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-41-09-505.jpg?v=1749581298&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-41-09-505.jpg?v=1749581298&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-41-09-505.jpg?v=1749581298&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-41-09-505.jpg?v=1749581298&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-41-09-505.jpg?v=1749581298&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-41-09-505.jpg?v=1749581298&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-41-09-505.jpg?v=1749581298&amp;width=1800 1800w" width="3464" height="3464" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-50-05-969.jpg?v=1749581299&amp;width=3464" alt="Genious Ginger Inspired By Ingenious Ginger" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-50-05-969.jpg?v=1749581299&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-50-05-969.jpg?v=1749581299&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-50-05-969.jpg?v=1749581299&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-50-05-969.jpg?v=1749581299&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-50-05-969.jpg?v=1749581299&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-50-05-969.jpg?v=1749581299&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-50-05-969.jpg?v=1749581299&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-50-05-969.jpg?v=1749581299&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-50-05-969.jpg?v=1749581299&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-50-05-969.jpg?v=1749581299&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-50-05-969.jpg?v=1749581299&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-50-05-969.jpg?v=1749581299&amp;width=1800 1800w" width="3464" height="3464" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2742.          <span class="product-card__title"><a href="/products/genious-ginger-inspired-by-ingenious-ginger" class="bold" data-instant>Genious Ginger</a></span></div><p style="background-color:#F4F4F4;">Inspired By Ingenious Ginger (Retail $350)</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  2743.          <span class="sr-only">Sale price</span>From $29.00</sale-price></price-list></div></div>
  2744. </product-card><product-card handle="sugar-cookie"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2745.      <a href="/products/sugar-cookie" data-instant><img src="//houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=2560" alt="Sugar Cookie - Monac" srcset="//houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=1800 1800w" width="2560" height="2560" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&amp;width=1080" alt="Sugar Cookie Gourmand Fragrance, sweet, delicious, gourmand, luxury scent notes" srcset="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2746.          <span class="product-card__title"><a href="/products/sugar-cookie" class="bold" data-instant>Sugar Cookie</a></span></div><p style="background-color:#F4F4F4;"></p><price-list  class="price-list  " ><sale-price class="text-subdued">
  2747.        <span class="sr-only">Sale price</span>From $19.99
  2748. </sale-price></price-list></div></div>
  2749. </product-card><product-card handle="la-brea-inspired-by-yves-saint-laurent-libre"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><on-sale-badge  discount-mode="saving"  class="badge badge--on-sale">On sale</on-sale-badge></div><div class="product-card__figure">
  2750.      <a href="/products/la-brea-inspired-by-yves-saint-laurent-libre" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-03-19_13-51-51-187.jpg?v=1743627933&amp;width=2048" alt="La Brea Inspired By Yves Saint Laurent Libre" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-03-19_13-51-51-187.jpg?v=1743627933&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_13-51-51-187.jpg?v=1743627933&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_13-51-51-187.jpg?v=1743627933&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_13-51-51-187.jpg?v=1743627933&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_13-51-51-187.jpg?v=1743627933&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_13-51-51-187.jpg?v=1743627933&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_13-51-51-187.jpg?v=1743627933&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_13-51-51-187.jpg?v=1743627933&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_13-51-51-187.jpg?v=1743627933&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_13-51-51-187.jpg?v=1743627933&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_13-51-51-187.jpg?v=1743627933&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_13-51-51-187.jpg?v=1743627933&amp;width=1800 1800w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.25PM_2.jpg?v=1743627933&amp;width=1080" alt="La Brea Inspired By Yves Saint Laurent Libre" srcset="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.25PM_2.jpg?v=1743627933&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.25PM_2.jpg?v=1743627933&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.25PM_2.jpg?v=1743627933&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.25PM_2.jpg?v=1743627933&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.25PM_2.jpg?v=1743627933&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.25PM_2.jpg?v=1743627933&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.25PM_2.jpg?v=1743627933&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.25PM_2.jpg?v=1743627933&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2751.          <span class="product-card__title"><a href="/products/la-brea-inspired-by-yves-saint-laurent-libre" class="bold" data-instant>La Brea</a></span></div><p style="background-color:#F4F4F4;"> Inspired By YSL Libre EDP (Retail $165)</p><price-list  class="price-list  " ><sale-price class="text-on-sale">
  2752.          <span class="sr-only">Sale price</span>From $19.00</sale-price>
  2753.  
  2754.        <compare-at-price class="text-subdued line-through">
  2755.          <span class="sr-only">Regular price</span>$29.00</compare-at-price></price-list></div></div>
  2756. </product-card><product-card handle="rose-bomb-inspired-by-initio-atomic-rose"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><on-sale-badge  discount-mode="saving"  class="badge badge--on-sale">On sale</on-sale-badge></div><div class="product-card__figure">
  2757.      <a href="/products/rose-bomb-inspired-by-initio-atomic-rose" data-instant><img src="//houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&amp;width=2048" alt="Rose Bomb Inspired By Initio Atomic Rose" srcset="//houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&amp;width=1800 1800w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-57-21-096.jpg?v=1743698071&amp;width=1080" alt="Rose Bomb Inspired By Initio Atomic Rose" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-57-21-096.jpg?v=1743698071&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-57-21-096.jpg?v=1743698071&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-57-21-096.jpg?v=1743698071&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-57-21-096.jpg?v=1743698071&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-57-21-096.jpg?v=1743698071&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-57-21-096.jpg?v=1743698071&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-57-21-096.jpg?v=1743698071&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-57-21-096.jpg?v=1743698071&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2758.          <span class="product-card__title"><a href="/products/rose-bomb-inspired-by-initio-atomic-rose" class="bold" data-instant>Rose Bomb</a></span><a href="/products/rose-bomb-inspired-by-initio-atomic-rose#shopify-product-reviews" class="rating " title="1 review" ><span class="text-sm">4.0</span><div class="rating__stars" role="img" aria-label="4.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  2759.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  2760.      </svg></div>
  2761.  </a></div><p style="background-color:#F4F4F4;"> Inspired By Initio Atomic Rose(Retail $380)</p><price-list  class="price-list  " ><sale-price class="text-on-sale">
  2762.          <span class="sr-only">Sale price</span>From $19.99</sale-price>
  2763.  
  2764.        <compare-at-price class="text-subdued line-through">
  2765.          <span class="sr-only">Regular price</span>$29.00</compare-at-price></price-list></div></div>
  2766. </product-card><product-card handle="crush-inspired-by-mancera-instant-crush"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><on-sale-badge  discount-mode="saving"  class="badge badge--on-sale">On sale</on-sale-badge></div><div class="product-card__figure">
  2767.      <a href="/products/crush-inspired-by-mancera-instant-crush" data-instant><img src="//houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&amp;width=2560" alt="Crush Inspired By Mancera Instant Crush" srcset="//houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&amp;width=1800 1800w" width="2560" height="2560" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-21-00-609.jpg?v=1750100060&amp;width=3464" alt="Crush Inspired By Mancera Instant Crush" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-21-00-609.jpg?v=1750100060&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-21-00-609.jpg?v=1750100060&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-21-00-609.jpg?v=1750100060&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-21-00-609.jpg?v=1750100060&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-21-00-609.jpg?v=1750100060&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-21-00-609.jpg?v=1750100060&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-21-00-609.jpg?v=1750100060&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-21-00-609.jpg?v=1750100060&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-21-00-609.jpg?v=1750100060&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-21-00-609.jpg?v=1750100060&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-21-00-609.jpg?v=1750100060&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-21-00-609.jpg?v=1750100060&amp;width=1800 1800w" width="3464" height="3464" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2768.          <span class="product-card__title"><a href="/products/crush-inspired-by-mancera-instant-crush" class="bold" data-instant>Crush</a></span><a href="/products/crush-inspired-by-mancera-instant-crush#shopify-product-reviews" class="rating " title="1 review" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  2769.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  2770.      </svg></div>
  2771.  </a></div><p style="background-color:#F4F4F4;">Inspired By Mancera Instant Crush (Retail $190)</p><price-list  class="price-list  " ><sale-price class="text-on-sale">
  2772.          <span class="sr-only">Sale price</span>From $19.99</sale-price>
  2773.  
  2774.        <compare-at-price class="text-subdued line-through">
  2775.          <span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
  2776. </product-card><product-card handle="lome-inspired-by-yves-saint-laurent-lhomme"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><sold-out-badge   class="badge badge--sold-out">Sold out</sold-out-badge></div><div class="product-card__figure">
  2777.      <a href="/products/lome-inspired-by-yves-saint-laurent-lhomme" data-instant><img src="//houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&amp;width=2048" alt="Lome Inspired By Yves Saint Laurent LHomme" srcset="//houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&amp;width=1800 1800w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-49-09-608.jpg?v=1743702364&amp;width=1080" alt="Lome Inspired By Yves Saint Laurent L&#39;Homme" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-49-09-608.jpg?v=1743702364&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-49-09-608.jpg?v=1743702364&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-49-09-608.jpg?v=1743702364&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-49-09-608.jpg?v=1743702364&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-49-09-608.jpg?v=1743702364&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-49-09-608.jpg?v=1743702364&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-49-09-608.jpg?v=1743702364&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-49-09-608.jpg?v=1743702364&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2778.          <span class="product-card__title"><a href="/products/lome-inspired-by-yves-saint-laurent-lhomme" class="bold" data-instant>Lome</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Prada L'Homme (Retail $110)</p><price-list  class="price-list  " ><sale-price class="text-on-sale">
  2779.          <span class="sr-only">Sale price</span>From $19.99</sale-price>
  2780.  
  2781.        <compare-at-price class="text-subdued line-through">
  2782.          <span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
  2783. </product-card><product-card handle="alien-inspired-by-thierry-mugler-allien"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><on-sale-badge  discount-mode="saving"  class="badge badge--on-sale">On sale</on-sale-badge></div><div class="product-card__figure">
  2784.      <a href="/products/alien-inspired-by-thierry-mugler-allien" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-03-18_16-06-31-114.jpg?v=1743102578&amp;width=2048" alt="Alien Inspired By Thierry Mugler Allien" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-03-18_16-06-31-114.jpg?v=1743102578&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_16-06-31-114.jpg?v=1743102578&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_16-06-31-114.jpg?v=1743102578&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_16-06-31-114.jpg?v=1743102578&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_16-06-31-114.jpg?v=1743102578&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_16-06-31-114.jpg?v=1743102578&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_16-06-31-114.jpg?v=1743102578&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_16-06-31-114.jpg?v=1743102578&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_16-06-31-114.jpg?v=1743102578&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_16-06-31-114.jpg?v=1743102578&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_16-06-31-114.jpg?v=1743102578&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_16-06-31-114.jpg?v=1743102578&amp;width=1800 1800w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-48-01-239.jpg?v=1743102579&amp;width=3464" alt="Alien Inspired By Thierry Mugler Allien" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-48-01-239.jpg?v=1743102579&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-48-01-239.jpg?v=1743102579&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-48-01-239.jpg?v=1743102579&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-48-01-239.jpg?v=1743102579&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-48-01-239.jpg?v=1743102579&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-48-01-239.jpg?v=1743102579&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-48-01-239.jpg?v=1743102579&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-48-01-239.jpg?v=1743102579&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-48-01-239.jpg?v=1743102579&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-48-01-239.jpg?v=1743102579&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-48-01-239.jpg?v=1743102579&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-48-01-239.jpg?v=1743102579&amp;width=1800 1800w" width="3464" height="3464" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2785.          <span class="product-card__title"><a href="/products/alien-inspired-by-thierry-mugler-allien" class="bold" data-instant>Alien</a></span></div><p style="background-color:#F4F4F4;">Inspired By Thierry Mugler Allien (Retail $185)</p><price-list  class="price-list  " ><sale-price class="text-on-sale">
  2786.          <span class="sr-only">Sale price</span>From $19.99</sale-price>
  2787.  
  2788.        <compare-at-price class="text-subdued line-through">
  2789.          <span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
  2790. </product-card><product-card handle="newclius-inspired-by-xerjoff-newcleus"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><on-sale-badge  discount-mode="saving"  class="badge badge--on-sale">On sale</on-sale-badge></div><div class="product-card__figure">
  2791.      <a href="/products/newclius-inspired-by-xerjoff-newcleus" data-instant><img src="//houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&amp;width=2560" alt="Newclius Inspired By Xerjoff Newcleus" srcset="//houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&amp;width=1800 1800w" width="2560" height="2560" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-10-43-646.jpg?v=1743017629&amp;width=3464" alt="Newclius Inspired By Xerjoff Newcleus" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-10-43-646.jpg?v=1743017629&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-10-43-646.jpg?v=1743017629&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-10-43-646.jpg?v=1743017629&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-10-43-646.jpg?v=1743017629&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-10-43-646.jpg?v=1743017629&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-10-43-646.jpg?v=1743017629&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-10-43-646.jpg?v=1743017629&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-10-43-646.jpg?v=1743017629&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-10-43-646.jpg?v=1743017629&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-10-43-646.jpg?v=1743017629&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-10-43-646.jpg?v=1743017629&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-10-43-646.jpg?v=1743017629&amp;width=1800 1800w" width="3464" height="3464" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2792.          <span class="product-card__title"><a href="/products/newclius-inspired-by-xerjoff-newcleus" class="bold" data-instant>Newclius</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Xerjoff Newcleus (Retail $320)</p><price-list  class="price-list  " ><sale-price class="text-on-sale">
  2793.          <span class="sr-only">Sale price</span>From $19.99</sale-price>
  2794.  
  2795.        <compare-at-price class="text-subdued line-through">
  2796.          <span class="sr-only">Regular price</span>$29.00</compare-at-price></price-list></div></div>
  2797. </product-card><product-card handle="divine-cherry-pie"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2798.      <a href="/products/divine-cherry-pie" data-instant><img src="//houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=2560" alt="Divine Cherry Pie - Monac" srcset="//houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=1800 1800w" width="2560" height="2560" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&amp;width=1080" alt="Divine Cherry Pie Gourmand Fragrance, sweet, luxury, delicious scent packaging" srcset="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2799.          <span class="product-card__title"><a href="/products/divine-cherry-pie" class="bold" data-instant>Divine Cherry Pie</a></span><a href="/products/divine-cherry-pie#shopify-product-reviews" class="rating " title="1 review" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  2800.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  2801.      </svg></div>
  2802.  </a></div><p style="background-color:#F4F4F4;"></p><price-list  class="price-list  " ><sale-price class="text-subdued">
  2803.        <span class="sr-only">Sale price</span>From $19.99
  2804. </sale-price></price-list></div></div>
  2805. </product-card><product-card handle="key-lime-gelato"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2806.      <a href="/products/key-lime-gelato" data-instant><img src="//houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&amp;width=2560" alt="Key Lime Gelato - Monac" srcset="//houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&amp;width=1800 1800w" width="2560" height="2560" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/IMG-20240710-WA0022.jpg?v=1742311867&amp;width=1080" alt="Key Lime Gelato gourmand fragrance" srcset="//houseofmonac.com/cdn/shop/files/IMG-20240710-WA0022.jpg?v=1742311867&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0022.jpg?v=1742311867&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0022.jpg?v=1742311867&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0022.jpg?v=1742311867&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0022.jpg?v=1742311867&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0022.jpg?v=1742311867&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0022.jpg?v=1742311867&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0022.jpg?v=1742311867&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2807.          <span class="product-card__title"><a href="/products/key-lime-gelato" class="bold" data-instant>Key Lime Gelato</a></span></div><p style="background-color:#F4F4F4;">Key Lime Gelato</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  2808.        <span class="sr-only">Sale price</span>From $19.99
  2809. </sale-price></price-list></div></div>
  2810. </product-card><product-card handle="spicy-inspired-by-t-ford-bitter-peach"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><sold-out-badge   class="badge badge--sold-out">Sold out</sold-out-badge></div><div class="product-card__figure">
  2811.      <a href="/products/spicy-inspired-by-t-ford-bitter-peach" data-instant><img src="//houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&amp;width=2048" alt="Spicy Inspired by T Ford Bitter Peach" srcset="//houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&amp;width=1800 1800w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-07-26_12-47-16-674.jpg?v=1743701164&amp;width=1080" alt="Spicy Inspired by T.Ford Bitter Peach" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-07-26_12-47-16-674.jpg?v=1743701164&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-26_12-47-16-674.jpg?v=1743701164&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-26_12-47-16-674.jpg?v=1743701164&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-26_12-47-16-674.jpg?v=1743701164&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-26_12-47-16-674.jpg?v=1743701164&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-26_12-47-16-674.jpg?v=1743701164&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-26_12-47-16-674.jpg?v=1743701164&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-26_12-47-16-674.jpg?v=1743701164&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2812.          <span class="product-card__title"><a href="/products/spicy-inspired-by-t-ford-bitter-peach" class="bold" data-instant>Spicy</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Tom Ford Bitter Peach (Retail $305)</p><price-list  class="price-list  " ><sale-price class="text-on-sale">
  2813.          <span class="sr-only">Sale price</span>From $19.99</sale-price>
  2814.  
  2815.        <compare-at-price class="text-subdued line-through">
  2816.          <span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
  2817. </product-card><product-card handle="red-tobac-inspired-by-mancera-red-tobacco"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><on-sale-badge  discount-mode="saving"  class="badge badge--on-sale">On sale</on-sale-badge></div><div class="product-card__figure">
  2818.      <a href="/products/red-tobac-inspired-by-mancera-red-tobacco" data-instant><img src="//houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&amp;width=2048" alt="Red Tobac Inspired By Mancera Red Tobacco" srcset="//houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&amp;width=1800 1800w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-30-45-172.jpg?v=1743623180&amp;width=3464" alt="Red Tobac Inspired By Mancera Red Tobacco" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-30-45-172.jpg?v=1743623180&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-30-45-172.jpg?v=1743623180&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-30-45-172.jpg?v=1743623180&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-30-45-172.jpg?v=1743623180&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-30-45-172.jpg?v=1743623180&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-30-45-172.jpg?v=1743623180&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-30-45-172.jpg?v=1743623180&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-30-45-172.jpg?v=1743623180&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-30-45-172.jpg?v=1743623180&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-30-45-172.jpg?v=1743623180&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-30-45-172.jpg?v=1743623180&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-30-45-172.jpg?v=1743623180&amp;width=1800 1800w" width="3464" height="3464" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2819.          <span class="product-card__title"><a href="/products/red-tobac-inspired-by-mancera-red-tobacco" class="bold" data-instant>Red Tobac</a></span></div><p style="background-color:#F4F4F4;">Inspired By Mancera Red Tobacco (Retail $190)</p><price-list  class="price-list  " ><sale-price class="text-on-sale">
  2820.          <span class="sr-only">Sale price</span>From $19.99</sale-price>
  2821.  
  2822.        <compare-at-price class="text-subdued line-through">
  2823.          <span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
  2824. </product-card><product-card handle="chance-inspired-by-chanel-chance"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><on-sale-badge  discount-mode="saving"  class="badge badge--on-sale">On sale</on-sale-badge></div><div class="product-card__figure">
  2825.      <a href="/products/chance-inspired-by-chanel-chance" data-instant><img src="//houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&amp;width=2560" alt="Chance Inspired By Chanel Chance" srcset="//houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&amp;width=1800 1800w" width="2560" height="2560" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-01-09_11-13-27-199.jpg?v=1743102425&amp;width=1080" alt="Chance Inspired By Chanel Chance" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-01-09_11-13-27-199.jpg?v=1743102425&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-09_11-13-27-199.jpg?v=1743102425&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-09_11-13-27-199.jpg?v=1743102425&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-09_11-13-27-199.jpg?v=1743102425&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-09_11-13-27-199.jpg?v=1743102425&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-09_11-13-27-199.jpg?v=1743102425&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-09_11-13-27-199.jpg?v=1743102425&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-09_11-13-27-199.jpg?v=1743102425&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2826.          <span class="product-card__title"><a href="/products/chance-inspired-by-chanel-chance" class="bold" data-instant>Chance</a></span></div><p style="background-color:#F4F4F4;">Inspired By Chanel Chance (Retail $172)</p><price-list  class="price-list  " ><sale-price class="text-on-sale">
  2827.          <span class="sr-only">Sale price</span>From $19.99</sale-price>
  2828.  
  2829.        <compare-at-price class="text-subdued line-through">
  2830.          <span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
  2831. </product-card><product-card handle="angelic-man-inspired-by-a-men"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><on-sale-badge  discount-mode="saving"  class="badge badge--on-sale">On sale</on-sale-badge></div><div class="product-card__figure">
  2832.      <a href="/products/angelic-man-inspired-by-a-men" data-instant><img src="//houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&amp;width=2048" alt="Angelic Man Inspired By A Men" srcset="//houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&amp;width=1800 1800w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-01-08_14-47-29-107.jpg?v=1743102390&amp;width=3464" alt="Angelic Man Inspired By A Men" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-01-08_14-47-29-107.jpg?v=1743102390&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-08_14-47-29-107.jpg?v=1743102390&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-08_14-47-29-107.jpg?v=1743102390&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-08_14-47-29-107.jpg?v=1743102390&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-08_14-47-29-107.jpg?v=1743102390&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-08_14-47-29-107.jpg?v=1743102390&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-08_14-47-29-107.jpg?v=1743102390&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-08_14-47-29-107.jpg?v=1743102390&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-08_14-47-29-107.jpg?v=1743102390&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-08_14-47-29-107.jpg?v=1743102390&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-08_14-47-29-107.jpg?v=1743102390&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-08_14-47-29-107.jpg?v=1743102390&amp;width=1800 1800w" width="3464" height="3464" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2833.          <span class="product-card__title"><a href="/products/angelic-man-inspired-by-a-men" class="bold" data-instant>Angelic Man</a></span><a href="/products/angelic-man-inspired-by-a-men#shopify-product-reviews" class="rating " title="1 review" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  2834.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  2835.      </svg></div>
  2836.  </a></div><p style="background-color:#F4F4F4;">Inspired By A*Men (Retail $105)</p><price-list  class="price-list  " ><sale-price class="text-on-sale">
  2837.          <span class="sr-only">Sale price</span>From $19.99</sale-price>
  2838.  
  2839.        <compare-at-price class="text-subdued line-through">
  2840.          <span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
  2841. </product-card><product-card handle="royal-tobac-inspired-by-amouage-opus-xiv-royal-tobacco"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><on-sale-badge  discount-mode="saving"  class="badge badge--on-sale">On sale</on-sale-badge></div><div class="product-card__figure">
  2842.      <a href="/products/royal-tobac-inspired-by-amouage-opus-xiv-royal-tobacco" data-instant><img src="//houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&amp;width=2560" alt="Royal Tobac Inspired By Amouage Opus XIV Royal Tobacco" srcset="//houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&amp;width=1800 1800w" width="2560" height="2560" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-01-24_12-51-31-026.jpg?v=1743096785&amp;width=3464" alt="Royal Tobac Inspired By Amouage Opus XIV Royal Tobacco" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-01-24_12-51-31-026.jpg?v=1743096785&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-24_12-51-31-026.jpg?v=1743096785&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-24_12-51-31-026.jpg?v=1743096785&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-24_12-51-31-026.jpg?v=1743096785&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-24_12-51-31-026.jpg?v=1743096785&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-24_12-51-31-026.jpg?v=1743096785&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-24_12-51-31-026.jpg?v=1743096785&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-24_12-51-31-026.jpg?v=1743096785&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-24_12-51-31-026.jpg?v=1743096785&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-24_12-51-31-026.jpg?v=1743096785&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-24_12-51-31-026.jpg?v=1743096785&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-24_12-51-31-026.jpg?v=1743096785&amp;width=1800 1800w" width="3464" height="3464" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2843.          <span class="product-card__title"><a href="/products/royal-tobac-inspired-by-amouage-opus-xiv-royal-tobacco" class="bold" data-instant>Royal Tobac</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Amouage Opus XIV Royal Tobacco (Retail $380)</p><price-list  class="price-list  " ><sale-price class="text-on-sale">
  2844.          <span class="sr-only">Sale price</span>From $19.99</sale-price>
  2845.  
  2846.        <compare-at-price class="text-subdued line-through">
  2847.          <span class="sr-only">Regular price</span>$25.00</compare-at-price></price-list></div></div>
  2848. </product-card></product-list>
  2849.        </reveal-items>
  2850.      </scroll-carousel><div class="scrollbar peer-not-scrollable:hidden">
  2851.  <scroll-progress observes="scroll-area-template--18347438506258__featured_collection_TYmrnt" class="scrollbar__progress" style="--scroll-progress: 0.1724137931034483"></scroll-progress><div aria-controls="scroll-area-template--18347438506258__featured_collection_TYmrnt" class="scrollbar__buttons">
  2852.      <button is="prev-button" class="circle-button ring group" aria-controls="scroll-area-template--18347438506258__featured_collection_TYmrnt" disabled>
  2853.        <span class="sr-only">Previous</span>
  2854.        <span class="animated-arrow animated-arrow--reverse"></span>
  2855.      </button>
  2856.  
  2857.      <button is="next-button" class="circle-button ring group" aria-controls="scroll-area-template--18347438506258__featured_collection_TYmrnt">
  2858.        <span class="sr-only">Next</span>
  2859.        <span class="animated-arrow"></span>
  2860.      </button>
  2861.    </div></div></div>
  2862.  </div>
  2863. </div>
  2864.  
  2865. </section><section id="shopify-section-template--18347438506258__featured-collection" class="shopify-section shopify-section--featured-collection"><style>
  2866.  #shopify-section-template--18347438506258__featured-collection {
  2867.    --section-background-hash: 0;
  2868.  }
  2869.  
  2870.  #shopify-section-template--18347438506258__featured-collection + * {
  2871.    --previous-section-background-hash: 0;
  2872.  }</style><style>#shopify-section-template--18347438506258__featured-collection .product-list {
  2873.    --product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
  2874.    --product-list-items-per-row: 2;
  2875.    --product-list-carousel-item-width: 74vw;
  2876.    --product-list-grid: auto / auto-flow var(--product-list-carousel-item-width);
  2877.  }
  2878.  
  2879.  @media screen and (min-width: 700px) {
  2880.    #shopify-section-template--18347438506258__featured-collection .product-list {
  2881.      --product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
  2882.      --product-list-items-per-row: 2;
  2883.      --product-list-carousel-item-width: 36vw;
  2884.    }
  2885.  }
  2886.  
  2887.  @media screen and (min-width: 1000px) {
  2888.    #shopify-section-template--18347438506258__featured-collection .product-list {
  2889.      --product-list-items-per-row: 4;
  2890.      --product-list-carousel-item-width: calc(var(--container-inner-width) / 4 - (var(--product-list-column-gap) / 4 * 3));
  2891.    }
  2892.  }
  2893. </style>
  2894.  
  2895. <div class="section   section-blends section-full">
  2896.  <div class="section-stack">
  2897.  <section-header class="section-header "><div class="prose"><h2 class="h2" reveal-on-scroll="true"><split-lines>Best Selling Fragrances</split-lines></h2></div><a href="/collections/fragrance" class="text-with-icon group">
  2898.        <span class="reversed-link">View All</span>
  2899.        <span class="circle-chevron group-hover:colors"><svg role="presentation" focusable="false" width="5" height="8" class="icon icon-chevron-right-small reverse-icon" viewBox="0 0 5 8">
  2900.        <path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
  2901.      </svg></span>
  2902.      </a></section-header><div class="scrollable-with-controls"><scroll-carousel selector="product-card" id="scroll-area-template--18347438506258__featured-collection" class="scroll-area bleed is-scrollable">
  2903.        <reveal-items selector=".product-list > *">
  2904.          <product-list class="product-list"><product-card handle="latte-inspired-by-bianco-latte"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2905.      <a href="/products/latte-inspired-by-bianco-latte" data-instant><img src="//houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&amp;width=2560" alt="Latte Inspired By Bianco Latte" srcset="//houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&amp;width=1800 1800w" width="2560" height="2560" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-34-15-361.jpg?v=1750109208&amp;width=1080" alt="Latte Inspired By Bianco Latte" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-34-15-361.jpg?v=1750109208&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-34-15-361.jpg?v=1750109208&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-34-15-361.jpg?v=1750109208&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-34-15-361.jpg?v=1750109208&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-34-15-361.jpg?v=1750109208&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-34-15-361.jpg?v=1750109208&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-34-15-361.jpg?v=1750109208&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-34-15-361.jpg?v=1750109208&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2906.          <span class="product-card__title"><a href="/products/latte-inspired-by-bianco-latte" class="bold" data-instant>Latte</a></span><a href="/products/latte-inspired-by-bianco-latte#shopify-product-reviews" class="rating " title="4 reviews" ><span class="text-sm">4.0</span><div class="rating__stars" role="img" aria-label="4.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  2907.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  2908.      </svg></div>
  2909.  </a></div><p style="background-color:#F4F4F4;"> Inspired By Giardini Di Toscana Bianco Latte (Retail $150)</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  2910.        <span class="sr-only">Sale price</span>From $29.00
  2911. </sale-price></price-list></div></div>
  2912. </product-card><product-card handle="urban-inspired-erba-pura"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2913.      <a href="/products/urban-inspired-erba-pura" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-03-11_13-44-02-273.jpg?v=1750008447&amp;width=1084" alt="Urban inspired Erba Pura" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-03-11_13-44-02-273.jpg?v=1750008447&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-11_13-44-02-273.jpg?v=1750008447&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-11_13-44-02-273.jpg?v=1750008447&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-11_13-44-02-273.jpg?v=1750008447&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-11_13-44-02-273.jpg?v=1750008447&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-11_13-44-02-273.jpg?v=1750008447&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-11_13-44-02-273.jpg?v=1750008447&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-11_13-44-02-273.jpg?v=1750008447&amp;width=1000 1000w" width="1084" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-05-15_15-27-15-779.jpg?v=1750008428&amp;width=1080" alt="Urban inspired Erba Pura" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-05-15_15-27-15-779.jpg?v=1750008428&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-15_15-27-15-779.jpg?v=1750008428&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-15_15-27-15-779.jpg?v=1750008428&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-15_15-27-15-779.jpg?v=1750008428&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-15_15-27-15-779.jpg?v=1750008428&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-15_15-27-15-779.jpg?v=1750008428&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-15_15-27-15-779.jpg?v=1750008428&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-15_15-27-15-779.jpg?v=1750008428&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2914.          <span class="product-card__title"><a href="/products/urban-inspired-erba-pura" class="bold" data-instant>Urban</a></span><a href="/products/urban-inspired-erba-pura#shopify-product-reviews" class="rating " title="2 reviews" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  2915.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  2916.      </svg></div>
  2917.  </a></div><p style="background-color:#F4F4F4;"> Inspired By Xerjoff Erba Pura (Retail $180)</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  2918.        <span class="sr-only">Sale price</span>From $29.00
  2919. </sale-price></price-list></div></div>
  2920. </product-card><product-card handle="valiya-inspired-by-parfums-de-marly-valaya"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2921.      <a href="/products/valiya-inspired-by-parfums-de-marly-valaya" data-instant><img src="//houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&amp;width=2560" alt="Valiya Inspired By Parfums De Marly Valaya" srcset="//houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&amp;width=1800 1800w" width="2560" height="2560" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-08-29_11-57-25-112.jpg?v=1743698249&amp;width=1080" alt="Valiya Inspired By Parfums De Marly Valaya" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-08-29_11-57-25-112.jpg?v=1743698249&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_11-57-25-112.jpg?v=1743698249&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_11-57-25-112.jpg?v=1743698249&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_11-57-25-112.jpg?v=1743698249&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_11-57-25-112.jpg?v=1743698249&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_11-57-25-112.jpg?v=1743698249&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_11-57-25-112.jpg?v=1743698249&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_11-57-25-112.jpg?v=1743698249&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2922.          <span class="product-card__title"><a href="/products/valiya-inspired-by-parfums-de-marly-valaya" class="bold" data-instant>Valiya</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Parfums De Marly Valaya (Retail $375)</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  2923.        <span class="sr-only">Sale price</span>From $29.00
  2924. </sale-price></price-list></div></div>
  2925. </product-card><product-card handle="beaker-street-inspired-by-bleecker-street"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2926.      <a href="/products/beaker-street-inspired-by-bleecker-street" data-instant><img src="//houseofmonac.com/cdn/shop/files/rn-image_picker_lib_temp_bc8146ef-0afc-4373-b996-75b2536b6971.jpg?v=1743625040&amp;width=1080" alt="Beaker Street Inspired By Bleecker Street" srcset="//houseofmonac.com/cdn/shop/files/rn-image_picker_lib_temp_bc8146ef-0afc-4373-b996-75b2536b6971.jpg?v=1743625040&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/rn-image_picker_lib_temp_bc8146ef-0afc-4373-b996-75b2536b6971.jpg?v=1743625040&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/rn-image_picker_lib_temp_bc8146ef-0afc-4373-b996-75b2536b6971.jpg?v=1743625040&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/rn-image_picker_lib_temp_bc8146ef-0afc-4373-b996-75b2536b6971.jpg?v=1743625040&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/rn-image_picker_lib_temp_bc8146ef-0afc-4373-b996-75b2536b6971.jpg?v=1743625040&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/rn-image_picker_lib_temp_bc8146ef-0afc-4373-b996-75b2536b6971.jpg?v=1743625040&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/rn-image_picker_lib_temp_bc8146ef-0afc-4373-b996-75b2536b6971.jpg?v=1743625040&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/rn-image_picker_lib_temp_bc8146ef-0afc-4373-b996-75b2536b6971.jpg?v=1743625040&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-04_16-32-57-136.jpg?v=1743625041&amp;width=3464" alt="Beaker Street Inspired By Bleecker Street" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-04_16-32-57-136.jpg?v=1743625041&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-04_16-32-57-136.jpg?v=1743625041&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-04_16-32-57-136.jpg?v=1743625041&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-04_16-32-57-136.jpg?v=1743625041&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-04_16-32-57-136.jpg?v=1743625041&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-04_16-32-57-136.jpg?v=1743625041&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-04_16-32-57-136.jpg?v=1743625041&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-04_16-32-57-136.jpg?v=1743625041&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-04_16-32-57-136.jpg?v=1743625041&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-04_16-32-57-136.jpg?v=1743625041&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-04_16-32-57-136.jpg?v=1743625041&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-04_16-32-57-136.jpg?v=1743625041&amp;width=1800 1800w" width="3464" height="3464" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2927.          <span class="product-card__title"><a href="/products/beaker-street-inspired-by-bleecker-street" class="bold" data-instant>Beaker Street</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Bleecker Street (Retail $550)</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  2928.        <span class="sr-only">Sale price</span>From $29.00
  2929. </sale-price></price-list></div></div>
  2930. </product-card><product-card handle="hibiscus-inspired-by-hibiscus-mahajad-maison-crivelli"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2931.      <a href="/products/hibiscus-inspired-by-hibiscus-mahajad-maison-crivelli" data-instant><img src="//houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&amp;width=2048" alt="Hibiscus Inspired By Hibiscus Mahajad Maison Crivelli" srcset="//houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&amp;width=1800 1800w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-08-13_13-48-41-020.jpg?v=1743700182&amp;width=1080" alt="Hibiscus Inspired By Hibiscus Mahajad Maison Crivelli" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-08-13_13-48-41-020.jpg?v=1743700182&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-13_13-48-41-020.jpg?v=1743700182&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-13_13-48-41-020.jpg?v=1743700182&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-13_13-48-41-020.jpg?v=1743700182&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-13_13-48-41-020.jpg?v=1743700182&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-13_13-48-41-020.jpg?v=1743700182&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-13_13-48-41-020.jpg?v=1743700182&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-13_13-48-41-020.jpg?v=1743700182&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2932.          <span class="product-card__title"><a href="/products/hibiscus-inspired-by-hibiscus-mahajad-maison-crivelli" class="bold" data-instant>Hibiscus</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Hibiscus Mahajad Maison Crivelli (Retail $500)</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  2933.        <span class="sr-only">Sale price</span>From $35.00
  2934. </sale-price></price-list></div></div>
  2935. </product-card><product-card handle="tourino-21-inspired-by-xerjoff-torino-21"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2936.      <a href="/products/tourino-21-inspired-by-xerjoff-torino-21" data-instant><img src="//houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&amp;width=2560" alt="Tourino 21 Inspired by Xerjoff Torino 21" srcset="//houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&amp;width=1800 1800w" width="2560" height="2560" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-07-23_15-13-53-602.jpg?v=1743702157&amp;width=1080" alt="Tourino 21 Inspired by Xerjoff Torino 21" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-07-23_15-13-53-602.jpg?v=1743702157&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_15-13-53-602.jpg?v=1743702157&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_15-13-53-602.jpg?v=1743702157&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_15-13-53-602.jpg?v=1743702157&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_15-13-53-602.jpg?v=1743702157&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_15-13-53-602.jpg?v=1743702157&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_15-13-53-602.jpg?v=1743702157&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_15-13-53-602.jpg?v=1743702157&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2937.          <span class="product-card__title"><a href="/products/tourino-21-inspired-by-xerjoff-torino-21" class="bold" data-instant>Tourino 21</a></span><a href="/products/tourino-21-inspired-by-xerjoff-torino-21#shopify-product-reviews" class="rating " title="1 review" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  2938.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  2939.      </svg></div>
  2940.  </a></div><p style="background-color:#F4F4F4;"> Inspired By Torino 21 (Retail $320)</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  2941.        <span class="sr-only">Sale price</span>From $29.00
  2942. </sale-price></price-list></div></div>
  2943. </product-card><product-card handle="the-man-elixir-inspired-by-jean-paul-gaultier-la-male-elixir"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2944.      <a href="/products/the-man-elixir-inspired-by-jean-paul-gaultier-la-male-elixir" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&amp;width=3464" alt="The Man Elixir - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&amp;width=1800 1800w" width="3464" height="3464" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-04-30_17-02-49-184.jpg?v=1741806206&amp;width=1080" alt="The Man Elixir Inspired By Jean Paul Gaultier La Male Elixir" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-04-30_17-02-49-184.jpg?v=1741806206&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-30_17-02-49-184.jpg?v=1741806206&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-30_17-02-49-184.jpg?v=1741806206&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-30_17-02-49-184.jpg?v=1741806206&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-30_17-02-49-184.jpg?v=1741806206&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-30_17-02-49-184.jpg?v=1741806206&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-30_17-02-49-184.jpg?v=1741806206&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-30_17-02-49-184.jpg?v=1741806206&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2945.          <span class="product-card__title"><a href="/products/the-man-elixir-inspired-by-jean-paul-gaultier-la-male-elixir" class="bold" data-instant>The Man Elixir</a></span><a href="/products/the-man-elixir-inspired-by-jean-paul-gaultier-la-male-elixir#shopify-product-reviews" class="rating " title="1 review" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  2946.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  2947.      </svg></div>
  2948.  </a></div><p style="background-color:#F4F4F4;">Inspired by Jean Paul Gaultier Le Male Elixir  (Retail $150)</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  2949.        <span class="sr-only">Sale price</span>From $29.00
  2950. </sale-price></price-list></div></div>
  2951. </product-card><product-card handle="sexy-vanilla-inspired-by-tom-ford-vanilla-sex"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2952.      <a href="/products/sexy-vanilla-inspired-by-tom-ford-vanilla-sex" data-instant><img src="//houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&amp;width=2048" alt="Sexy Vanilla Inspired by Tom Ford Vanilla Sex" srcset="//houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&amp;width=1800 1800w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-40-04-982.jpg?v=1743704642&amp;width=1080" alt="Sexy Vanilla Inspired by Tom Ford Vanilla Sex" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-40-04-982.jpg?v=1743704642&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-40-04-982.jpg?v=1743704642&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-40-04-982.jpg?v=1743704642&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-40-04-982.jpg?v=1743704642&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-40-04-982.jpg?v=1743704642&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-40-04-982.jpg?v=1743704642&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-40-04-982.jpg?v=1743704642&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-40-04-982.jpg?v=1743704642&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2953.          <span class="product-card__title"><a href="/products/sexy-vanilla-inspired-by-tom-ford-vanilla-sex" class="bold" data-instant>Sexy Vanilla</a></span><a href="/products/sexy-vanilla-inspired-by-tom-ford-vanilla-sex#shopify-product-reviews" class="rating " title="2 reviews" ><span class="text-sm">4.5</span><div class="rating__stars" role="img" aria-label="4.5 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  2954.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  2955.      </svg></div>
  2956.  </a></div><p style="background-color:#F4F4F4;">Inspired by Tom Ford Vanilla Sex (Retail $405)</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  2957.        <span class="sr-only">Sale price</span>From $29.00
  2958. </sale-price></price-list></div></div>
  2959. </product-card><product-card handle="harmony-inspired-by-symphony"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2960.      <a href="/products/harmony-inspired-by-symphony" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&amp;width=3464" alt="Harmony Inspired By Symphony" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&amp;width=1800 1800w" width="3464" height="3464" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/61OhZLawDXL.jpg?v=1745940308&amp;width=1080" alt="Harmony Inspired By Symphony" srcset="//houseofmonac.com/cdn/shop/files/61OhZLawDXL.jpg?v=1745940308&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/61OhZLawDXL.jpg?v=1745940308&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/61OhZLawDXL.jpg?v=1745940308&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/61OhZLawDXL.jpg?v=1745940308&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/61OhZLawDXL.jpg?v=1745940308&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/61OhZLawDXL.jpg?v=1745940308&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/61OhZLawDXL.jpg?v=1745940308&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/61OhZLawDXL.jpg?v=1745940308&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2961.          <span class="product-card__title"><a href="/products/harmony-inspired-by-symphony" class="bold" data-instant>Harmony</a></span><a href="/products/harmony-inspired-by-symphony#shopify-product-reviews" class="rating " title="6 reviews" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  2962.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  2963.      </svg></div>
  2964.  </a></div><p style="background-color:#F4F4F4;"> Inspired By Symphony (Retail $400)</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  2965.        <span class="sr-only">Sale price</span>From $35.00
  2966. </sale-price></price-list></div></div>
  2967. </product-card><product-card handle="imagine-inspired-by-imagination"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2968.      <a href="/products/imagine-inspired-by-imagination" data-instant><img src="//houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&amp;width=2560" alt="Imagine Inspired by Imagination" srcset="//houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&amp;width=1800 1800w" width="2560" height="2560" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&amp;width=3464" alt="Imagine Inspired by Imagination" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&amp;width=1800 1800w" width="3464" height="3464" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2969.          <span class="product-card__title"><a href="/products/imagine-inspired-by-imagination" class="bold" data-instant>Imagine</a></span><a href="/products/imagine-inspired-by-imagination#shopify-product-reviews" class="rating " title="3 reviews" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  2970.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  2971.      </svg></div>
  2972.  </a></div><p style="background-color:#F4F4F4;"> Inspired By  Imagination (Retail $400)</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  2973.        <span class="sr-only">Sale price</span>From $35.00
  2974. </sale-price></price-list></div></div>
  2975. </product-card><product-card handle="delightful-narcotics-inspired-by-narcotic-delight"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2976.      <a href="/products/delightful-narcotics-inspired-by-narcotic-delight" data-instant><img src="//houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&amp;width=2048" alt="Delightful Narcotics Inspired By Narcotic Delight" srcset="//houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&amp;width=1800 1800w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-44-34-605.jpg?v=1750109615&amp;width=1080" alt="Delightful Narcotics Inspired By Narcotic Delight" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-44-34-605.jpg?v=1750109615&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-44-34-605.jpg?v=1750109615&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-44-34-605.jpg?v=1750109615&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-44-34-605.jpg?v=1750109615&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-44-34-605.jpg?v=1750109615&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-44-34-605.jpg?v=1750109615&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-44-34-605.jpg?v=1750109615&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-44-34-605.jpg?v=1750109615&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2977.          <span class="product-card__title"><a href="/products/delightful-narcotics-inspired-by-narcotic-delight" class="bold" data-instant>Delightful Narcotics</a></span><a href="/products/delightful-narcotics-inspired-by-narcotic-delight#shopify-product-reviews" class="rating " title="3 reviews" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  2978.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  2979.      </svg></div>
  2980.  </a></div><p style="background-color:#F4F4F4;"> Inspired By Initio Narcotic Delight (Retail $380)</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  2981.        <span class="sr-only">Sale price</span>From $29.00
  2982. </sale-price></price-list></div></div>
  2983. </product-card><product-card handle="540-inspired-by-baccarat-rouge-540"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  2984.      <a href="/products/540-inspired-by-baccarat-rouge-540" data-instant><img src="//houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&amp;width=2048" alt="540 Inspired By Baccarat Rouge 540" srcset="//houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&amp;width=1800 1800w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-29at11.13.46AM.jpg?v=1750109998&amp;width=1080" alt="540 Inspired By Baccarat Rouge 540" srcset="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-29at11.13.46AM.jpg?v=1750109998&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-29at11.13.46AM.jpg?v=1750109998&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-29at11.13.46AM.jpg?v=1750109998&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-29at11.13.46AM.jpg?v=1750109998&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-29at11.13.46AM.jpg?v=1750109998&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-29at11.13.46AM.jpg?v=1750109998&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-29at11.13.46AM.jpg?v=1750109998&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-29at11.13.46AM.jpg?v=1750109998&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  2985.          <span class="product-card__title"><a href="/products/540-inspired-by-baccarat-rouge-540" class="bold" data-instant>540</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Baccarat Rouge 540 (Retail $325)</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  2986.        <span class="sr-only">Sale price</span>From $35.00
  2987. </sale-price></price-list></div></div>
  2988. </product-card></product-list>
  2989.        </reveal-items>
  2990.      </scroll-carousel><div class="scrollbar peer-not-scrollable:hidden">
  2991.  <scroll-progress observes="scroll-area-template--18347438506258__featured-collection" class="scrollbar__progress" style="--scroll-progress: 0.3333333333333333"></scroll-progress><div aria-controls="scroll-area-template--18347438506258__featured-collection" class="scrollbar__buttons">
  2992.      <button is="prev-button" class="circle-button ring group" aria-controls="scroll-area-template--18347438506258__featured-collection" disabled>
  2993.        <span class="sr-only">Previous</span>
  2994.        <span class="animated-arrow animated-arrow--reverse"></span>
  2995.      </button>
  2996.  
  2997.      <button is="next-button" class="circle-button ring group" aria-controls="scroll-area-template--18347438506258__featured-collection">
  2998.        <span class="sr-only">Next</span>
  2999.        <span class="animated-arrow"></span>
  3000.      </button>
  3001.    </div></div></div>
  3002.  </div>
  3003. </div>
  3004.  
  3005. </section><section id="shopify-section-template--18347438506258__5de445ce-7255-472a-acf5-a25c8c902b93" class="shopify-section shopify-section--scrolling-text"><style>
  3006.  #shopify-section-template--18347438506258__5de445ce-7255-472a-acf5-a25c8c902b93 {
  3007.    --section-background-hash: 0;
  3008.  }
  3009.  
  3010.  #shopify-section-template--18347438506258__5de445ce-7255-472a-acf5-a25c8c902b93 + * {
  3011.    --previous-section-background-hash: 0;
  3012.  }</style><style>
  3013.    #shopify-section-template--18347438506258__5de445ce-7255-472a-acf5-a25c8c902b93 {
  3014.      --section-spacing-inline: 0;
  3015.      --scrolling-text-font-size: 3.75rem;
  3016.    }
  3017.  
  3018.    @media screen and (min-width: 700px) {
  3019.      #shopify-section-template--18347438506258__5de445ce-7255-472a-acf5-a25c8c902b93 {
  3020.        --scrolling-text-font-size: 5rem;
  3021.      }
  3022.    }
  3023.  </style><div class="section   section-blends section-full text-custom"style="--text-color: 0 0 0;"><div class="scrolling-text scrolling-text--auto"><marquee-text scrolling-speed="4" class="scrolling-text__wrapper"><span class="scrolling-text__text heading " >Smell Like Luxury, Feel Like Luxury</span><span class="scrolling-text__text heading motion-reduce:hidden" aria-hidden="true">Smell Like Luxury, Feel Like Luxury</span><span class="scrolling-text__text heading motion-reduce:hidden" aria-hidden="true">Smell Like Luxury, Feel Like Luxury</span><span class="scrolling-text__text heading motion-reduce:hidden" aria-hidden="true">Smell Like Luxury, Feel Like Luxury</span><span class="scrolling-text__text heading motion-reduce:hidden" aria-hidden="true">Smell Like Luxury, Feel Like Luxury</span><span class="scrolling-text__text heading motion-reduce:hidden" aria-hidden="true">Smell Like Luxury, Feel Like Luxury</span><span class="scrolling-text__text heading motion-reduce:hidden" aria-hidden="true">Smell Like Luxury, Feel Like Luxury</span><span class="scrolling-text__text heading motion-reduce:hidden" aria-hidden="true">Smell Like Luxury, Feel Like Luxury</span><span class="scrolling-text__text heading motion-reduce:hidden" aria-hidden="true">Smell Like Luxury, Feel Like Luxury</span><span class="scrolling-text__text heading motion-reduce:hidden" aria-hidden="true">Smell Like Luxury, Feel Like Luxury</span></marquee-text></div>
  3024.  </div></section><section id="shopify-section-template--18347438506258__a1231e57-8d7f-4899-a709-b6103b221775" class="shopify-section shopify-section--rich-text"></section><section id="shopify-section-template--18347438506258__a6a54990-6782-4328-858c-337aa34d364f" class="shopify-section shopify-section--featured-collection"><style>
  3025.  #shopify-section-template--18347438506258__a6a54990-6782-4328-858c-337aa34d364f {
  3026.    --section-background-hash: 0;
  3027.  }
  3028.  
  3029.  #shopify-section-template--18347438506258__a6a54990-6782-4328-858c-337aa34d364f + * {
  3030.    --previous-section-background-hash: 0;
  3031.  }</style><style>#shopify-section-template--18347438506258__a6a54990-6782-4328-858c-337aa34d364f .product-list {
  3032.    --product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
  3033.    --product-list-items-per-row: 2;
  3034.    --product-list-carousel-item-width: 74vw;
  3035.    --product-list-grid: auto / auto-flow var(--product-list-carousel-item-width);
  3036.  }
  3037.  
  3038.  @media screen and (min-width: 700px) {
  3039.    #shopify-section-template--18347438506258__a6a54990-6782-4328-858c-337aa34d364f .product-list {
  3040.      --product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
  3041.      --product-list-items-per-row: 2;
  3042.      --product-list-carousel-item-width: 36vw;
  3043.    }
  3044.  }
  3045.  
  3046.  @media screen and (min-width: 1000px) {
  3047.    #shopify-section-template--18347438506258__a6a54990-6782-4328-858c-337aa34d364f .product-list {
  3048.      --product-list-items-per-row: 5;
  3049.      --product-list-carousel-item-width: calc(var(--container-inner-width) / 5 - (var(--product-list-column-gap) / 5 * 4));
  3050.    }
  3051.  }
  3052. </style>
  3053.  
  3054. <div class="section   section-blends section-full">
  3055.  <div class="section-stack">
  3056.  <section-header class="section-header "><div class="prose"><h2 class="h2" reveal-on-scroll="true"><split-lines>Body Lotion</split-lines></h2></div><a href="https://houseofmonac.com/collections/body-lotion-1" class="text-with-icon group">
  3057.        <span class="reversed-link">View all</span>
  3058.        <span class="circle-chevron group-hover:colors"><svg role="presentation" focusable="false" width="5" height="8" class="icon icon-chevron-right-small reverse-icon" viewBox="0 0 5 8">
  3059.        <path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
  3060.      </svg></span>
  3061.      </a></section-header><div class="floating-controls-container"><scroll-carousel selector="product-card" id="scroll-area-template--18347438506258__a6a54990-6782-4328-858c-337aa34d364f" class="scroll-area bleed is-scrollable">
  3062.        <reveal-items selector=".product-list > *">
  3063.          <product-list class="product-list"><product-card handle="540-body-lotion-inspired-by-baccarat-rouge-540"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3064.      <a href="/products/540-body-lotion-inspired-by-baccarat-rouge-540" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&amp;width=1080" alt="540 Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-56-50-397.jpg?v=1750549133&amp;width=1080" alt="540 Body Lotion Inspired By Baccarat Rouge 540" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-56-50-397.jpg?v=1750549133&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-56-50-397.jpg?v=1750549133&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-56-50-397.jpg?v=1750549133&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-56-50-397.jpg?v=1750549133&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-56-50-397.jpg?v=1750549133&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-56-50-397.jpg?v=1750549133&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-56-50-397.jpg?v=1750549133&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-56-50-397.jpg?v=1750549133&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3065.          <span class="product-card__title"><a href="/products/540-body-lotion-inspired-by-baccarat-rouge-540" class="bold" data-instant>540 Body Lotion</a></span><a href="/products/540-body-lotion-inspired-by-baccarat-rouge-540#shopify-product-reviews" class="rating " title="2 reviews" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  3066.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3067.      </svg></div>
  3068.  </a></div><p style="background-color:#F4F4F4;"> Inspired By Baccarat Rouge 540</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3069.        <span class="sr-only">Sale price</span>$20.00</sale-price></price-list></div></div>
  3070. </product-card><product-card handle="imagine-body-lotion-inspired-by-imagination"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3071.      <a href="/products/imagine-body-lotion-inspired-by-imagination" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-01-15_14-02-35-632.jpg?v=1747750975&amp;width=1080" alt="Imagine Body Lotion Inspired By Imagination" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-01-15_14-02-35-632.jpg?v=1747750975&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-15_14-02-35-632.jpg?v=1747750975&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-15_14-02-35-632.jpg?v=1747750975&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-15_14-02-35-632.jpg?v=1747750975&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-15_14-02-35-632.jpg?v=1747750975&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-15_14-02-35-632.jpg?v=1747750975&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-15_14-02-35-632.jpg?v=1747750975&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-15_14-02-35-632.jpg?v=1747750975&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-01-14_12-22-49-323.jpg?v=1747750976&amp;width=1080" alt="Imagine Body Lotion Inspired By Imagination" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-01-14_12-22-49-323.jpg?v=1747750976&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_12-22-49-323.jpg?v=1747750976&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_12-22-49-323.jpg?v=1747750976&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_12-22-49-323.jpg?v=1747750976&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_12-22-49-323.jpg?v=1747750976&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_12-22-49-323.jpg?v=1747750976&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_12-22-49-323.jpg?v=1747750976&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_12-22-49-323.jpg?v=1747750976&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3072.          <span class="product-card__title"><a href="/products/imagine-body-lotion-inspired-by-imagination" class="bold" data-instant>Imagine Body Lotion</a></span><a href="/products/imagine-body-lotion-inspired-by-imagination#shopify-product-reviews" class="rating " title="2 reviews" ><span class="text-sm">4.5</span><div class="rating__stars" role="img" aria-label="4.5 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  3073.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3074.      </svg></div>
  3075.  </a></div><p style="background-color:#F4F4F4;"> Inspired By Imagination </p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3076.        <span class="sr-only">Sale price</span>$20.00</sale-price></price-list></div></div>
  3077. </product-card><product-card handle="latte-body-lotion-inspired-by-bianco-latte"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3078.      <a href="/products/latte-body-lotion-inspired-by-bianco-latte" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-32-50-539.jpg?v=1750109277&amp;width=1080" alt="Latte Body Lotion Inspired By Bianco Latte" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-32-50-539.jpg?v=1750109277&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-32-50-539.jpg?v=1750109277&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-32-50-539.jpg?v=1750109277&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-32-50-539.jpg?v=1750109277&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-32-50-539.jpg?v=1750109277&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-32-50-539.jpg?v=1750109277&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-32-50-539.jpg?v=1750109277&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-32-50-539.jpg?v=1750109277&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-56-22-012.jpg?v=1750109274&amp;width=1080" alt="Latte Body Lotion Inspired By Bianco Latte" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-56-22-012.jpg?v=1750109274&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-56-22-012.jpg?v=1750109274&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-56-22-012.jpg?v=1750109274&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-56-22-012.jpg?v=1750109274&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-56-22-012.jpg?v=1750109274&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-56-22-012.jpg?v=1750109274&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-56-22-012.jpg?v=1750109274&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-56-22-012.jpg?v=1750109274&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3079.          <span class="product-card__title"><a href="/products/latte-body-lotion-inspired-by-bianco-latte" class="bold" data-instant>Latte Body Lotion</a></span><a href="/products/latte-body-lotion-inspired-by-bianco-latte#shopify-product-reviews" class="rating " title="2 reviews" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  3080.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3081.      </svg></div>
  3082.  </a></div><p style="background-color:#F4F4F4;"> Inspired By Giardini Di Toscana Bianco Latte</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3083.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3084. </product-card><product-card handle="urban-lotion-inspired-by-erba-pura"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3085.      <a href="/products/urban-lotion-inspired-by-erba-pura" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-04-29_13-00-54-295.jpg?v=1750008609&amp;width=1080" alt="Urban Lotion inspired by erba pura" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-04-29_13-00-54-295.jpg?v=1750008609&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_13-00-54-295.jpg?v=1750008609&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_13-00-54-295.jpg?v=1750008609&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_13-00-54-295.jpg?v=1750008609&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_13-00-54-295.jpg?v=1750008609&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_13-00-54-295.jpg?v=1750008609&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_13-00-54-295.jpg?v=1750008609&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_13-00-54-295.jpg?v=1750008609&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-04-29_12-59-47-741.jpg?v=1750008609&amp;width=1080" alt="Urban Lotion inspired by erba pura" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-04-29_12-59-47-741.jpg?v=1750008609&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_12-59-47-741.jpg?v=1750008609&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_12-59-47-741.jpg?v=1750008609&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_12-59-47-741.jpg?v=1750008609&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_12-59-47-741.jpg?v=1750008609&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_12-59-47-741.jpg?v=1750008609&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_12-59-47-741.jpg?v=1750008609&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_12-59-47-741.jpg?v=1750008609&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3086.          <span class="product-card__title"><a href="/products/urban-lotion-inspired-by-erba-pura" class="bold" data-instant>Urban Lotion</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Xerjoff Erba Pura </p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3087.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3088. </product-card><product-card handle="aventor-body-lotion-inspired-by-aventus"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><sold-out-badge   class="badge badge--sold-out">Sold out</sold-out-badge></div><div class="product-card__figure">
  3089.      <a href="/products/aventor-body-lotion-inspired-by-aventus" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-50-59-884.jpg?v=1750283592&amp;width=1080" alt="Aventor Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-50-59-884.jpg?v=1750283592&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-50-59-884.jpg?v=1750283592&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-50-59-884.jpg?v=1750283592&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-50-59-884.jpg?v=1750283592&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-50-59-884.jpg?v=1750283592&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-50-59-884.jpg?v=1750283592&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-50-59-884.jpg?v=1750283592&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-50-59-884.jpg?v=1750283592&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-51-36-376.jpg?v=1750283592&amp;width=1084" alt="Aventor Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-51-36-376.jpg?v=1750283592&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-51-36-376.jpg?v=1750283592&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-51-36-376.jpg?v=1750283592&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-51-36-376.jpg?v=1750283592&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-51-36-376.jpg?v=1750283592&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-51-36-376.jpg?v=1750283592&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-51-36-376.jpg?v=1750283592&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-51-36-376.jpg?v=1750283592&amp;width=1000 1000w" width="1084" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3090.          <span class="product-card__title"><a href="/products/aventor-body-lotion-inspired-by-aventus" class="bold" data-instant>Aventor Body Lotion</a></span><a href="/products/aventor-body-lotion-inspired-by-aventus#shopify-product-reviews" class="rating " title="1 review" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  3091.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3092.      </svg></div>
  3093.  </a></div><p style="background-color:#F4F4F4;"> Inspired By Creed Aventus</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3094.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3095. </product-card><product-card handle="donna-body-lotion-inspired-by-valentino-donna-born-in-roma"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3096.      <a href="/products/donna-body-lotion-inspired-by-valentino-donna-born-in-roma" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-26-758.jpg?v=1743713870&amp;width=1080" alt="Donna Body Lotion Inspired By Valentino Donna Born In Roma" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-26-758.jpg?v=1743713870&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-26-758.jpg?v=1743713870&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-26-758.jpg?v=1743713870&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-26-758.jpg?v=1743713870&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-26-758.jpg?v=1743713870&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-26-758.jpg?v=1743713870&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-26-758.jpg?v=1743713870&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-26-758.jpg?v=1743713870&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-31-55-102.jpg?v=1743713870&amp;width=1080" alt="Donna Body Lotion Inspired By Valentino Donna Born In Roma" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-31-55-102.jpg?v=1743713870&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-31-55-102.jpg?v=1743713870&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-31-55-102.jpg?v=1743713870&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-31-55-102.jpg?v=1743713870&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-31-55-102.jpg?v=1743713870&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-31-55-102.jpg?v=1743713870&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-31-55-102.jpg?v=1743713870&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-31-55-102.jpg?v=1743713870&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3097.          <span class="product-card__title"><a href="/products/donna-body-lotion-inspired-by-valentino-donna-born-in-roma" class="bold" data-instant>Donna Intense Body Lotion</a></span><a href="/products/donna-body-lotion-inspired-by-valentino-donna-born-in-roma#shopify-product-reviews" class="rating " title="1 review" ><span class="text-sm">4.0</span><div class="rating__stars" role="img" aria-label="4.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  3098.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3099.      </svg></div>
  3100.  </a></div><p style="background-color:#F4F4F4;"> Inspired By Valentino Donna Born in Roma Valentino </p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3101.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3102. </product-card><product-card handle="cherry-body-lotion-inspired-by-tom-ford-lost-cherry"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3103.      <a href="/products/cherry-body-lotion-inspired-by-tom-ford-lost-cherry" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-33-240.jpg?v=1731698944&amp;width=1080" alt="Cherry Body Lotion - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-33-240.jpg?v=1731698944&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-33-240.jpg?v=1731698944&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-33-240.jpg?v=1731698944&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-33-240.jpg?v=1731698944&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-33-240.jpg?v=1731698944&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-33-240.jpg?v=1731698944&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-33-240.jpg?v=1731698944&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-33-240.jpg?v=1731698944&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-13-21-296.jpg?v=1731698944&amp;width=1080" alt="Cherry Body Lotion - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-13-21-296.jpg?v=1731698944&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-13-21-296.jpg?v=1731698944&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-13-21-296.jpg?v=1731698944&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-13-21-296.jpg?v=1731698944&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-13-21-296.jpg?v=1731698944&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-13-21-296.jpg?v=1731698944&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-13-21-296.jpg?v=1731698944&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-13-21-296.jpg?v=1731698944&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3104.          <span class="product-card__title"><a href="/products/cherry-body-lotion-inspired-by-tom-ford-lost-cherry" class="bold" data-instant>Cherry Body Lotion</a></span><a href="/products/cherry-body-lotion-inspired-by-tom-ford-lost-cherry#shopify-product-reviews" class="rating " title="2 reviews" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  3105.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3106.      </svg></div>
  3107.  </a></div><p style="background-color:#F4F4F4;">inspired by Tom Ford Lost Cherry </p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3108.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3109. </product-card><product-card handle="blue-body-lotion-inspired-bleu-de-chanel"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3110.      <a href="/products/blue-body-lotion-inspired-bleu-de-chanel" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-53-028.jpg?v=1743713939&amp;width=1080" alt="Blue Body Lotion Inspired Bleu De Chanel" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-53-028.jpg?v=1743713939&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-53-028.jpg?v=1743713939&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-53-028.jpg?v=1743713939&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-53-028.jpg?v=1743713939&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-53-028.jpg?v=1743713939&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-53-028.jpg?v=1743713939&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-53-028.jpg?v=1743713939&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-53-028.jpg?v=1743713939&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-09-18-103.jpg?v=1743713940&amp;width=1080" alt="Blue Body Lotion Inspired Bleu De Chanel" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-09-18-103.jpg?v=1743713940&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-09-18-103.jpg?v=1743713940&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-09-18-103.jpg?v=1743713940&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-09-18-103.jpg?v=1743713940&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-09-18-103.jpg?v=1743713940&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-09-18-103.jpg?v=1743713940&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-09-18-103.jpg?v=1743713940&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-09-18-103.jpg?v=1743713940&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3111.          <span class="product-card__title"><a href="/products/blue-body-lotion-inspired-bleu-de-chanel" class="bold" data-instant>Blue Body Lotion</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Blue De Chanel </p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3112.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3113. </product-card><product-card handle="divine-body-lotion-inspired-by-killian-angel-share"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3114.      <a href="/products/divine-body-lotion-inspired-by-killian-angel-share" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-00-424.jpg?v=1731699136&amp;width=1080" alt="Divine Body Lotion - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-00-424.jpg?v=1731699136&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-00-424.jpg?v=1731699136&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-00-424.jpg?v=1731699136&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-00-424.jpg?v=1731699136&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-00-424.jpg?v=1731699136&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-00-424.jpg?v=1731699136&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-00-424.jpg?v=1731699136&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-00-424.jpg?v=1731699136&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-16-25-305.jpg?v=1731699136&amp;width=1080" alt="Divine Body Lotion - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-16-25-305.jpg?v=1731699136&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-16-25-305.jpg?v=1731699136&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-16-25-305.jpg?v=1731699136&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-16-25-305.jpg?v=1731699136&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-16-25-305.jpg?v=1731699136&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-16-25-305.jpg?v=1731699136&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-16-25-305.jpg?v=1731699136&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-16-25-305.jpg?v=1731699136&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3115.          <span class="product-card__title"><a href="/products/divine-body-lotion-inspired-by-killian-angel-share" class="bold" data-instant>Divine Body Lotion</a></span><a href="/products/divine-body-lotion-inspired-by-killian-angel-share#shopify-product-reviews" class="rating " title="2 reviews" ><span class="text-sm">4.0</span><div class="rating__stars" role="img" aria-label="4.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  3116.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3117.      </svg></div>
  3118.  </a></div><p style="background-color:#F4F4F4;">Inspired By Killan's Angels Share</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3119.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3120. </product-card><product-card handle="sweet-love-body-lotion-inspired-by-killian-love-dont-be-shy"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3121.      <a href="/products/sweet-love-body-lotion-inspired-by-killian-love-dont-be-shy" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-27-822.jpg?v=1743705188&amp;width=1080" alt="Sweet Love Body Lotion Inspired By Killian Love Dont Be Shy" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-27-822.jpg?v=1743705188&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-27-822.jpg?v=1743705188&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-27-822.jpg?v=1743705188&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-27-822.jpg?v=1743705188&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-27-822.jpg?v=1743705188&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-27-822.jpg?v=1743705188&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-27-822.jpg?v=1743705188&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-27-822.jpg?v=1743705188&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-01-36-982.jpg?v=1743705188&amp;width=1080" alt="Sweet Love Body Lotion Inspired By Killian Love Dont Be Shy" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-01-36-982.jpg?v=1743705188&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-01-36-982.jpg?v=1743705188&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-01-36-982.jpg?v=1743705188&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-01-36-982.jpg?v=1743705188&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-01-36-982.jpg?v=1743705188&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-01-36-982.jpg?v=1743705188&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-01-36-982.jpg?v=1743705188&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-01-36-982.jpg?v=1743705188&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3122.          <span class="product-card__title"><a href="/products/sweet-love-body-lotion-inspired-by-killian-love-dont-be-shy" class="bold" data-instant>Sweet Love Body Lotion</a></span></div><p style="background-color:#F4F4F4;">Inspired By Killian Love Don't Be Shy</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3123.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3124. </product-card><product-card handle="gio-body-lotion-inspired-by-armani-acqua-di-gio"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><sold-out-badge   class="badge badge--sold-out">Sold out</sold-out-badge></div><div class="product-card__figure">
  3125.      <a href="/products/gio-body-lotion-inspired-by-armani-acqua-di-gio" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-06-162.jpg?v=1731699921&amp;width=1080" alt="Gio Body Lotion - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-06-162.jpg?v=1731699921&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-06-162.jpg?v=1731699921&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-06-162.jpg?v=1731699921&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-06-162.jpg?v=1731699921&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-06-162.jpg?v=1731699921&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-06-162.jpg?v=1731699921&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-06-162.jpg?v=1731699921&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-06-162.jpg?v=1731699921&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-40-44-803.jpg?v=1731699922&amp;width=1080" alt="Gio Body Lotion - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-40-44-803.jpg?v=1731699922&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-40-44-803.jpg?v=1731699922&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-40-44-803.jpg?v=1731699922&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-40-44-803.jpg?v=1731699922&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-40-44-803.jpg?v=1731699922&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-40-44-803.jpg?v=1731699922&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-40-44-803.jpg?v=1731699922&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-40-44-803.jpg?v=1731699922&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3126.          <span class="product-card__title"><a href="/products/gio-body-lotion-inspired-by-armani-acqua-di-gio" class="bold" data-instant>Gio Body Lotion</a></span></div><p style="background-color:#F4F4F4;">Inspired By Acqua di Gio Profondo</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3127.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3128. </product-card><product-card handle="yummy-marshmello-body-lotion"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3129.      <a href="/products/yummy-marshmello-body-lotion" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-03-24_12-50-02-871.jpg?v=1750108546&amp;width=1080" alt="Yummy Marshmello Inspired By Yum Boujee Marshmallow 81 " srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-03-24_12-50-02-871.jpg?v=1750108546&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_12-50-02-871.jpg?v=1750108546&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_12-50-02-871.jpg?v=1750108546&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_12-50-02-871.jpg?v=1750108546&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_12-50-02-871.jpg?v=1750108546&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_12-50-02-871.jpg?v=1750108546&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_12-50-02-871.jpg?v=1750108546&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_12-50-02-871.jpg?v=1750108546&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-52-54-335.jpg?v=1750108546&amp;width=3464" alt="Yummy Marshmello Inspired By Yum Boujee Marshmallow 81 " srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-52-54-335.jpg?v=1750108546&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-52-54-335.jpg?v=1750108546&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-52-54-335.jpg?v=1750108546&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-52-54-335.jpg?v=1750108546&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-52-54-335.jpg?v=1750108546&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-52-54-335.jpg?v=1750108546&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-52-54-335.jpg?v=1750108546&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-52-54-335.jpg?v=1750108546&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-52-54-335.jpg?v=1750108546&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-52-54-335.jpg?v=1750108546&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-52-54-335.jpg?v=1750108546&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-52-54-335.jpg?v=1750108546&amp;width=1800 1800w" width="3464" height="3464" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3130.          <span class="product-card__title"><a href="/products/yummy-marshmello-body-lotion" class="bold" data-instant>Yummy Marshmello Body Lotion</a></span><a href="/products/yummy-marshmello-body-lotion#shopify-product-reviews" class="rating " title="1 review" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  3131.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3132.      </svg></div>
  3133.  </a></div><p style="background-color:#F4F4F4;"> Inspired By Kayali Yum Boujee Marshmallow 81</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3134.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3135. </product-card><product-card handle="forest-street-body-lotion-inspired-by-bond-no-9-lafayette-street"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3136.      <a href="/products/forest-street-body-lotion-inspired-by-bond-no-9-lafayette-street" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-29-11-467.jpg?v=1731699582&amp;width=1080" alt="Forest Street Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-29-11-467.jpg?v=1731699582&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-29-11-467.jpg?v=1731699582&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-29-11-467.jpg?v=1731699582&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-29-11-467.jpg?v=1731699582&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-29-11-467.jpg?v=1731699582&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-29-11-467.jpg?v=1731699582&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-29-11-467.jpg?v=1731699582&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-29-11-467.jpg?v=1731699582&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-35-23-704.jpg?v=1731699583&amp;width=1080" alt="Forest Street Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-35-23-704.jpg?v=1731699583&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-35-23-704.jpg?v=1731699583&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-35-23-704.jpg?v=1731699583&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-35-23-704.jpg?v=1731699583&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-35-23-704.jpg?v=1731699583&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-35-23-704.jpg?v=1731699583&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-35-23-704.jpg?v=1731699583&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-35-23-704.jpg?v=1731699583&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3137.          <span class="product-card__title"><a href="/products/forest-street-body-lotion-inspired-by-bond-no-9-lafayette-street" class="bold" data-instant>Forest Street Body Lotion</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Bond no 9 Lafayette Street</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3138.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3139. </product-card><product-card handle="fire-god-body-lotion-inspired-by-god-of-fire"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3140.      <a href="/products/fire-god-body-lotion-inspired-by-god-of-fire" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-54-757.jpg?v=1750108818&amp;width=1080" alt="Fire God Body Lotion Inspired By God of Fire " srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-54-757.jpg?v=1750108818&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-54-757.jpg?v=1750108818&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-54-757.jpg?v=1750108818&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-54-757.jpg?v=1750108818&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-54-757.jpg?v=1750108818&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-54-757.jpg?v=1750108818&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-54-757.jpg?v=1750108818&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-54-757.jpg?v=1750108818&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-34-10-336.jpg?v=1750108818&amp;width=1080" alt="Fire God Body Lotion Inspired By God of Fire " srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-34-10-336.jpg?v=1750108818&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-34-10-336.jpg?v=1750108818&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-34-10-336.jpg?v=1750108818&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-34-10-336.jpg?v=1750108818&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-34-10-336.jpg?v=1750108818&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-34-10-336.jpg?v=1750108818&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-34-10-336.jpg?v=1750108818&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-34-10-336.jpg?v=1750108818&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3141.          <span class="product-card__title"><a href="/products/fire-god-body-lotion-inspired-by-god-of-fire" class="bold" data-instant>Fire God Body Lotion</a></span><a href="/products/fire-god-body-lotion-inspired-by-god-of-fire#shopify-product-reviews" class="rating " title="2 reviews" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  3142.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3143.      </svg></div>
  3144.  </a></div><p style="background-color:#F4F4F4;"> Inspired By God of Fire Stephane Humbert Lucas 777 </p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3145.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3146. </product-card><product-card handle="sexy-vanilla-body-lotion-inspired-by-tom-ford-vanilla-sex"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3147.      <a href="/products/sexy-vanilla-body-lotion-inspired-by-tom-ford-vanilla-sex" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-37-57-454.jpg?v=1731955079&amp;width=1080" alt="Sexy Vanilla Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-37-57-454.jpg?v=1731955079&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-37-57-454.jpg?v=1731955079&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-37-57-454.jpg?v=1731955079&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-37-57-454.jpg?v=1731955079&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-37-57-454.jpg?v=1731955079&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-37-57-454.jpg?v=1731955079&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-37-57-454.jpg?v=1731955079&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-37-57-454.jpg?v=1731955079&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-53-08-074.jpg?v=1731955079&amp;width=1080" alt="Sexy Vanilla Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-53-08-074.jpg?v=1731955079&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-53-08-074.jpg?v=1731955079&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-53-08-074.jpg?v=1731955079&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-53-08-074.jpg?v=1731955079&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-53-08-074.jpg?v=1731955079&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-53-08-074.jpg?v=1731955079&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-53-08-074.jpg?v=1731955079&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-53-08-074.jpg?v=1731955079&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3148.          <span class="product-card__title"><a href="/products/sexy-vanilla-body-lotion-inspired-by-tom-ford-vanilla-sex" class="bold" data-instant>Sexy Vanilla Body Lotion</a></span></div><p style="background-color:#F4F4F4;">Inspired by Tom Ford Vanilla Sex</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3149.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3150. </product-card><product-card handle="night-in-ny-body-lotion-inspired-by-new-york-nights"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3151.      <a href="/products/night-in-ny-body-lotion-inspired-by-new-york-nights" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-07_12-30-54-213.jpg?v=1732034747&amp;width=1080" alt="Night in NY Body Lotion Inspired by New York Nights" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-07_12-30-54-213.jpg?v=1732034747&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_12-30-54-213.jpg?v=1732034747&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_12-30-54-213.jpg?v=1732034747&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_12-30-54-213.jpg?v=1732034747&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_12-30-54-213.jpg?v=1732034747&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_12-30-54-213.jpg?v=1732034747&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_12-30-54-213.jpg?v=1732034747&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_12-30-54-213.jpg?v=1732034747&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-07_13-01-41-852.jpg?v=1732034747&amp;width=3464" alt="Night in NY Body Lotion Inspired by New York Nights" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-07_13-01-41-852.jpg?v=1732034747&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_13-01-41-852.jpg?v=1732034747&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_13-01-41-852.jpg?v=1732034747&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_13-01-41-852.jpg?v=1732034747&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_13-01-41-852.jpg?v=1732034747&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_13-01-41-852.jpg?v=1732034747&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_13-01-41-852.jpg?v=1732034747&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_13-01-41-852.jpg?v=1732034747&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_13-01-41-852.jpg?v=1732034747&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_13-01-41-852.jpg?v=1732034747&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_13-01-41-852.jpg?v=1732034747&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_13-01-41-852.jpg?v=1732034747&amp;width=1800 1800w" width="3464" height="3464" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3152.          <span class="product-card__title"><a href="/products/night-in-ny-body-lotion-inspired-by-new-york-nights" class="bold" data-instant>Night In NY Body Lotion</a></span></div><p style="background-color:#F4F4F4;"> Inspired By New York Nights</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3153.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3154. </product-card><product-card handle="28-vanillie-body-lotion-inspired-by-kayali-vanilla-28"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3155.      <a href="/products/28-vanillie-body-lotion-inspired-by-kayali-vanilla-28" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_14-25-44-206.jpg?v=1731696202&amp;width=1080" alt="28 Vanillie Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_14-25-44-206.jpg?v=1731696202&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_14-25-44-206.jpg?v=1731696202&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_14-25-44-206.jpg?v=1731696202&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_14-25-44-206.jpg?v=1731696202&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_14-25-44-206.jpg?v=1731696202&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_14-25-44-206.jpg?v=1731696202&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_14-25-44-206.jpg?v=1731696202&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_14-25-44-206.jpg?v=1731696202&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-54-58-435.jpg?v=1731696202&amp;width=1080" alt="28 Vanillie Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-54-58-435.jpg?v=1731696202&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-54-58-435.jpg?v=1731696202&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-54-58-435.jpg?v=1731696202&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-54-58-435.jpg?v=1731696202&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-54-58-435.jpg?v=1731696202&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-54-58-435.jpg?v=1731696202&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-54-58-435.jpg?v=1731696202&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-54-58-435.jpg?v=1731696202&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3156.          <span class="product-card__title"><a href="/products/28-vanillie-body-lotion-inspired-by-kayali-vanilla-28" class="bold" data-instant>28 Vanillie Body Lotion</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Kayali Vanilla 28</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3157.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3158. </product-card><product-card handle="theraputic-musk-body-lotion-inspired-by-musk-therapy-initio-parfums"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3159.      <a href="/products/theraputic-musk-body-lotion-inspired-by-musk-therapy-initio-parfums" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-32-25-053.jpg?v=1724701114&amp;width=1080" alt=" Theraputic Musk Body Lotion Inspired By Musk Therapy Initio Parfums" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-32-25-053.jpg?v=1724701114&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-32-25-053.jpg?v=1724701114&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-32-25-053.jpg?v=1724701114&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-32-25-053.jpg?v=1724701114&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-32-25-053.jpg?v=1724701114&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-32-25-053.jpg?v=1724701114&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-32-25-053.jpg?v=1724701114&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-32-25-053.jpg?v=1724701114&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-31-08-129.jpg?v=1724701113&amp;width=1080" alt=" Inspired By Musk Therapy Initio Parfums " srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-31-08-129.jpg?v=1724701113&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-31-08-129.jpg?v=1724701113&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-31-08-129.jpg?v=1724701113&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-31-08-129.jpg?v=1724701113&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-31-08-129.jpg?v=1724701113&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-31-08-129.jpg?v=1724701113&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-31-08-129.jpg?v=1724701113&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-31-08-129.jpg?v=1724701113&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3160.          <span class="product-card__title"><a href="/products/theraputic-musk-body-lotion-inspired-by-musk-therapy-initio-parfums" class="bold" data-instant>Theraputic Musk Body Lotion</a></span><a href="/products/theraputic-musk-body-lotion-inspired-by-musk-therapy-initio-parfums#shopify-product-reviews" class="rating " title="2 reviews" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  3161.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3162.      </svg></div>
  3163.  </a></div><p style="background-color:#F4F4F4;">Inspired By Musk Therapy Initio Parfums Prive</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3164.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3165. </product-card><product-card handle="adhara-body-lotion-inspired-by-parfums-de-marly-althair"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3166.      <a href="/products/adhara-body-lotion-inspired-by-parfums-de-marly-althair" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-25-58-835.jpg?v=1743713182&amp;width=1080" alt="Adhara Body Lotion Inspired by Parfums De Marly Althair" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-25-58-835.jpg?v=1743713182&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-25-58-835.jpg?v=1743713182&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-25-58-835.jpg?v=1743713182&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-25-58-835.jpg?v=1743713182&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-25-58-835.jpg?v=1743713182&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-25-58-835.jpg?v=1743713182&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-25-58-835.jpg?v=1743713182&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-25-58-835.jpg?v=1743713182&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-58-05-274.jpg?v=1743713182&amp;width=1080" alt="Adhara Body Lotion Inspired by Parfums De Marly Althair" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-58-05-274.jpg?v=1743713182&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-58-05-274.jpg?v=1743713182&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-58-05-274.jpg?v=1743713182&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-58-05-274.jpg?v=1743713182&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-58-05-274.jpg?v=1743713182&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-58-05-274.jpg?v=1743713182&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-58-05-274.jpg?v=1743713182&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-58-05-274.jpg?v=1743713182&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3167.          <span class="product-card__title"><a href="/products/adhara-body-lotion-inspired-by-parfums-de-marly-althair" class="bold" data-instant>Adhara Body Lotion</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Parfums De Marly Althair.</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3168.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3169. </product-card><product-card handle="harmony-body-lotion-inspired-by-symphony"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3170.      <a href="/products/harmony-body-lotion-inspired-by-symphony" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-52-09-610.jpg?v=1750009017&amp;width=1080" alt="Harmony Body Lotion Inspired By Symphony" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-52-09-610.jpg?v=1750009017&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-52-09-610.jpg?v=1750009017&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-52-09-610.jpg?v=1750009017&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-52-09-610.jpg?v=1750009017&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-52-09-610.jpg?v=1750009017&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-52-09-610.jpg?v=1750009017&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-52-09-610.jpg?v=1750009017&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-52-09-610.jpg?v=1750009017&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-54-57-428.jpg?v=1750009017&amp;width=1080" alt="Harmony Body Lotion Inspired By Symphony" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-54-57-428.jpg?v=1750009017&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-54-57-428.jpg?v=1750009017&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-54-57-428.jpg?v=1750009017&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-54-57-428.jpg?v=1750009017&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-54-57-428.jpg?v=1750009017&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-54-57-428.jpg?v=1750009017&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-54-57-428.jpg?v=1750009017&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-54-57-428.jpg?v=1750009017&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3171.          <span class="product-card__title"><a href="/products/harmony-body-lotion-inspired-by-symphony" class="bold" data-instant>Harmony Body Lotion</a></span><a href="/products/harmony-body-lotion-inspired-by-symphony#shopify-product-reviews" class="rating " title="1 review" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  3172.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3173.      </svg></div>
  3174.  </a></div><p style="background-color:#F4F4F4;"> Inspired By Symphony</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3175.        <span class="sr-only">Sale price</span>$20.00</sale-price></price-list></div></div>
  3176. </product-card><product-card handle="the-man-elixir-lotion-inspired-by-jean-paul-gualtier-le-male-elixir"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3177.      <a href="/products/the-man-elixir-lotion-inspired-by-jean-paul-gualtier-le-male-elixir" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-56-928.jpg?v=1731956096&amp;width=1080" alt="The Man Elixir Body Lotion - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-56-928.jpg?v=1731956096&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-56-928.jpg?v=1731956096&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-56-928.jpg?v=1731956096&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-56-928.jpg?v=1731956096&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-56-928.jpg?v=1731956096&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-56-928.jpg?v=1731956096&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-56-928.jpg?v=1731956096&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-56-928.jpg?v=1731956096&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-14-06-487.jpg?v=1731956097&amp;width=1080" alt="The Man Elixir Body Lotion - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-14-06-487.jpg?v=1731956097&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-14-06-487.jpg?v=1731956097&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-14-06-487.jpg?v=1731956097&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-14-06-487.jpg?v=1731956097&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-14-06-487.jpg?v=1731956097&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-14-06-487.jpg?v=1731956097&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-14-06-487.jpg?v=1731956097&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-14-06-487.jpg?v=1731956097&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3178.          <span class="product-card__title"><a href="/products/the-man-elixir-lotion-inspired-by-jean-paul-gualtier-le-male-elixir" class="bold" data-instant>The Man Elixir Body Lotion</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Jean Paul Gaultier Le Male Elixir  </p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3179.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3180. </product-card><product-card handle="greenish-village-body-lotion-inspired-by-greenwich-village-bond-no-9"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3181.      <a href="/products/greenish-village-body-lotion-inspired-by-greenwich-village-bond-no-9" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-23-490.jpg?v=1731700029&amp;width=1080" alt="Greenish Village Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-23-490.jpg?v=1731700029&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-23-490.jpg?v=1731700029&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-23-490.jpg?v=1731700029&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-23-490.jpg?v=1731700029&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-23-490.jpg?v=1731700029&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-23-490.jpg?v=1731700029&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-23-490.jpg?v=1731700029&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-23-490.jpg?v=1731700029&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-41-45-080.jpg?v=1731700029&amp;width=1080" alt="Greenish Village Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-41-45-080.jpg?v=1731700029&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-41-45-080.jpg?v=1731700029&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-41-45-080.jpg?v=1731700029&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-41-45-080.jpg?v=1731700029&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-41-45-080.jpg?v=1731700029&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-41-45-080.jpg?v=1731700029&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-41-45-080.jpg?v=1731700029&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-41-45-080.jpg?v=1731700029&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3182.          <span class="product-card__title"><a href="/products/greenish-village-body-lotion-inspired-by-greenwich-village-bond-no-9" class="bold" data-instant>Greenish Village Body Lotion</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Greenwich Village Bond No. 9</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3183.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3184. </product-card><product-card handle="guide-body-lotion-inspired-by-amouage-guidance"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3185.      <a href="/products/guide-body-lotion-inspired-by-amouage-guidance" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-37-325.jpg?v=1731700332&amp;width=1080" alt="Guide Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-37-325.jpg?v=1731700332&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-37-325.jpg?v=1731700332&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-37-325.jpg?v=1731700332&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-37-325.jpg?v=1731700332&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-37-325.jpg?v=1731700332&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-37-325.jpg?v=1731700332&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-37-325.jpg?v=1731700332&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-37-325.jpg?v=1731700332&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-43-45-662.jpg?v=1731700332&amp;width=1080" alt="Guide Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-43-45-662.jpg?v=1731700332&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-43-45-662.jpg?v=1731700332&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-43-45-662.jpg?v=1731700332&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-43-45-662.jpg?v=1731700332&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-43-45-662.jpg?v=1731700332&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-43-45-662.jpg?v=1731700332&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-43-45-662.jpg?v=1731700332&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-43-45-662.jpg?v=1731700332&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3186.          <span class="product-card__title"><a href="/products/guide-body-lotion-inspired-by-amouage-guidance" class="bold" data-instant>Guide Body Lotion</a></span><a href="/products/guide-body-lotion-inspired-by-amouage-guidance#shopify-product-reviews" class="rating " title="2 reviews" ><span class="text-sm">4.5</span><div class="rating__stars" role="img" aria-label="4.5 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  3187.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3188.      </svg></div>
  3189.  </a></div><p style="background-color:#F4F4F4;">Inspired By Amouage Guidance</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3190.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3191. </product-card><product-card handle="immensity-body-lotion-inspired-by-limmensite"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><sold-out-badge   class="badge badge--sold-out">Sold out</sold-out-badge></div><div class="product-card__figure">
  3192.      <a href="/products/immensity-body-lotion-inspired-by-limmensite" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-37-201.jpg?v=1745938338&amp;width=1080" alt="Immensity Body Lotion Inspired By LImmensite" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-37-201.jpg?v=1745938338&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-37-201.jpg?v=1745938338&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-37-201.jpg?v=1745938338&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-37-201.jpg?v=1745938338&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-37-201.jpg?v=1745938338&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-37-201.jpg?v=1745938338&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-37-201.jpg?v=1745938338&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-37-201.jpg?v=1745938338&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-47-27-457.jpg?v=1745938339&amp;width=1080" alt="Immensity Body Lotion Inspired By L&#39;Immensite" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-47-27-457.jpg?v=1745938339&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-47-27-457.jpg?v=1745938339&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-47-27-457.jpg?v=1745938339&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-47-27-457.jpg?v=1745938339&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-47-27-457.jpg?v=1745938339&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-47-27-457.jpg?v=1745938339&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-47-27-457.jpg?v=1745938339&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-47-27-457.jpg?v=1745938339&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3193.          <span class="product-card__title"><a href="/products/immensity-body-lotion-inspired-by-limmensite" class="bold" data-instant>Immensity Body Lotion</a></span><a href="/products/immensity-body-lotion-inspired-by-limmensite#shopify-product-reviews" class="rating " title="1 review" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  3194.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3195.      </svg></div>
  3196.  </a></div><p style="background-color:#F4F4F4;">Inspired By L'Immensite</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3197.        <span class="sr-only">Sale price</span>$20.00</sale-price></price-list></div></div>
  3198. </product-card><product-card handle="hibiscus-body-lotion-inspired-by-hibiscus-mahajad-maison-crivelli"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3199.      <a href="/products/hibiscus-body-lotion-inspired-by-hibiscus-mahajad-maison-crivelli" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-49-136.jpg?v=1731700491&amp;width=1080" alt="Hibiscus Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-49-136.jpg?v=1731700491&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-49-136.jpg?v=1731700491&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-49-136.jpg?v=1731700491&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-49-136.jpg?v=1731700491&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-49-136.jpg?v=1731700491&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-49-136.jpg?v=1731700491&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-49-136.jpg?v=1731700491&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-49-136.jpg?v=1731700491&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-44-54-891.jpg?v=1731700492&amp;width=1080" alt="Hibiscus Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-44-54-891.jpg?v=1731700492&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-44-54-891.jpg?v=1731700492&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-44-54-891.jpg?v=1731700492&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-44-54-891.jpg?v=1731700492&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-44-54-891.jpg?v=1731700492&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-44-54-891.jpg?v=1731700492&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-44-54-891.jpg?v=1731700492&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-44-54-891.jpg?v=1731700492&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3200.          <span class="product-card__title"><a href="/products/hibiscus-body-lotion-inspired-by-hibiscus-mahajad-maison-crivelli" class="bold" data-instant>Hibiscus Body Lotion</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Hibiscus Mahajad Maison Crivelli </p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3201.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3202. </product-card><product-card handle="intensely-body-lotion-inspired-by-armani-stronger-with-you-intensely"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3203.      <a href="/products/intensely-body-lotion-inspired-by-armani-stronger-with-you-intensely" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-57-013.jpg?v=1731700943&amp;width=1080" alt="Intensely Body Lotion - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-57-013.jpg?v=1731700943&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-57-013.jpg?v=1731700943&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-57-013.jpg?v=1731700943&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-57-013.jpg?v=1731700943&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-57-013.jpg?v=1731700943&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-57-013.jpg?v=1731700943&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-57-013.jpg?v=1731700943&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-57-013.jpg?v=1731700943&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-48-31-367_b389a4b2-ad81-4517-a472-d152ef3cdba8.jpg?v=1731700944&amp;width=1080" alt="Intensely Body Lotion - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-48-31-367_b389a4b2-ad81-4517-a472-d152ef3cdba8.jpg?v=1731700944&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-48-31-367_b389a4b2-ad81-4517-a472-d152ef3cdba8.jpg?v=1731700944&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-48-31-367_b389a4b2-ad81-4517-a472-d152ef3cdba8.jpg?v=1731700944&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-48-31-367_b389a4b2-ad81-4517-a472-d152ef3cdba8.jpg?v=1731700944&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-48-31-367_b389a4b2-ad81-4517-a472-d152ef3cdba8.jpg?v=1731700944&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-48-31-367_b389a4b2-ad81-4517-a472-d152ef3cdba8.jpg?v=1731700944&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-48-31-367_b389a4b2-ad81-4517-a472-d152ef3cdba8.jpg?v=1731700944&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-48-31-367_b389a4b2-ad81-4517-a472-d152ef3cdba8.jpg?v=1731700944&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3204.          <span class="product-card__title"><a href="/products/intensely-body-lotion-inspired-by-armani-stronger-with-you-intensely" class="bold" data-instant>Intensely Body Lotion</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Giorgio Armani Stronger With You Intensely</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3205.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3206. </product-card><product-card handle="blue-charm-body-lotion-inspired-by-ex-nihilo-blue-talisman"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3207.      <a href="/products/blue-charm-body-lotion-inspired-by-ex-nihilo-blue-talisman" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-11-158.jpg?v=1731698763&amp;width=1080" alt="Blue Charm Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-11-158.jpg?v=1731698763&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-11-158.jpg?v=1731698763&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-11-158.jpg?v=1731698763&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-11-158.jpg?v=1731698763&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-11-158.jpg?v=1731698763&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-11-158.jpg?v=1731698763&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-11-158.jpg?v=1731698763&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-11-158.jpg?v=1731698763&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-10-46-434.jpg?v=1731698764&amp;width=1080" alt="Blue Charm Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-10-46-434.jpg?v=1731698764&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-10-46-434.jpg?v=1731698764&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-10-46-434.jpg?v=1731698764&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-10-46-434.jpg?v=1731698764&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-10-46-434.jpg?v=1731698764&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-10-46-434.jpg?v=1731698764&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-10-46-434.jpg?v=1731698764&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-10-46-434.jpg?v=1731698764&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3208.          <span class="product-card__title"><a href="/products/blue-charm-body-lotion-inspired-by-ex-nihilo-blue-talisman" class="bold" data-instant>Blue Charm Body Lotion</a></span><a href="/products/blue-charm-body-lotion-inspired-by-ex-nihilo-blue-talisman#shopify-product-reviews" class="rating " title="1 review" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  3209.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3210.      </svg></div>
  3211.  </a></div><p style="background-color:#F4F4F4;">Inspired By Ex Nihilo Blue Talisman</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3212.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3213. </product-card><product-card handle="sole-blank-body-lotion-inspired-by-tom-ford-soleil-blanc"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3214.      <a href="/products/sole-blank-body-lotion-inspired-by-tom-ford-soleil-blanc" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-38-29-808.jpg?v=1731955368&amp;width=1080" alt="Sole Blank Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-38-29-808.jpg?v=1731955368&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-38-29-808.jpg?v=1731955368&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-38-29-808.jpg?v=1731955368&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-38-29-808.jpg?v=1731955368&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-38-29-808.jpg?v=1731955368&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-38-29-808.jpg?v=1731955368&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-38-29-808.jpg?v=1731955368&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-38-29-808.jpg?v=1731955368&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-56-27-469.jpg?v=1731955369&amp;width=1080" alt="Sole Blank Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-56-27-469.jpg?v=1731955369&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-56-27-469.jpg?v=1731955369&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-56-27-469.jpg?v=1731955369&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-56-27-469.jpg?v=1731955369&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-56-27-469.jpg?v=1731955369&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-56-27-469.jpg?v=1731955369&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-56-27-469.jpg?v=1731955369&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-56-27-469.jpg?v=1731955369&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3215.          <span class="product-card__title"><a href="/products/sole-blank-body-lotion-inspired-by-tom-ford-soleil-blanc" class="bold" data-instant>Sole Blank Body Lotion</a></span></div><p style="background-color:#F4F4F4;">Inspired By Tom Ford Soleil Blanc</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3216.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3217. </product-card><product-card handle="ariana-body-lotion-inspired-by-pdm-oriana"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3218.      <a href="/products/ariana-body-lotion-inspired-by-pdm-oriana" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-27-330.jpg?v=1731698504&amp;width=1080" alt="Ariana Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-27-330.jpg?v=1731698504&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-27-330.jpg?v=1731698504&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-27-330.jpg?v=1731698504&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-27-330.jpg?v=1731698504&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-27-330.jpg?v=1731698504&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-27-330.jpg?v=1731698504&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-27-330.jpg?v=1731698504&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-27-330.jpg?v=1731698504&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-00-59-356.jpg?v=1731698504&amp;width=1080" alt="Ariana Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-00-59-356.jpg?v=1731698504&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-00-59-356.jpg?v=1731698504&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-00-59-356.jpg?v=1731698504&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-00-59-356.jpg?v=1731698504&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-00-59-356.jpg?v=1731698504&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-00-59-356.jpg?v=1731698504&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-00-59-356.jpg?v=1731698504&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-00-59-356.jpg?v=1731698504&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3219.          <span class="product-card__title"><a href="/products/ariana-body-lotion-inspired-by-pdm-oriana" class="bold" data-instant>Ariana Body Lotion</a></span><a href="/products/ariana-body-lotion-inspired-by-pdm-oriana#shopify-product-reviews" class="rating " title="1 review" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  3220.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3221.      </svg></div>
  3222.  </a></div><p style="background-color:#F4F4F4;"> Inspired By PDM Oriana</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3223.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3224. </product-card><product-card handle="afternoon-body-lotion-inspired-by-afternoon-swim"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3225.      <a href="/products/afternoon-body-lotion-inspired-by-afternoon-swim" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-20-34-424.jpg?v=1745938109&amp;width=1080" alt="Afternoon Body Lotion Inspired By Afternoon Swim" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-20-34-424.jpg?v=1745938109&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-20-34-424.jpg?v=1745938109&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-20-34-424.jpg?v=1745938109&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-20-34-424.jpg?v=1745938109&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-20-34-424.jpg?v=1745938109&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-20-34-424.jpg?v=1745938109&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-20-34-424.jpg?v=1745938109&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-20-34-424.jpg?v=1745938109&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-19-02-871.jpg?v=1745938109&amp;width=3464" alt="Afternoon Body Lotion  Inspired By Afternoon Swim" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-19-02-871.jpg?v=1745938109&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-19-02-871.jpg?v=1745938109&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-19-02-871.jpg?v=1745938109&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-19-02-871.jpg?v=1745938109&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-19-02-871.jpg?v=1745938109&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-19-02-871.jpg?v=1745938109&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-19-02-871.jpg?v=1745938109&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-19-02-871.jpg?v=1745938109&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-19-02-871.jpg?v=1745938109&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-19-02-871.jpg?v=1745938109&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-19-02-871.jpg?v=1745938109&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-19-02-871.jpg?v=1745938109&amp;width=1800 1800w" width="3464" height="3464" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3226.          <span class="product-card__title"><a href="/products/afternoon-body-lotion-inspired-by-afternoon-swim" class="bold" data-instant>Afternoon Body Lotion</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Afternoon Swim</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3227.        <span class="sr-only">Sale price</span>$20.00</sale-price></price-list></div></div>
  3228. </product-card></product-list>
  3229.        </reveal-items>
  3230.      </scroll-carousel><button is="prev-button" class="circle-button circle-button--lg circle-button--fill border group" aria-controls="scroll-area-template--18347438506258__a6a54990-6782-4328-858c-337aa34d364f" disabled>
  3231.            <span class="sr-only">Previous</span>
  3232.            <span class="animated-arrow animated-arrow--reverse"></span>
  3233.          </button>
  3234.  
  3235.          <button is="next-button" class="circle-button circle-button--lg circle-button--fill border group" aria-controls="scroll-area-template--18347438506258__a6a54990-6782-4328-858c-337aa34d364f">
  3236.            <span class="sr-only">Next</span>
  3237.            <span class="animated-arrow"></span>
  3238.          </button></div>
  3239.  </div>
  3240. </div>
  3241.  
  3242. </section><section id="shopify-section-template--18347438506258__image_with_text_overlay_NCBkD6" class="shopify-section shopify-section--image-with-text-overlay"><style>
  3243.  #shopify-section-template--18347438506258__image_with_text_overlay_NCBkD6 {--section-outer-spacing-block: 0;--content-over-media-overlay: 0 0 0 / 0.0;}
  3244. </style>
  3245.  
  3246. <div class="section   section-blends section-full text-custom"style="--text-color: 255 255 255;" ><image-banner reveal-on-scroll="true"  class="content-over-media content-over-media--auto full-bleed  text-custom"style="--text-color: 255 255 255;"><img src="//houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&amp;width=1600" alt="" srcset="//houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&amp;width=900 900w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&amp;width=1600 1600w" width="1600" height="899" loading="lazy" sizes="100vw" class=""></image-banner>
  3247. </div>
  3248.  
  3249. </section><section id="shopify-section-template--18347438506258__featured_product_xrXWnx" class="shopify-section shopify-section--featured-product"><style>
  3250.  #shopify-section-template--18347438506258__featured_product_xrXWnx {
  3251.    --section-background-hash: 0;
  3252.  }
  3253.  
  3254.  #shopify-section-template--18347438506258__featured_product_xrXWnx + * {
  3255.    --previous-section-background-hash: 0;
  3256.  }</style><style>
  3257.  #shopify-section-template--18347438506258__featured_product_xrXWnx {
  3258.    --product-grid: auto / minmax(0, 1fr);
  3259.    --product-gallery-media-list-grid: auto / auto-flow 100%;
  3260.    --product-gallery-media-list-gap: var(--spacing-0-5);
  3261.  }
  3262.  
  3263.  @media screen and (max-width: 999px) {
  3264.    #shopify-section-template--18347438506258__featured_product_xrXWnx {
  3265.      --section-spacing-block-start: 0px;
  3266.    }
  3267.  }
  3268.  
  3269.  @media screen and (min-width: 1000px) {
  3270.    #shopify-section-template--18347438506258__featured_product_xrXWnx {--product-grid: auto / minmax(0, 0.9fr) minmax(0, 1.1fr);
  3271.      --product-gallery-media-list-grid: auto / auto-flow 100%;
  3272.      --product-gallery-media-list-gap: calc(var(--grid-gutter) / 2);
  3273.    }}
  3274.  
  3275.  @media screen and (min-width: 1400px) {
  3276.    #shopify-section-template--18347438506258__featured_product_xrXWnx {
  3277.      --product-gallery-media-list-gap: var(--grid-gutter);
  3278.    }
  3279.  }
  3280. </style>
  3281.  
  3282. <div class="section section--tight  section-blends section-full">
  3283.  <div class="product">
  3284. <product-gallery form="product-form-10143161155858-template--18347438506258__featured_product_xrXWnx"allow-zoom="3" class="product-gallery product-gallery--mobile-dots product-gallery--desktop-carousel product-gallery--desktop-thumbnails-left product-gallery--mobile-expanded"><div class="product-gallery__ar-wrapper">
  3285.    <div class="product-gallery__media-list-wrapper"><custom-cursor class="product-gallery__cursor" >
  3286.          <div class="circle-button circle-button--fill circle-button--lg"><svg role="presentation" focusable="false" width="7" height="10" class="icon icon-chevron-right" viewBox="0 0 7 10">
  3287.        <path d="m1 9 4-4-4-4" fill="none" stroke="currentColor" stroke-width="2"></path>
  3288.      </svg></div>
  3289.        </custom-cursor><media-carousel desktop-mode="carousel_thumbnails_left" adaptive-height initial-index="0" autoplay id="product-gallery-10143161155858-template--18347438506258__featured_product_xrXWnx" class="product-gallery__media-list full-bleed scroll-area md:unbleed"><div class="product-gallery__media  snap-center" data-media-type="image" data-media-id="43586880962834" ><img src="//houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&amp;width=2048" alt="Sample Set 10 pcs" srcset="//houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&amp;width=1800 1800w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&amp;width=2000 2000w" width="2048" height="2048" loading="eager" fetchpriority="high" sizes="(max-width: 740px) calc(100vw - 40px), (max-width: 999px) calc(100vw - 64px), min(730px, 40vw)" class="rounded"></div><div class="product-gallery__media  snap-center" data-media-type="image" data-media-id="43586880373010" ><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=3464" alt="Sample Set 10 pcs" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=1800 1800w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=2000 2000w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=2200 2200w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=2400 2400w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=2600 2600w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=2800 2800w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=3000 3000w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=3200 3200w" width="3464" height="3464" loading="lazy" fetchpriority="auto" sizes="(max-width: 740px) calc(100vw - 40px), (max-width: 999px) calc(100vw - 64px), min(730px, 40vw)" class="rounded"></div><div class="product-gallery__media  snap-center" data-media-type="image" data-media-id="43586880340242" ><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=3464" alt="Sample Set 10 pcs" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=1800 1800w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=2000 2000w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=2200 2200w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=2400 2400w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=2600 2600w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=2800 2800w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=3000 3000w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=3200 3200w" width="3464" height="3464" loading="lazy" fetchpriority="auto" sizes="(max-width: 740px) calc(100vw - 40px), (max-width: 999px) calc(100vw - 64px), min(730px, 40vw)" class="rounded"></div><div class="product-gallery__media  snap-center" data-media-type="image" data-media-id="43615147557138" ><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=3464" alt="Sample Set 10 pcs" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=1800 1800w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=2000 2000w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=2200 2200w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=2400 2400w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=2600 2600w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=2800 2800w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=3000 3000w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=3200 3200w" width="3464" height="3464" loading="lazy" fetchpriority="auto" sizes="(max-width: 740px) calc(100vw - 40px), (max-width: 999px) calc(100vw - 64px), min(730px, 40vw)" class="rounded"></div><div class="product-gallery__media  snap-center" data-media-type="image" data-media-id="43608406917394" ><img src="//houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&amp;width=1080" alt="Sample Set 10 pcs" srcset="//houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" fetchpriority="auto" sizes="(max-width: 740px) calc(100vw - 40px), (max-width: 999px) calc(100vw - 64px), min(730px, 40vw)" class="rounded"></div></media-carousel><div class="product-gallery__zoom ">
  3290.          <button type="button" is="product-zoom-button" class="circle-button circle-button--fill ring">
  3291.            <span class="sr-only">Zoom</span><svg role="presentation" fill="none" stroke-width="2" focusable="false" width="15" height="15" class="icon icon-image-zoom" viewBox="0 0 15 15">
  3292.        <circle cx="7.067" cy="7.067" r="6.067" stroke="currentColor"></circle>
  3293.        <path d="M11.4 11.4 14 14" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path>
  3294.        <path d="M7 4v6M4 7h6" stroke="currentColor"></path>
  3295.      </svg></button>
  3296.        </div><page-dots class="page-dots page-dots--blurred md:hidden" aria-controls="product-gallery-10143161155858-template--18347438506258__featured_product_xrXWnx"><button type="button" class="tap-area"  aria-current="true">
  3297.          <span class="sr-only">Go to item 1</span>
  3298.        </button><button type="button" class="tap-area"  aria-current="false">
  3299.          <span class="sr-only">Go to item 2</span>
  3300.        </button><button type="button" class="tap-area"  aria-current="false">
  3301.          <span class="sr-only">Go to item 3</span>
  3302.        </button><button type="button" class="tap-area"  aria-current="false">
  3303.          <span class="sr-only">Go to item 4</span>
  3304.        </button><button type="button" class="tap-area"  aria-current="false">
  3305.          <span class="sr-only">Go to item 5</span>
  3306.        </button></page-dots></div></div><scroll-shadow class="product-gallery__thumbnail-list-wrapper">
  3307.        <page-dots align-selected class="product-gallery__thumbnail-list scroll-area bleed md:unbleed" aria-controls="product-gallery-10143161155858-template--18347438506258__featured_product_xrXWnx"><button type="button" class="product-gallery__thumbnail"  aria-current="true" aria-label="Go to item 1"><img src="//houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&amp;width=2048" alt="Sample Set 10 pcs" srcset="//houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&amp;width=56 56w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&amp;width=64 64w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&amp;width=112 112w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&amp;width=128 128w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&amp;width=168 168w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&amp;width=192 192w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 56px, 64px" class="object-contain rounded-sm">
  3308.            </button><button type="button" class="product-gallery__thumbnail"  aria-current="false" aria-label="Go to item 2"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=3464" alt="Sample Set 10 pcs" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=56 56w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=64 64w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=112 112w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=128 128w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=168 168w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&amp;width=192 192w" width="3464" height="3464" loading="lazy" sizes="(max-width: 699px) 56px, 64px" class="object-contain rounded-sm">
  3309.            </button><button type="button" class="product-gallery__thumbnail"  aria-current="false" aria-label="Go to item 3"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=3464" alt="Sample Set 10 pcs" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=56 56w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=64 64w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=112 112w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=128 128w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=168 168w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&amp;width=192 192w" width="3464" height="3464" loading="lazy" sizes="(max-width: 699px) 56px, 64px" class="object-contain rounded-sm">
  3310.            </button><button type="button" class="product-gallery__thumbnail"  aria-current="false" aria-label="Go to item 4"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=3464" alt="Sample Set 10 pcs" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=56 56w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=64 64w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=112 112w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=128 128w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=168 168w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&amp;width=192 192w" width="3464" height="3464" loading="lazy" sizes="(max-width: 699px) 56px, 64px" class="object-contain rounded-sm">
  3311.            </button><button type="button" class="product-gallery__thumbnail"  aria-current="false" aria-label="Go to item 5"><img src="//houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&amp;width=1080" alt="Sample Set 10 pcs" srcset="//houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&amp;width=56 56w, //houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&amp;width=64 64w, //houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&amp;width=112 112w, //houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&amp;width=128 128w, //houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&amp;width=168 168w, //houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&amp;width=192 192w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 56px, 64px" class="object-contain rounded-sm">
  3312.            </button></page-dots>
  3313.      </scroll-shadow></product-gallery><style>
  3314. p.metafields-option {
  3315.    background: #f4f4f4;
  3316.    width: 100%;
  3317.    max-width: 50%;
  3318.    padding: 0px 5px 0px 5px;
  3319.    text-align: center;
  3320.    display: flex;
  3321.    flex-wrap: wrap;
  3322.    align-content: center;
  3323.    justify-content: center;
  3324.    align-items: center;
  3325. }
  3326.  @media screen and (min-width: 480px) {
  3327.     p.metafields-option {
  3328.    background: #f4f4f4;
  3329.    width: 100%;
  3330.    max-width: 60%;
  3331. }
  3332.  }
  3333. </style><safe-sticky class="product-info"><div class="product-info__vendor" ><a href="/collections/vendors?q=Monac" class=" link-faded">Monac</a></div><h2 class="product-info__title h2" >
  3334.            <a href="/products/sample-set-10-pcs">Sample Set (10 pcs)</a>
  3335.          </h2><p class="metafields-option"></p><div class="product-info__price">
  3336.          <div class="rating-with-text"><price-list role="region" aria-live="polite" class="price-list price-list--lg " ><sale-price form="product-form-10143161155858-template--18347438506258__featured_product_xrXWnx" class="text-lg">
  3337.      <span class="sr-only">Sale price</span>$9.99</sale-price>
  3338.  
  3339.    <compare-at-price form="product-form-10143161155858-template--18347438506258__featured_product_xrXWnx" hidden class="text-subdued line-through">
  3340.      <span class="sr-only">Regular price</span></compare-at-price><unit-price form="product-form-10143161155858-template--18347438506258__featured_product_xrXWnx" hidden class="text-subdued">(/)
  3341.      </unit-price></price-list><div class="product-info__badge-list" ><sold-out-badge hidden form="product-form-10143161155858-template--18347438506258__featured_product_xrXWnx" class="badge badge--sold-out">Sold out</sold-out-badge><on-sale-badge hidden discount-mode="saving" form="product-form-10143161155858-template--18347438506258__featured_product_xrXWnx" class="badge badge--on-sale">Save $-9.99</on-sale-badge></div><a href="/products/sample-set-10-pcs#shopify-product-reviews" class="rating " title="1 review" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  3342.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3343.      </svg></div>
  3344.  </a></div></div><div class="product-info__variant-picker" ><noscript>
  3345.    <input type="hidden" name="id" form="product-form-10143161155858-template--18347438506258__featured_product_xrXWnx" value="51294225694994">
  3346.  </noscript></div><div class="product-info__quantity-selector ">
  3347.            <div class="form-control">
  3348.              <label for="product-form-10143161155858-template--18347438506258__featured_product_xrXWnx-quantity" class="block-label text-subdued">Quantity:</label>
  3349.  
  3350.              <quantity-selector class="quantity-selector">
  3351.                <button type="button" class="quantity-selector__button" aria-label="Decrease quantity"><svg role="presentation" focusable="false" width="10" height="2" class="icon icon-minus" viewBox="0 0 10 2">
  3352.        <path d="M0 0H10V2H0V0Z" fill="currentColor"></path>
  3353.      </svg></button>
  3354.                <input id="product-form-10143161155858-template--18347438506258__featured_product_xrXWnx-quantity" type="text" is="quantity-input" inputmode="numeric" class="quantity-selector__input" name="quantity" form="product-form-10143161155858-template--18347438506258__featured_product_xrXWnx" size="2" value="1" autocomplete="off">
  3355.                <button type="button" class="quantity-selector__button" aria-label="Increase quantity"><svg role="presentation" focusable="false" stroke-width="2" width="10" height="10" class="icon icon-plus" viewBox="0 0 12 12">
  3356.        <path d="M6 0V12" fill="none" stroke="currentColor"></path>
  3357.        <path d="M0 6L12 6" fill="none" stroke="currentColor"></path>
  3358.      </svg></button>
  3359.              </quantity-selector>
  3360.            </div>
  3361.          </div><div class="product-info__buy-buttons" ><form method="post" action="/cart/add" id="product-form-10143161155858-template--18347438506258__featured_product_xrXWnx" accept-charset="UTF-8" class="shopify-product-form" enctype="multipart/form-data" is="product-form"><input type="hidden" name="form_type" value="product" /><input type="hidden" name="utf8" value="✓" /><input type="hidden" disabled name="id" value="51294225694994"><buy-buttons class="buy-buttons buy-buttons--multiple" template="" form="product-form-10143161155858-template--18347438506258__featured_product_xrXWnx">
  3362. <button type="submit" class="button button--xl button--secondary"
  3363.  
  3364.  
  3365.  
  3366.  
  3367.  
  3368.  
  3369.  
  3370.  is="custom-button"
  3371. >Add to cart</button><div data-shopify="payment-button" class="shopify-payment-button"> <shopify-accelerated-checkout recommended="{&quot;name&quot;:&quot;shop_pay&quot;,&quot;wallet_params&quot;:{&quot;shopId&quot;:71899971858,&quot;merchantName&quot;:&quot;Monac Attar&quot;}}" fallback="{&quot;name&quot;:&quot;buy_it_now&quot;,&quot;wallet_params&quot;:{}}" access-token="0e829a237eaa9a51bb114f386e51b471" buyer-country="US" buyer-locale="en" buyer-currency="USD" variant-params="[{&quot;id&quot;:51294225694994,&quot;requiresShipping&quot;:true}]" shop-id="71899971858" > <div class="shopify-payment-button__button" role="button" disabled aria-hidden="true" style="background-color: transparent; border: none"> <div class="shopify-payment-button__skeleton">&nbsp;</div> </div> <div class="shopify-payment-button__more-options shopify-payment-button__skeleton" role="button" disabled aria-hidden="true">&nbsp;</div> </shopify-accelerated-checkout> <small id="shopify-buyer-consent" class="hidden" aria-hidden="true"> This item is a recurring or deferred purchase. By continuing, I agree to the <span id="shopify-subscription-policy-button">cancellation policy</span> and authorize you to charge my payment method at the prices, frequency and dates listed on this page until my order is fulfilled or I cancel, if permitted. </small> </div><style>
  3372.        #shopify-section-template--18347438506258__featured_product_xrXWnx .shopify-payment-button {}
  3373.      </style></buy-buttons><input type="hidden" name="product-id" value="10143161155858" /><input type="hidden" name="section-id" value="template--18347438506258__featured_product_xrXWnx" /></form></div><div class="product-info__pickup-availability" ><pickup-availability class="pickup-availability" form="product-form-10143161155858-template--18347438506258__featured_product_xrXWnx"></pickup-availability></div></safe-sticky></div>
  3374. </div>
  3375.  
  3376.  
  3377.  
  3378. <!-- GPO installed --></section><section id="shopify-section-template--18347438506258__c8c5e819-cfb9-44c5-a134-0e95727b176b" class="shopify-section shopify-section--featured-collection"><style>
  3379.  #shopify-section-template--18347438506258__c8c5e819-cfb9-44c5-a134-0e95727b176b {
  3380.    --section-background-hash: 0;
  3381.  }
  3382.  
  3383.  #shopify-section-template--18347438506258__c8c5e819-cfb9-44c5-a134-0e95727b176b + * {
  3384.    --previous-section-background-hash: 0;
  3385.  }</style><style>#shopify-section-template--18347438506258__c8c5e819-cfb9-44c5-a134-0e95727b176b .product-list {
  3386.    --product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
  3387.    --product-list-items-per-row: 1;
  3388.    --product-list-carousel-item-width: 74vw;
  3389.    --product-list-grid: auto / auto-flow var(--product-list-carousel-item-width);
  3390.  }
  3391.  
  3392.  @media screen and (min-width: 700px) {
  3393.    #shopify-section-template--18347438506258__c8c5e819-cfb9-44c5-a134-0e95727b176b .product-list {
  3394.      --product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
  3395.      --product-list-items-per-row: 2;
  3396.      --product-list-carousel-item-width: 36vw;
  3397.    }
  3398.  }
  3399.  
  3400.  @media screen and (min-width: 1000px) {
  3401.    #shopify-section-template--18347438506258__c8c5e819-cfb9-44c5-a134-0e95727b176b .product-list {
  3402.      --product-list-items-per-row: 5;
  3403.      --product-list-carousel-item-width: calc(var(--container-inner-width) / 5 - (var(--product-list-column-gap) / 5 * 4));
  3404.    }
  3405.  }
  3406. </style>
  3407.  
  3408. <div class="section   section-blends section-full">
  3409.  <div class="section-stack">
  3410.  <section-header class="section-header "><div class="prose"><h2 class="h2" reveal-on-scroll="true"><split-lines>Body Wash</split-lines></h2></div><a href="/collections/body-lotions" class="text-with-icon group">
  3411.        <span class="reversed-link">View All</span>
  3412.        <span class="circle-chevron group-hover:colors"><svg role="presentation" focusable="false" width="5" height="8" class="icon icon-chevron-right-small reverse-icon" viewBox="0 0 5 8">
  3413.        <path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
  3414.      </svg></span>
  3415.      </a></section-header><div class="scrollable-with-controls"><scroll-carousel selector="product-card" id="scroll-area-template--18347438506258__c8c5e819-cfb9-44c5-a134-0e95727b176b" class="scroll-area bleed is-scrollable">
  3416.        <reveal-items selector=".product-list > *">
  3417.          <product-list class="product-list"><product-card handle="imagine-body-wash-inspired-by-imagination"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3418.      <a href="/products/imagine-body-wash-inspired-by-imagination" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&amp;width=2048" alt="Imagine Body Wash Inspired By Imagination" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&amp;width=1800 1800w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-06-17_15-48-42-946.jpg?v=1750189788&amp;width=1080" alt="Imagine Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-06-17_15-48-42-946.jpg?v=1750189788&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-17_15-48-42-946.jpg?v=1750189788&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-17_15-48-42-946.jpg?v=1750189788&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-17_15-48-42-946.jpg?v=1750189788&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-17_15-48-42-946.jpg?v=1750189788&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-17_15-48-42-946.jpg?v=1750189788&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-17_15-48-42-946.jpg?v=1750189788&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-17_15-48-42-946.jpg?v=1750189788&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3419.          <span class="product-card__title"><a href="/products/imagine-body-wash-inspired-by-imagination" class="bold" data-instant>Imagine Body Wash</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Imagination</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3420.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3421. </product-card><product-card handle="540-body-wash-inspired-by-baccarat-rouge-540"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3422.      <a href="/products/540-body-wash-inspired-by-baccarat-rouge-540" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-37-33-761.jpg?v=1750549085&amp;width=1080" alt="540 Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-37-33-761.jpg?v=1750549085&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-37-33-761.jpg?v=1750549085&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-37-33-761.jpg?v=1750549085&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-37-33-761.jpg?v=1750549085&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-37-33-761.jpg?v=1750549085&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-37-33-761.jpg?v=1750549085&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-37-33-761.jpg?v=1750549085&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-37-33-761.jpg?v=1750549085&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-57-12-199.jpg?v=1750549085&amp;width=1080" alt="540 Extrait Body Wash - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-57-12-199.jpg?v=1750549085&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-57-12-199.jpg?v=1750549085&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-57-12-199.jpg?v=1750549085&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-57-12-199.jpg?v=1750549085&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-57-12-199.jpg?v=1750549085&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-57-12-199.jpg?v=1750549085&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-57-12-199.jpg?v=1750549085&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-57-12-199.jpg?v=1750549085&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3423.          <span class="product-card__title"><a href="/products/540-body-wash-inspired-by-baccarat-rouge-540" class="bold" data-instant>540 Body Wash</a></span><a href="/products/540-body-wash-inspired-by-baccarat-rouge-540#shopify-product-reviews" class="rating " title="2 reviews" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  3424.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3425.      </svg></div>
  3426.  </a></div><p style="background-color:#F4F4F4;"> Inspired By Baccarat Rouge 540</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3427.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3428. </product-card><product-card handle="aventor-body-wash-inspired-by-aventus"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3429.      <a href="/products/aventor-body-wash-inspired-by-aventus" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-48-35-586.jpg?v=1750283400&amp;width=1080" alt="Aventor Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-48-35-586.jpg?v=1750283400&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-48-35-586.jpg?v=1750283400&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-48-35-586.jpg?v=1750283400&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-48-35-586.jpg?v=1750283400&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-48-35-586.jpg?v=1750283400&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-48-35-586.jpg?v=1750283400&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-48-35-586.jpg?v=1750283400&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-48-35-586.jpg?v=1750283400&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-49-25-553.jpg?v=1750283400&amp;width=1084" alt="Aventor Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-49-25-553.jpg?v=1750283400&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-49-25-553.jpg?v=1750283400&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-49-25-553.jpg?v=1750283400&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-49-25-553.jpg?v=1750283400&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-49-25-553.jpg?v=1750283400&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-49-25-553.jpg?v=1750283400&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-49-25-553.jpg?v=1750283400&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-49-25-553.jpg?v=1750283400&amp;width=1000 1000w" width="1084" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3430.          <span class="product-card__title"><a href="/products/aventor-body-wash-inspired-by-aventus" class="bold" data-instant>Aventor Body Wash</a></span><a href="/products/aventor-body-wash-inspired-by-aventus#shopify-product-reviews" class="rating " title="1 review" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  3431.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3432.      </svg></div>
  3433.  </a></div><p style="background-color:#F4F4F4;"> Inspired By Creed Aventus</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3434.        <span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
  3435. </product-card><product-card handle="gio-body-wash-inspired-by-acqua-di-gio-profondo"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><sold-out-badge   class="badge badge--sold-out">Sold out</sold-out-badge></div><div class="product-card__figure">
  3436.      <a href="/products/gio-body-wash-inspired-by-acqua-di-gio-profondo" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-31-099.jpg?v=1743711608&amp;width=1080" alt="Gio Body Wash Inspired By Acqua di Gio Profondo" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-31-099.jpg?v=1743711608&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-31-099.jpg?v=1743711608&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-31-099.jpg?v=1743711608&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-31-099.jpg?v=1743711608&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-31-099.jpg?v=1743711608&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-31-099.jpg?v=1743711608&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-31-099.jpg?v=1743711608&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-31-099.jpg?v=1743711608&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-47-42-956.jpg?v=1743711608&amp;width=1080" alt="Gio Body Wash Inspired By Acqua di Gio Profondo" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-47-42-956.jpg?v=1743711608&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-47-42-956.jpg?v=1743711608&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-47-42-956.jpg?v=1743711608&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-47-42-956.jpg?v=1743711608&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-47-42-956.jpg?v=1743711608&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-47-42-956.jpg?v=1743711608&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-47-42-956.jpg?v=1743711608&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-47-42-956.jpg?v=1743711608&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3437.          <span class="product-card__title"><a href="/products/gio-body-wash-inspired-by-acqua-di-gio-profondo" class="bold" data-instant>Gio Body Wash</a></span><a href="/products/gio-body-wash-inspired-by-acqua-di-gio-profondo#shopify-product-reviews" class="rating " title="2 reviews" ><span class="text-sm">4.5</span><div class="rating__stars" role="img" aria-label="4.5 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  3438.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3439.      </svg></div>
  3440.  </a></div><p style="background-color:#F4F4F4;">Inspired By Acqua di Gio Profondo</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3441.        <span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
  3442. </product-card><product-card handle="the-man-elixir-body-wash-inspired-by-jean-paul-gaultier-le-male-elixir"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3443.      <a href="/products/the-man-elixir-body-wash-inspired-by-jean-paul-gaultier-le-male-elixir" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-24-14-687.jpg?v=1743705439&amp;width=1080" alt="The Man Elixir Body Wash Inspired by Jean Paul Gaultier Le Male Elixir " srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-24-14-687.jpg?v=1743705439&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-24-14-687.jpg?v=1743705439&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-24-14-687.jpg?v=1743705439&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-24-14-687.jpg?v=1743705439&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-24-14-687.jpg?v=1743705439&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-24-14-687.jpg?v=1743705439&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-24-14-687.jpg?v=1743705439&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-24-14-687.jpg?v=1743705439&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-29-24-105.jpg?v=1743705439&amp;width=1080" alt="The Man Elixir Body Wash Inspired by Jean Paul Gaultier Le Male Elixir " srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-29-24-105.jpg?v=1743705439&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-29-24-105.jpg?v=1743705439&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-29-24-105.jpg?v=1743705439&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-29-24-105.jpg?v=1743705439&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-29-24-105.jpg?v=1743705439&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-29-24-105.jpg?v=1743705439&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-29-24-105.jpg?v=1743705439&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-29-24-105.jpg?v=1743705439&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3444.          <span class="product-card__title"><a href="/products/the-man-elixir-body-wash-inspired-by-jean-paul-gaultier-le-male-elixir" class="bold" data-instant>The Man Elixir Body Wash</a></span></div><p style="background-color:#F4F4F4;">Inspired by Jean Paul Gaultier Le Male Elixir  </p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3445.        <span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
  3446. </product-card><product-card handle="latte-body-wash-inspired-by-giardini-di-toscana-bianco-latte"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3447.      <a href="/products/latte-body-wash-inspired-by-giardini-di-toscana-bianco-latte" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-53-975.jpg?v=1750109358&amp;width=1080" alt="Latte Body Wash Inspired By Bianco Latte" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-53-975.jpg?v=1750109358&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-53-975.jpg?v=1750109358&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-53-975.jpg?v=1750109358&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-53-975.jpg?v=1750109358&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-53-975.jpg?v=1750109358&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-53-975.jpg?v=1750109358&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-53-975.jpg?v=1750109358&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-53-975.jpg?v=1750109358&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-14-24-043.jpg?v=1750109358&amp;width=1080" alt="Latte Body Wash Inspired By Bianco Latte" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-14-24-043.jpg?v=1750109358&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-14-24-043.jpg?v=1750109358&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-14-24-043.jpg?v=1750109358&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-14-24-043.jpg?v=1750109358&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-14-24-043.jpg?v=1750109358&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-14-24-043.jpg?v=1750109358&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-14-24-043.jpg?v=1750109358&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-14-24-043.jpg?v=1750109358&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3448.          <span class="product-card__title"><a href="/products/latte-body-wash-inspired-by-giardini-di-toscana-bianco-latte" class="bold" data-instant>Latte Body Wash</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Giardini Di Toscana Bianco Latte</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3449.        <span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
  3450. </product-card><product-card handle="blue-body-wash-inspired-by-bleu-de-chanel"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3451.      <a href="/products/blue-body-wash-inspired-by-bleu-de-chanel" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-27-094.jpg?v=1743712665&amp;width=1080" alt="Blue Body Wash Inspired by Bleu De Chanel" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-27-094.jpg?v=1743712665&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-27-094.jpg?v=1743712665&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-27-094.jpg?v=1743712665&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-27-094.jpg?v=1743712665&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-27-094.jpg?v=1743712665&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-27-094.jpg?v=1743712665&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-27-094.jpg?v=1743712665&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-27-094.jpg?v=1743712665&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-00-062.jpg?v=1743712665&amp;width=1080" alt="Blue Body Wash Inspired by Bleu De Chanel" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-00-062.jpg?v=1743712665&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-00-062.jpg?v=1743712665&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-00-062.jpg?v=1743712665&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-00-062.jpg?v=1743712665&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-00-062.jpg?v=1743712665&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-00-062.jpg?v=1743712665&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-00-062.jpg?v=1743712665&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-00-062.jpg?v=1743712665&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3452.          <span class="product-card__title"><a href="/products/blue-body-wash-inspired-by-bleu-de-chanel" class="bold" data-instant>Blue Body Wash</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Blue De Chanel </p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3453.        <span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
  3454. </product-card><product-card handle="why-body-wash-inspired-by-ysl-y"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3455.      <a href="/products/why-body-wash-inspired-by-ysl-y" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-49-08-648.jpg?v=1743705247&amp;width=1080" alt="Why Body Wash inspired by YSL Y" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-49-08-648.jpg?v=1743705247&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-49-08-648.jpg?v=1743705247&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-49-08-648.jpg?v=1743705247&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-49-08-648.jpg?v=1743705247&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-49-08-648.jpg?v=1743705247&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-49-08-648.jpg?v=1743705247&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-49-08-648.jpg?v=1743705247&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-49-08-648.jpg?v=1743705247&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-54-35-623.jpg?v=1743705247&amp;width=1080" alt="Why Body Wash inspired by YSL Y" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-54-35-623.jpg?v=1743705247&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-54-35-623.jpg?v=1743705247&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-54-35-623.jpg?v=1743705247&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-54-35-623.jpg?v=1743705247&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-54-35-623.jpg?v=1743705247&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-54-35-623.jpg?v=1743705247&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-54-35-623.jpg?v=1743705247&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-54-35-623.jpg?v=1743705247&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3456.          <span class="product-card__title"><a href="/products/why-body-wash-inspired-by-ysl-y" class="bold" data-instant>Why Body Wash</a></span></div><p style="background-color:#F4F4F4;"> Inspired By YSL Y EDP</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3457.        <span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
  3458. </product-card><product-card handle="divine-body-wash-inspired-by-killans-angels-share"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3459.      <a href="/products/divine-body-wash-inspired-by-killans-angels-share" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-30-538.jpg?v=1743711868&amp;width=1080" alt="Divine Body Wash Inspired By Killans Angels Share" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-30-538.jpg?v=1743711868&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-30-538.jpg?v=1743711868&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-30-538.jpg?v=1743711868&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-30-538.jpg?v=1743711868&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-30-538.jpg?v=1743711868&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-30-538.jpg?v=1743711868&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-30-538.jpg?v=1743711868&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-30-538.jpg?v=1743711868&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-13-35-702.jpg?v=1743711868&amp;width=1080" alt="Divine Body Wash Inspired By Killans Angels Share" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-13-35-702.jpg?v=1743711868&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-13-35-702.jpg?v=1743711868&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-13-35-702.jpg?v=1743711868&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-13-35-702.jpg?v=1743711868&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-13-35-702.jpg?v=1743711868&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-13-35-702.jpg?v=1743711868&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-13-35-702.jpg?v=1743711868&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-13-35-702.jpg?v=1743711868&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3460.          <span class="product-card__title"><a href="/products/divine-body-wash-inspired-by-killans-angels-share" class="bold" data-instant>Divine Body Wash</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Killan's Angels Share</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3461.        <span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
  3462. </product-card><product-card handle="sweet-love-body-wash-inspired-by-xerjoff-la-capitale"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3463.      <a href="/products/sweet-love-body-wash-inspired-by-xerjoff-la-capitale" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-45-59-040.jpg?v=1732216428&amp;width=1080" alt="Sweet Love Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-45-59-040.jpg?v=1732216428&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-45-59-040.jpg?v=1732216428&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-45-59-040.jpg?v=1732216428&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-45-59-040.jpg?v=1732216428&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-45-59-040.jpg?v=1732216428&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-45-59-040.jpg?v=1732216428&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-45-59-040.jpg?v=1732216428&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-45-59-040.jpg?v=1732216428&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-34-26-740.jpg?v=1732216428&amp;width=1080" alt="Sweet Love Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-34-26-740.jpg?v=1732216428&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-34-26-740.jpg?v=1732216428&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-34-26-740.jpg?v=1732216428&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-34-26-740.jpg?v=1732216428&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-34-26-740.jpg?v=1732216428&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-34-26-740.jpg?v=1732216428&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-34-26-740.jpg?v=1732216428&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-34-26-740.jpg?v=1732216428&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3464.          <span class="product-card__title"><a href="/products/sweet-love-body-wash-inspired-by-xerjoff-la-capitale" class="bold" data-instant>Sweet Love Body Wash</a></span><a href="/products/sweet-love-body-wash-inspired-by-xerjoff-la-capitale#shopify-product-reviews" class="rating " title="1 review" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  3465.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3466.      </svg></div>
  3467.  </a></div><p style="background-color:#F4F4F4;"> Inspired By Killian Love Don't Be Shy</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3468.        <span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
  3469. </product-card><product-card handle="fire-god-body-wash-inspired-by-god-of-fire"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3470.      <a href="/products/fire-god-body-wash-inspired-by-god-of-fire" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-18-635.jpg?v=1750108872&amp;width=1080" alt="Fire God Body Wash  Inspired By God of Fire " srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-18-635.jpg?v=1750108872&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-18-635.jpg?v=1750108872&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-18-635.jpg?v=1750108872&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-18-635.jpg?v=1750108872&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-18-635.jpg?v=1750108872&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-18-635.jpg?v=1750108872&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-18-635.jpg?v=1750108872&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-18-635.jpg?v=1750108872&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-17-06-189.jpg?v=1750108872&amp;width=1080" alt="Fire God Body Wash  Inspired By God of Fire " srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-17-06-189.jpg?v=1750108872&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-17-06-189.jpg?v=1750108872&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-17-06-189.jpg?v=1750108872&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-17-06-189.jpg?v=1750108872&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-17-06-189.jpg?v=1750108872&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-17-06-189.jpg?v=1750108872&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-17-06-189.jpg?v=1750108872&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-17-06-189.jpg?v=1750108872&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3471.          <span class="product-card__title"><a href="/products/fire-god-body-wash-inspired-by-god-of-fire" class="bold" data-instant>Fire God Body Wash</a></span></div><p style="background-color:#F4F4F4;"> Inspired By God of Fire Stephane Humbert Lucas 777</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3472.        <span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
  3473. </product-card><product-card handle="blue-charm-body-wash-inspired-by-ex-nihilo-blue-talisman"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3474.      <a href="/products/blue-charm-body-wash-inspired-by-ex-nihilo-blue-talisman" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-52-625.jpg?v=1732203079&amp;width=1080" alt="Blue Charm Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-52-625.jpg?v=1732203079&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-52-625.jpg?v=1732203079&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-52-625.jpg?v=1732203079&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-52-625.jpg?v=1732203079&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-52-625.jpg?v=1732203079&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-52-625.jpg?v=1732203079&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-52-625.jpg?v=1732203079&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-52-625.jpg?v=1732203079&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-49-161.jpg?v=1732203079&amp;width=1080" alt="Blue Charm Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-49-161.jpg?v=1732203079&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-49-161.jpg?v=1732203079&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-49-161.jpg?v=1732203079&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-49-161.jpg?v=1732203079&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-49-161.jpg?v=1732203079&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-49-161.jpg?v=1732203079&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-49-161.jpg?v=1732203079&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-49-161.jpg?v=1732203079&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3475.          <span class="product-card__title"><a href="/products/blue-charm-body-wash-inspired-by-ex-nihilo-blue-talisman" class="bold" data-instant>Blue Charm Body Wash</a></span></div><p style="background-color:#F4F4F4;">Inspired By Ex Nihilo Blue Talisman</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3476.        <span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
  3477. </product-card><product-card handle="forest-street-body-wash-inspired-by-bond-no-9-lafayette-street"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3478.      <a href="/products/forest-street-body-wash-inspired-by-bond-no-9-lafayette-street" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-36-932.jpg?v=1732204962&amp;width=1080" alt="Forest Street Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-36-932.jpg?v=1732204962&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-36-932.jpg?v=1732204962&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-36-932.jpg?v=1732204962&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-36-932.jpg?v=1732204962&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-36-932.jpg?v=1732204962&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-36-932.jpg?v=1732204962&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-36-932.jpg?v=1732204962&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-36-932.jpg?v=1732204962&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-44-46-633.jpg?v=1732204963&amp;width=1080" alt="Forest Street Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-44-46-633.jpg?v=1732204963&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-44-46-633.jpg?v=1732204963&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-44-46-633.jpg?v=1732204963&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-44-46-633.jpg?v=1732204963&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-44-46-633.jpg?v=1732204963&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-44-46-633.jpg?v=1732204963&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-44-46-633.jpg?v=1732204963&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-44-46-633.jpg?v=1732204963&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3479.          <span class="product-card__title"><a href="/products/forest-street-body-wash-inspired-by-bond-no-9-lafayette-street" class="bold" data-instant>Forest Street Body Wash</a></span><a href="/products/forest-street-body-wash-inspired-by-bond-no-9-lafayette-street#shopify-product-reviews" class="rating " title="1 review" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  3480.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3481.      </svg></div>
  3482.  </a></div><p style="background-color:#F4F4F4;"> Inspired By Bond no 9 Lafayette Street</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3483.        <span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
  3484. </product-card><product-card handle="leyton-body-wash-inspired-by-parfums-de-marly-layton"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3485.      <a href="/products/leyton-body-wash-inspired-by-parfums-de-marly-layton" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-13-19-419.jpg?v=1743706078&amp;width=1080" alt="Leyton Body Wash Inspired By Parfums De Marly Layton" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-13-19-419.jpg?v=1743706078&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-13-19-419.jpg?v=1743706078&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-13-19-419.jpg?v=1743706078&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-13-19-419.jpg?v=1743706078&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-13-19-419.jpg?v=1743706078&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-13-19-419.jpg?v=1743706078&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-13-19-419.jpg?v=1743706078&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-13-19-419.jpg?v=1743706078&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-16-35-828.jpg?v=1743706079&amp;width=1080" alt="Leyton Body Wash Inspired By Parfums De Marly Layton" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-16-35-828.jpg?v=1743706079&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-16-35-828.jpg?v=1743706079&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-16-35-828.jpg?v=1743706079&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-16-35-828.jpg?v=1743706079&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-16-35-828.jpg?v=1743706079&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-16-35-828.jpg?v=1743706079&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-16-35-828.jpg?v=1743706079&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-16-35-828.jpg?v=1743706079&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3486.          <span class="product-card__title"><a href="/products/leyton-body-wash-inspired-by-parfums-de-marly-layton" class="bold" data-instant>Leyton Body Wash</a></span></div><p style="background-color:#F4F4F4;">Inspired By Parfums De Marly Layton</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3487.        <span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
  3488. </product-card><product-card handle="cherry-body-wash-inspired-by-tom-ford-lost-cherry"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3489.      <a href="/products/cherry-body-wash-inspired-by-tom-ford-lost-cherry" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-00-130.jpg?v=1743712005&amp;width=1080" alt="Cherry Body Wash Inspired by Tom Ford Lost Cherry" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-00-130.jpg?v=1743712005&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-00-130.jpg?v=1743712005&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-00-130.jpg?v=1743712005&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-00-130.jpg?v=1743712005&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-00-130.jpg?v=1743712005&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-00-130.jpg?v=1743712005&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-00-130.jpg?v=1743712005&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-00-130.jpg?v=1743712005&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-12-03-166.jpg?v=1743712005&amp;width=1080" alt="Cherry Body Wash Inspired by Tom Ford Lost Cherry" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-12-03-166.jpg?v=1743712005&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-12-03-166.jpg?v=1743712005&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-12-03-166.jpg?v=1743712005&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-12-03-166.jpg?v=1743712005&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-12-03-166.jpg?v=1743712005&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-12-03-166.jpg?v=1743712005&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-12-03-166.jpg?v=1743712005&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-12-03-166.jpg?v=1743712005&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3490.          <span class="product-card__title"><a href="/products/cherry-body-wash-inspired-by-tom-ford-lost-cherry" class="bold" data-instant>Cherry Body Wash</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Tom Ford Lost Cherry</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3491.        <span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
  3492. </product-card><product-card handle="greenish-village-body-wash-inspired-by-greenwich-village-bond-no-9"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3493.      <a href="/products/greenish-village-body-wash-inspired-by-greenwich-village-bond-no-9" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-51-818.jpg?v=1743626132&amp;width=1080" alt="Greenish Village Body Wash Inspired by Greenwich Village Bond No 9" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-51-818.jpg?v=1743626132&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-51-818.jpg?v=1743626132&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-51-818.jpg?v=1743626132&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-51-818.jpg?v=1743626132&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-51-818.jpg?v=1743626132&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-51-818.jpg?v=1743626132&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-51-818.jpg?v=1743626132&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-51-818.jpg?v=1743626132&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-48-27-906.jpg?v=1744898947&amp;width=1080" alt="Greenish Village Body Wash Inspired by Greenwich Village Bond No 9" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-48-27-906.jpg?v=1744898947&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-48-27-906.jpg?v=1744898947&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-48-27-906.jpg?v=1744898947&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-48-27-906.jpg?v=1744898947&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-48-27-906.jpg?v=1744898947&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-48-27-906.jpg?v=1744898947&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-48-27-906.jpg?v=1744898947&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-48-27-906.jpg?v=1744898947&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3494.          <span class="product-card__title"><a href="/products/greenish-village-body-wash-inspired-by-greenwich-village-bond-no-9" class="bold" data-instant>Greenish Village Body Wash</a></span><a href="/products/greenish-village-body-wash-inspired-by-greenwich-village-bond-no-9#shopify-product-reviews" class="rating " title="1 review" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  3495.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3496.      </svg></div>
  3497.  </a></div><p style="background-color:#F4F4F4;"> Inspired By Greenwich Village Bond No. 9</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3498.        <span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
  3499. </product-card><product-card handle="intensely-body-wash-inspired-by-armani-stronger-with-you-intensely"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3500.      <a href="/products/intensely-body-wash-inspired-by-armani-stronger-with-you-intensely" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-00-789.jpg?v=1745038439&amp;width=1080" alt="Intensely Body Wash - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-00-789.jpg?v=1745038439&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-00-789.jpg?v=1745038439&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-00-789.jpg?v=1745038439&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-00-789.jpg?v=1745038439&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-00-789.jpg?v=1745038439&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-00-789.jpg?v=1745038439&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-00-789.jpg?v=1745038439&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-00-789.jpg?v=1745038439&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-53-55-220.jpg?v=1745038427&amp;width=1080" alt="Intensely Body Wash - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-53-55-220.jpg?v=1745038427&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-53-55-220.jpg?v=1745038427&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-53-55-220.jpg?v=1745038427&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-53-55-220.jpg?v=1745038427&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-53-55-220.jpg?v=1745038427&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-53-55-220.jpg?v=1745038427&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-53-55-220.jpg?v=1745038427&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-53-55-220.jpg?v=1745038427&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3501.          <span class="product-card__title"><a href="/products/intensely-body-wash-inspired-by-armani-stronger-with-you-intensely" class="bold" data-instant>Intensely Body Wash</a></span></div><p style="background-color:#F4F4F4;">Inspired by Giorgio Armani Stronger With You Intensely</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3502.        <span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
  3503. </product-card><product-card handle="uomo-body-wash-inspired-by-valentino-uomo-born-in-roma-valentino"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3504.      <a href="/products/uomo-body-wash-inspired-by-valentino-uomo-born-in-roma-valentino" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-47-26-524.jpg?v=1732216718&amp;width=1080" alt="Uomo Intense Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-47-26-524.jpg?v=1732216718&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-47-26-524.jpg?v=1732216718&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-47-26-524.jpg?v=1732216718&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-47-26-524.jpg?v=1732216718&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-47-26-524.jpg?v=1732216718&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-47-26-524.jpg?v=1732216718&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-47-26-524.jpg?v=1732216718&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-47-26-524.jpg?v=1732216718&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-48-36-573.jpg?v=1732216718&amp;width=1080" alt="Uomo Intense Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-48-36-573.jpg?v=1732216718&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-48-36-573.jpg?v=1732216718&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-48-36-573.jpg?v=1732216718&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-48-36-573.jpg?v=1732216718&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-48-36-573.jpg?v=1732216718&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-48-36-573.jpg?v=1732216718&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-48-36-573.jpg?v=1732216718&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-48-36-573.jpg?v=1732216718&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3505.          <span class="product-card__title"><a href="/products/uomo-body-wash-inspired-by-valentino-uomo-born-in-roma-valentino" class="bold" data-instant>Uomo Intense Body Wash</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Valentino Uomo Born in Roma Valentino</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3506.        <span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
  3507. </product-card><product-card handle="yummy-marshmello-body-wash-inspired-by-kayali-yum-bouje-marshmallow"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3508.      <a href="/products/yummy-marshmello-body-wash-inspired-by-kayali-yum-bouje-marshmallow" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-03-24_13-11-55-339.jpg?v=1743017200&amp;width=1080" alt="Yummy Marshmello Body Wash Inspired By Kayali Yum Boujee Marshmallow" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-03-24_13-11-55-339.jpg?v=1743017200&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_13-11-55-339.jpg?v=1743017200&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_13-11-55-339.jpg?v=1743017200&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_13-11-55-339.jpg?v=1743017200&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_13-11-55-339.jpg?v=1743017200&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_13-11-55-339.jpg?v=1743017200&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_13-11-55-339.jpg?v=1743017200&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_13-11-55-339.jpg?v=1743017200&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-53-32-845.jpg?v=1743017201&amp;width=3464" alt="Yummy Marshmello Body Wash Inspired By Kayali Yum Bouje Marshmallow 81 " srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-53-32-845.jpg?v=1743017201&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-53-32-845.jpg?v=1743017201&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-53-32-845.jpg?v=1743017201&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-53-32-845.jpg?v=1743017201&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-53-32-845.jpg?v=1743017201&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-53-32-845.jpg?v=1743017201&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-53-32-845.jpg?v=1743017201&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-53-32-845.jpg?v=1743017201&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-53-32-845.jpg?v=1743017201&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-53-32-845.jpg?v=1743017201&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-53-32-845.jpg?v=1743017201&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-53-32-845.jpg?v=1743017201&amp;width=1800 1800w" width="3464" height="3464" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3509.          <span class="product-card__title"><a href="/products/yummy-marshmello-body-wash-inspired-by-kayali-yum-bouje-marshmallow" class="bold" data-instant>Yummy Marshmello Body Wash</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Kayali Yum Boujee Marshmallow 81</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3510.        <span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
  3511. </product-card><product-card handle="sexy-vanilla-body-wash-inspired-by-tom-ford-vanilla-sex"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3512.      <a href="/products/sexy-vanilla-body-wash-inspired-by-tom-ford-vanilla-sex" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-19-838.jpg?v=1732215561&amp;width=1080" alt="Sexy Vanilla Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-19-838.jpg?v=1732215561&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-19-838.jpg?v=1732215561&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-19-838.jpg?v=1732215561&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-19-838.jpg?v=1732215561&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-19-838.jpg?v=1732215561&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-19-838.jpg?v=1732215561&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-19-838.jpg?v=1732215561&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-19-838.jpg?v=1732215561&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-29-41-463.jpg?v=1732215561&amp;width=1080" alt="Sexy Vanilla Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-29-41-463.jpg?v=1732215561&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-29-41-463.jpg?v=1732215561&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-29-41-463.jpg?v=1732215561&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-29-41-463.jpg?v=1732215561&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-29-41-463.jpg?v=1732215561&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-29-41-463.jpg?v=1732215561&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-29-41-463.jpg?v=1732215561&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-29-41-463.jpg?v=1732215561&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3513.          <span class="product-card__title"><a href="/products/sexy-vanilla-body-wash-inspired-by-tom-ford-vanilla-sex" class="bold" data-instant>Sexy Vanilla Body Wash</a></span></div><p style="background-color:#F4F4F4;">Inspired by Tom Ford Vanilla Sex</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3514.        <span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
  3515. </product-card><product-card handle="harmony-body-wash-inspired-by-symphony"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3516.      <a href="/products/harmony-body-wash-inspired-by-symphony" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-58-26-967.jpg?v=1750008978&amp;width=1080" alt="Harmony Body Wash Inspired By Symphony" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-58-26-967.jpg?v=1750008978&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-58-26-967.jpg?v=1750008978&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-58-26-967.jpg?v=1750008978&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-58-26-967.jpg?v=1750008978&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-58-26-967.jpg?v=1750008978&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-58-26-967.jpg?v=1750008978&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-58-26-967.jpg?v=1750008978&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-58-26-967.jpg?v=1750008978&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-02-17_16-00-02-694.jpg?v=1750008978&amp;width=1080" alt="Harmony Body Wash Inspired By Symphony" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-02-17_16-00-02-694.jpg?v=1750008978&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_16-00-02-694.jpg?v=1750008978&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_16-00-02-694.jpg?v=1750008978&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_16-00-02-694.jpg?v=1750008978&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_16-00-02-694.jpg?v=1750008978&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_16-00-02-694.jpg?v=1750008978&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_16-00-02-694.jpg?v=1750008978&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_16-00-02-694.jpg?v=1750008978&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3517.          <span class="product-card__title"><a href="/products/harmony-body-wash-inspired-by-symphony" class="bold" data-instant>Harmony Body Wash</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Symphony </p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3518.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3519. </product-card><product-card handle="effective-body-wash-inspired-by-initio-parfums-prives-side-effect"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3520.      <a href="/products/effective-body-wash-inspired-by-initio-parfums-prives-side-effect" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-03-429.jpg?v=1732204494&amp;width=1080" alt="Effective Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-03-429.jpg?v=1732204494&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-03-429.jpg?v=1732204494&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-03-429.jpg?v=1732204494&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-03-429.jpg?v=1732204494&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-03-429.jpg?v=1732204494&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-03-429.jpg?v=1732204494&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-03-429.jpg?v=1732204494&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-03-429.jpg?v=1732204494&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-16-02-049.jpg?v=1732204495&amp;width=1080" alt="Effective Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-16-02-049.jpg?v=1732204495&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-16-02-049.jpg?v=1732204495&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-16-02-049.jpg?v=1732204495&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-16-02-049.jpg?v=1732204495&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-16-02-049.jpg?v=1732204495&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-16-02-049.jpg?v=1732204495&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-16-02-049.jpg?v=1732204495&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-16-02-049.jpg?v=1732204495&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3521.          <span class="product-card__title"><a href="/products/effective-body-wash-inspired-by-initio-parfums-prives-side-effect" class="bold" data-instant>Effective Body Wash</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Initio Parfums Prives Side Effect</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3522.        <span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
  3523. </product-card><product-card handle="28-vanillie-body-wash-inspired-by-kayali-vanilla-28"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3524.      <a href="/products/28-vanillie-body-wash-inspired-by-kayali-vanilla-28" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-01-43-508.jpg?v=1732202039&amp;width=1080" alt="28 Vanillie Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-01-43-508.jpg?v=1732202039&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-01-43-508.jpg?v=1732202039&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-01-43-508.jpg?v=1732202039&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-01-43-508.jpg?v=1732202039&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-01-43-508.jpg?v=1732202039&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-01-43-508.jpg?v=1732202039&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-01-43-508.jpg?v=1732202039&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-01-43-508.jpg?v=1732202039&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-43-55-799.jpg?v=1732202039&amp;width=1080" alt="28 Vanillie Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-43-55-799.jpg?v=1732202039&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-43-55-799.jpg?v=1732202039&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-43-55-799.jpg?v=1732202039&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-43-55-799.jpg?v=1732202039&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-43-55-799.jpg?v=1732202039&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-43-55-799.jpg?v=1732202039&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-43-55-799.jpg?v=1732202039&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-43-55-799.jpg?v=1732202039&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3525.          <span class="product-card__title"><a href="/products/28-vanillie-body-wash-inspired-by-kayali-vanilla-28" class="bold" data-instant>28 Vanillie Body Wash</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Kayali Vanilla 28</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3526.        <span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
  3527. </product-card><product-card handle="hibiscus-body-wash-inspired-by-hibiscus-mahajad-maison-crivelli"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3528.      <a href="/products/hibiscus-body-wash-inspired-by-hibiscus-mahajad-maison-crivelli" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-10-25-539.jpg?v=1732212048&amp;width=1080" alt="Hibiscus Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-10-25-539.jpg?v=1732212048&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-10-25-539.jpg?v=1732212048&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-10-25-539.jpg?v=1732212048&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-10-25-539.jpg?v=1732212048&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-10-25-539.jpg?v=1732212048&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-10-25-539.jpg?v=1732212048&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-10-25-539.jpg?v=1732212048&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-10-25-539.jpg?v=1732212048&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-50-26-993.jpg?v=1732212048&amp;width=1080" alt="Hibiscus Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-50-26-993.jpg?v=1732212048&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-50-26-993.jpg?v=1732212048&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-50-26-993.jpg?v=1732212048&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-50-26-993.jpg?v=1732212048&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-50-26-993.jpg?v=1732212048&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-50-26-993.jpg?v=1732212048&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-50-26-993.jpg?v=1732212048&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-50-26-993.jpg?v=1732212048&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3529.          <span class="product-card__title"><a href="/products/hibiscus-body-wash-inspired-by-hibiscus-mahajad-maison-crivelli" class="bold" data-instant>Hibiscus Body Wash</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Hibiscus Mahajad Maison Crivelli</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3530.        <span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
  3531. </product-card><product-card handle="adhara-body-wash-inspired-by-parfums-de-marly-althair"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3532.      <a href="/products/adhara-body-wash-inspired-by-parfums-de-marly-althair" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-03-54-945.jpg?v=1743712852&amp;width=1080" alt="Anie Body Wash Inspired By Nishane Ani" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-03-54-945.jpg?v=1743712852&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-03-54-945.jpg?v=1743712852&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-03-54-945.jpg?v=1743712852&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-03-54-945.jpg?v=1743712852&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-03-54-945.jpg?v=1743712852&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-03-54-945.jpg?v=1743712852&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-03-54-945.jpg?v=1743712852&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-03-54-945.jpg?v=1743712852&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-47-05-999.jpg?v=1743712852&amp;width=1080" alt="Anie Body Wash Inspired By Nishane Ani" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-47-05-999.jpg?v=1743712852&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-47-05-999.jpg?v=1743712852&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-47-05-999.jpg?v=1743712852&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-47-05-999.jpg?v=1743712852&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-47-05-999.jpg?v=1743712852&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-47-05-999.jpg?v=1743712852&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-47-05-999.jpg?v=1743712852&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-47-05-999.jpg?v=1743712852&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3533.          <span class="product-card__title"><a href="/products/adhara-body-wash-inspired-by-parfums-de-marly-althair" class="bold" data-instant>Adhara Body Wash</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Parfums De Marly Althair.</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3534.        <span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
  3535. </product-card><product-card handle="sole-blank-body-wash-inspired-by-tom-ford-soleil-blanc"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3536.      <a href="/products/sole-blank-body-wash-inspired-by-tom-ford-soleil-blanc" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-56-121.jpg?v=1732216160&amp;width=1080" alt="Sole Blank Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-56-121.jpg?v=1732216160&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-56-121.jpg?v=1732216160&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-56-121.jpg?v=1732216160&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-56-121.jpg?v=1732216160&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-56-121.jpg?v=1732216160&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-56-121.jpg?v=1732216160&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-56-121.jpg?v=1732216160&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-56-121.jpg?v=1732216160&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-31-23-013.jpg?v=1732216160&amp;width=1080" alt="Sole Blank Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-31-23-013.jpg?v=1732216160&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-31-23-013.jpg?v=1732216160&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-31-23-013.jpg?v=1732216160&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-31-23-013.jpg?v=1732216160&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-31-23-013.jpg?v=1732216160&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-31-23-013.jpg?v=1732216160&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-31-23-013.jpg?v=1732216160&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-31-23-013.jpg?v=1732216160&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3537.          <span class="product-card__title"><a href="/products/sole-blank-body-wash-inspired-by-tom-ford-soleil-blanc" class="bold" data-instant>Sole Blank Body Wash</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Tom Ford Soleil Blanc</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3538.        <span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
  3539. </product-card><product-card handle="immensity-body-wash-inspired-by-limmensite"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><sold-out-badge   class="badge badge--sold-out">Sold out</sold-out-badge></div><div class="product-card__figure">
  3540.      <a href="/products/immensity-body-wash-inspired-by-limmensite" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-11-46-894.jpg?v=1745938423&amp;width=1080" alt="Immensity Body Wash Inspired By LImmensite" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-11-46-894.jpg?v=1745938423&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-11-46-894.jpg?v=1745938423&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-11-46-894.jpg?v=1745938423&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-11-46-894.jpg?v=1745938423&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-11-46-894.jpg?v=1745938423&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-11-46-894.jpg?v=1745938423&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-11-46-894.jpg?v=1745938423&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-11-46-894.jpg?v=1745938423&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-52-19-074.jpg?v=1745938423&amp;width=1080" alt="Immensity Body Wash Inspired By LImmensite" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-52-19-074.jpg?v=1745938423&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-52-19-074.jpg?v=1745938423&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-52-19-074.jpg?v=1745938423&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-52-19-074.jpg?v=1745938423&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-52-19-074.jpg?v=1745938423&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-52-19-074.jpg?v=1745938423&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-52-19-074.jpg?v=1745938423&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-52-19-074.jpg?v=1745938423&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3541.          <span class="product-card__title"><a href="/products/immensity-body-wash-inspired-by-limmensite" class="bold" data-instant>Immensity Body Wash</a></span></div><p style="background-color:#F4F4F4;"> Inspired By L'Immensite </p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3542.        <span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
  3543. </product-card><product-card handle="theraputic-musk-body-wash-inspired-by-musk-therapy-initio-parfums-prive"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3544.      <a href="/products/theraputic-musk-body-wash-inspired-by-musk-therapy-initio-parfums-prive" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-08-21_16-43-29-146.jpg?v=1724697955&amp;width=1080" alt="Theraputic Musk Body Wash Inspired By Musk Therapy Initio Parfums Prive" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-08-21_16-43-29-146.jpg?v=1724697955&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_16-43-29-146.jpg?v=1724697955&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_16-43-29-146.jpg?v=1724697955&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_16-43-29-146.jpg?v=1724697955&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_16-43-29-146.jpg?v=1724697955&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_16-43-29-146.jpg?v=1724697955&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_16-43-29-146.jpg?v=1724697955&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_16-43-29-146.jpg?v=1724697955&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-08-21_17-17-26-013.jpg?v=1724697954&amp;width=1080" alt="Theraputic Musk Body Wash Inspired By Musk Therapy Initio Parfums Prive" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-08-21_17-17-26-013.jpg?v=1724697954&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_17-17-26-013.jpg?v=1724697954&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_17-17-26-013.jpg?v=1724697954&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_17-17-26-013.jpg?v=1724697954&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_17-17-26-013.jpg?v=1724697954&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_17-17-26-013.jpg?v=1724697954&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_17-17-26-013.jpg?v=1724697954&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_17-17-26-013.jpg?v=1724697954&amp;width=1000 1000w" width="1080" height="1217" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 5 - (24px / 5 * 4))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3545.          <span class="product-card__title"><a href="/products/theraputic-musk-body-wash-inspired-by-musk-therapy-initio-parfums-prive" class="bold" data-instant>Theraputic Musk Body Wash</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Musk Therapy Initio Parfums Prive</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3546.        <span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
  3547. </product-card></product-list>
  3548.        </reveal-items>
  3549.      </scroll-carousel><div class="scrollbar peer-not-scrollable:hidden">
  3550.  <scroll-progress observes="scroll-area-template--18347438506258__c8c5e819-cfb9-44c5-a134-0e95727b176b" class="scrollbar__progress" style="--scroll-progress: 0.17857142857142858"></scroll-progress><div aria-controls="scroll-area-template--18347438506258__c8c5e819-cfb9-44c5-a134-0e95727b176b" class="scrollbar__buttons">
  3551.      <button is="prev-button" class="circle-button ring group" aria-controls="scroll-area-template--18347438506258__c8c5e819-cfb9-44c5-a134-0e95727b176b" disabled>
  3552.        <span class="sr-only">Previous</span>
  3553.        <span class="animated-arrow animated-arrow--reverse"></span>
  3554.      </button>
  3555.  
  3556.      <button is="next-button" class="circle-button ring group" aria-controls="scroll-area-template--18347438506258__c8c5e819-cfb9-44c5-a134-0e95727b176b">
  3557.        <span class="sr-only">Next</span>
  3558.        <span class="animated-arrow"></span>
  3559.      </button>
  3560.    </div></div></div>
  3561.  </div>
  3562. </div>
  3563.  
  3564. </section><section id="shopify-section-template--18347438506258__featured_collection_DVnM9K" class="shopify-section shopify-section--featured-collection"><style>
  3565.  #shopify-section-template--18347438506258__featured_collection_DVnM9K {
  3566.    --section-background-hash: 0;
  3567.  }
  3568.  
  3569.  #shopify-section-template--18347438506258__featured_collection_DVnM9K + * {
  3570.    --previous-section-background-hash: 0;
  3571.  }</style><style>#shopify-section-template--18347438506258__featured_collection_DVnM9K .product-list {
  3572.    --product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
  3573.    --product-list-items-per-row: 2;
  3574.    --product-list-carousel-item-width: 74vw;
  3575.    --product-list-grid: auto / auto-flow var(--product-list-carousel-item-width);
  3576.  }
  3577.  
  3578.  @media screen and (min-width: 700px) {
  3579.    #shopify-section-template--18347438506258__featured_collection_DVnM9K .product-list {
  3580.      --product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
  3581.      --product-list-items-per-row: 2;
  3582.      --product-list-carousel-item-width: 36vw;
  3583.    }
  3584.  }
  3585.  
  3586.  @media screen and (min-width: 1000px) {
  3587.    #shopify-section-template--18347438506258__featured_collection_DVnM9K .product-list {
  3588.      --product-list-items-per-row: 3;
  3589.      --product-list-carousel-item-width: calc(var(--container-inner-width) / 3 - (var(--product-list-column-gap) / 3 * 2));
  3590.    }
  3591.  }
  3592. </style>
  3593.  
  3594. <div class="section   section-blends section-full">
  3595.  <div class="section-stack">
  3596.  <section-header class="section-header "><div class="prose"><h2 class="h2" reveal-on-scroll="true"><split-lines>Candles</split-lines></h2></div><a href="/collections/candle" class="text-with-icon group">
  3597.        <span class="reversed-link">View all</span>
  3598.        <span class="circle-chevron group-hover:colors"><svg role="presentation" focusable="false" width="5" height="8" class="icon icon-chevron-right-small reverse-icon" viewBox="0 0 5 8">
  3599.        <path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
  3600.      </svg></span>
  3601.      </a></section-header><div class="scrollable-with-controls"><scroll-carousel selector="product-card" id="scroll-area-template--18347438506258__featured_collection_DVnM9K" class="scroll-area bleed is-scrollable">
  3602.        <reveal-items selector=".product-list > *">
  3603.          <product-list class="product-list"><product-card handle="540-candle-inspired-by-maison-francis-kurkdjian-540"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><sold-out-badge   class="badge badge--sold-out">Sold out</sold-out-badge></div><div class="product-card__figure">
  3604.      <a href="/products/540-candle-inspired-by-maison-francis-kurkdjian-540" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-06-54-447.jpg?v=1724779600&amp;width=2048" alt="540 Candle Inspired by Maison Francis Kurkdjian 540" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-06-54-447.jpg?v=1724779600&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-06-54-447.jpg?v=1724779600&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-06-54-447.jpg?v=1724779600&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-06-54-447.jpg?v=1724779600&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-06-54-447.jpg?v=1724779600&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-06-54-447.jpg?v=1724779600&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-06-54-447.jpg?v=1724779600&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-06-54-447.jpg?v=1724779600&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-06-54-447.jpg?v=1724779600&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-06-54-447.jpg?v=1724779600&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-06-54-447.jpg?v=1724779600&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-06-54-447.jpg?v=1724779600&amp;width=1800 1800w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 3 - (24px / 3 * 2))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-00-32-007.jpg?v=1724779598&amp;width=1080" alt="540 Candle Inspired by Maison Francis Kurkdjian 540" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-00-32-007.jpg?v=1724779598&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-00-32-007.jpg?v=1724779598&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-00-32-007.jpg?v=1724779598&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-00-32-007.jpg?v=1724779598&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-00-32-007.jpg?v=1724779598&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-00-32-007.jpg?v=1724779598&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-00-32-007.jpg?v=1724779598&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-00-32-007.jpg?v=1724779598&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 3 - (24px / 3 * 2))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3605.          <span class="product-card__title"><a href="/products/540-candle-inspired-by-maison-francis-kurkdjian-540" class="bold" data-instant>540 Candle</a></span></div><p style="background-color:#F4F4F4;">Inspired By Baccarat Rouge 540</p><price-list  class="price-list  " ><sale-price class="text-on-sale">
  3606.        <span class="sr-only">Sale price</span>$20.00</sale-price>
  3607.  
  3608.      <compare-at-price class="text-subdued line-through">
  3609.        <span class="sr-only">Regular price</span>$35.00</compare-at-price></price-list></div></div>
  3610. </product-card><product-card handle="adhara-candle-inspired-by-parfums-de-marley-althair"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><on-sale-badge  discount-mode="saving"  class="badge badge--on-sale">Save $5.00</on-sale-badge></div><div class="product-card__figure">
  3611.      <a href="/products/adhara-candle-inspired-by-parfums-de-marley-althair" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-08-12_15-10-43-814.jpg?v=1724773400&amp;width=2048" alt="Adhara Candle Inspired by Parfums de Marley Althair" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-08-12_15-10-43-814.jpg?v=1724773400&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_15-10-43-814.jpg?v=1724773400&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_15-10-43-814.jpg?v=1724773400&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_15-10-43-814.jpg?v=1724773400&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_15-10-43-814.jpg?v=1724773400&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_15-10-43-814.jpg?v=1724773400&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_15-10-43-814.jpg?v=1724773400&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_15-10-43-814.jpg?v=1724773400&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_15-10-43-814.jpg?v=1724773400&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_15-10-43-814.jpg?v=1724773400&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_15-10-43-814.jpg?v=1724773400&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_15-10-43-814.jpg?v=1724773400&amp;width=1800 1800w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 3 - (24px / 3 * 2))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-06-09-864.jpg?v=1724773401&amp;width=1080" alt="Adhara Candle Inspired by Parfums de Marley Althair" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-06-09-864.jpg?v=1724773401&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-06-09-864.jpg?v=1724773401&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-06-09-864.jpg?v=1724773401&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-06-09-864.jpg?v=1724773401&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-06-09-864.jpg?v=1724773401&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-06-09-864.jpg?v=1724773401&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-06-09-864.jpg?v=1724773401&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-06-09-864.jpg?v=1724773401&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 3 - (24px / 3 * 2))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3612.          <span class="product-card__title"><a href="/products/adhara-candle-inspired-by-parfums-de-marley-althair" class="bold" data-instant>Adhara Candle</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Parfums De Marly Althair.</p><price-list  class="price-list  " ><sale-price class="text-on-sale">
  3613.        <span class="sr-only">Sale price</span>$20.00</sale-price>
  3614.  
  3615.      <compare-at-price class="text-subdued line-through">
  3616.        <span class="sr-only">Regular price</span>$25.00</compare-at-price></price-list></div></div>
  3617. </product-card><product-card handle="anie-candle-inspired-by-nishane-ani"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><on-sale-badge  discount-mode="saving"  class="badge badge--on-sale">Save $5.00</on-sale-badge></div><div class="product-card__figure">
  3618.      <a href="/products/anie-candle-inspired-by-nishane-ani" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-07-41-647.jpg?v=1724778908&amp;width=2048" alt="Anie Candle Inspired by Nishane Ani" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-07-41-647.jpg?v=1724778908&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-07-41-647.jpg?v=1724778908&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-07-41-647.jpg?v=1724778908&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-07-41-647.jpg?v=1724778908&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-07-41-647.jpg?v=1724778908&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-07-41-647.jpg?v=1724778908&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-07-41-647.jpg?v=1724778908&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-07-41-647.jpg?v=1724778908&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-07-41-647.jpg?v=1724778908&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-07-41-647.jpg?v=1724778908&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-07-41-647.jpg?v=1724778908&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-07-41-647.jpg?v=1724778908&amp;width=1800 1800w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 3 - (24px / 3 * 2))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-11-05-685.jpg?v=1724778907&amp;width=1080" alt="Anie Candle Inspired by Nishane Ani" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-11-05-685.jpg?v=1724778907&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-11-05-685.jpg?v=1724778907&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-11-05-685.jpg?v=1724778907&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-11-05-685.jpg?v=1724778907&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-11-05-685.jpg?v=1724778907&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-11-05-685.jpg?v=1724778907&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-11-05-685.jpg?v=1724778907&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-11-05-685.jpg?v=1724778907&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 3 - (24px / 3 * 2))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3619.          <span class="product-card__title"><a href="/products/anie-candle-inspired-by-nishane-ani" class="bold" data-instant>Anie Candle</a></span></div><p style="background-color:#F4F4F4;">Inspired By Nishane Ani </p><price-list  class="price-list  " ><sale-price class="text-on-sale">
  3620.        <span class="sr-only">Sale price</span>$20.00</sale-price>
  3621.  
  3622.      <compare-at-price class="text-subdued line-through">
  3623.        <span class="sr-only">Regular price</span>$25.00</compare-at-price></price-list></div></div>
  3624. </product-card><product-card handle="cherry-candle-cherry-candle-inspired-tom-ford-lost-cherry"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__badge-list" ><on-sale-badge  discount-mode="saving"  class="badge badge--on-sale">Save $5.00</on-sale-badge></div><div class="product-card__figure">
  3625.      <a href="/products/cherry-candle-cherry-candle-inspired-tom-ford-lost-cherry" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-08-22-315.jpg?v=1724777728&amp;width=2048" alt="Cherry Candle Inspired Tom Ford Lost Cherry" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-08-22-315.jpg?v=1724777728&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-08-22-315.jpg?v=1724777728&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-08-22-315.jpg?v=1724777728&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-08-22-315.jpg?v=1724777728&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-08-22-315.jpg?v=1724777728&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-08-22-315.jpg?v=1724777728&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-08-22-315.jpg?v=1724777728&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-08-22-315.jpg?v=1724777728&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-08-22-315.jpg?v=1724777728&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-08-22-315.jpg?v=1724777728&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-08-22-315.jpg?v=1724777728&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-08-22-315.jpg?v=1724777728&amp;width=1800 1800w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 3 - (24px / 3 * 2))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/Picsart_24-08-12_14-45-59-842.jpg?v=1724777729&amp;width=1080" alt="Cherry Candle Inspired Tom Ford Lost Cherry" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-08-12_14-45-59-842.jpg?v=1724777729&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_14-45-59-842.jpg?v=1724777729&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_14-45-59-842.jpg?v=1724777729&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_14-45-59-842.jpg?v=1724777729&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_14-45-59-842.jpg?v=1724777729&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_14-45-59-842.jpg?v=1724777729&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_14-45-59-842.jpg?v=1724777729&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_14-45-59-842.jpg?v=1724777729&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 3 - (24px / 3 * 2))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3626.          <span class="product-card__title"><a href="/products/cherry-candle-cherry-candle-inspired-tom-ford-lost-cherry" class="bold" data-instant>Cherry Candle</a></span></div><p style="background-color:#F4F4F4;">Inspired by Tom Ford Lost Cherry </p><price-list  class="price-list  " ><sale-price class="text-on-sale">
  3627.        <span class="sr-only">Sale price</span>$20.00</sale-price>
  3628.  
  3629.      <compare-at-price class="text-subdued line-through">
  3630.        <span class="sr-only">Regular price</span>$25.00</compare-at-price></price-list></div></div>
  3631. </product-card></product-list>
  3632.        </reveal-items>
  3633.      </scroll-carousel><div class="scrollbar peer-not-scrollable:hidden">
  3634.  <scroll-progress observes="scroll-area-template--18347438506258__featured_collection_DVnM9K" class="scrollbar__progress" style="--scroll-progress: 0.21428571428571427"></scroll-progress><div aria-controls="scroll-area-template--18347438506258__featured_collection_DVnM9K" class="scrollbar__buttons">
  3635.      <button is="prev-button" class="circle-button ring group" aria-controls="scroll-area-template--18347438506258__featured_collection_DVnM9K" disabled>
  3636.        <span class="sr-only">Previous</span>
  3637.        <span class="animated-arrow animated-arrow--reverse"></span>
  3638.      </button>
  3639.  
  3640.      <button is="next-button" class="circle-button ring group" aria-controls="scroll-area-template--18347438506258__featured_collection_DVnM9K">
  3641.        <span class="sr-only">Next</span>
  3642.        <span class="animated-arrow"></span>
  3643.      </button>
  3644.    </div></div></div>
  3645.  </div>
  3646. </div>
  3647.  
  3648. </section><section id="shopify-section-template--18347438506258__1000f563-3f67-4fa4-ac75-f269b12a15e1" class="shopify-section shopify-section--rich-text"><style>
  3649.  #shopify-section-template--18347438506258__1000f563-3f67-4fa4-ac75-f269b12a15e1 {
  3650.    --section-background-hash: 0;
  3651.  }
  3652.  
  3653.  #shopify-section-template--18347438506258__1000f563-3f67-4fa4-ac75-f269b12a15e1 + * {
  3654.    --previous-section-background-hash: 0;
  3655.  }</style><style>
  3656.    #shopify-section-template--18347438506258__1000f563-3f67-4fa4-ac75-f269b12a15e1 {
  3657.      --rich-text-max-width: 650px
  3658.    }
  3659.  </style>
  3660.  
  3661.  <div class="section   section-blends section-full"><div class="rich-text justify-center ">
  3662.      <div class="rich-text__wrapper">
  3663.        <div class="prose justify-items-center text-center"></div>
  3664.      </div>
  3665.    </div>
  3666.  </div></section><section id="shopify-section-template--18347438506258__blog_posts_GDqpHN" class="shopify-section shopify-section--blog-posts"><style>
  3667.  #shopify-section-template--18347438506258__blog_posts_GDqpHN {
  3668.    --section-background-hash: 0;
  3669.  }
  3670.  
  3671.  #shopify-section-template--18347438506258__blog_posts_GDqpHN + * {
  3672.    --previous-section-background-hash: 0;
  3673.  }</style><style>
  3674.  #shopify-section-template--18347438506258__blog_posts_GDqpHN {
  3675.    --blog-posts-per-row: 3;
  3676.    --blog-posts-grid: auto / auto-flow 74vw;
  3677.  }
  3678.  
  3679.  @media screen and (min-width: 700px) {
  3680.    #shopify-section-template--18347438506258__blog_posts_GDqpHN {
  3681.      --blog-posts-grid: auto / auto-flow 52vw;
  3682.    }
  3683.  }
  3684.  
  3685.  @media screen and (min-width: 1000px) {
  3686.    #shopify-section-template--18347438506258__blog_posts_GDqpHN {
  3687.      --blog-posts-grid: auto / repeat(var(--blog-posts-per-row), minmax(0, 1fr));
  3688.    }
  3689.  }
  3690. </style>
  3691.  
  3692. <div class="section   section-blends section-full">
  3693.  <div class="section-stack">
  3694.  <section-header class="section-header "><div class="prose"><h2 class="h2" reveal-on-scroll="true"><split-lines>Blog Posts</split-lines></h2></div><a href="/blogs/news" class="text-with-icon group">
  3695.        <span class="reversed-link">View all</span>
  3696.        <span class="circle-chevron group-hover:colors"><svg role="presentation" focusable="false" width="5" height="8" class="icon icon-chevron-right-small reverse-icon" viewBox="0 0 5 8">
  3697.        <path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
  3698.      </svg></span>
  3699.      </a></section-header><div class="blog-posts scroll-area bleed md:unbleed"><blog-post-card class="blog-post-card snap-center group"><a href="/blogs/news/irresistible-cherry-scents-find-your-new-signature-fragrance" class="blog-post-card__figure rounded"><img src="//houseofmonac.com/cdn/shop/articles/2147c97d-f755-44d6-8506-5c67f6c1c4aa.jpg?v=1746696703&amp;width=1344" alt="Irresistible Cherry Scents: Find Your New Signature Fragrance" srcset="//houseofmonac.com/cdn/shop/articles/2147c97d-f755-44d6-8506-5c67f6c1c4aa.jpg?v=1746696703&amp;width=300 300w, //houseofmonac.com/cdn/shop/articles/2147c97d-f755-44d6-8506-5c67f6c1c4aa.jpg?v=1746696703&amp;width=400 400w, //houseofmonac.com/cdn/shop/articles/2147c97d-f755-44d6-8506-5c67f6c1c4aa.jpg?v=1746696703&amp;width=500 500w, //houseofmonac.com/cdn/shop/articles/2147c97d-f755-44d6-8506-5c67f6c1c4aa.jpg?v=1746696703&amp;width=600 600w, //houseofmonac.com/cdn/shop/articles/2147c97d-f755-44d6-8506-5c67f6c1c4aa.jpg?v=1746696703&amp;width=800 800w, //houseofmonac.com/cdn/shop/articles/2147c97d-f755-44d6-8506-5c67f6c1c4aa.jpg?v=1746696703&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/articles/2147c97d-f755-44d6-8506-5c67f6c1c4aa.jpg?v=1746696703&amp;width=1200 1200w" width="1344" height="768" loading="lazy" sizes="(max-width: 699px) calc(100vw - 40px), (max-width: 999px) calc(100vw / 3 - 64px), calc(min(100vw - 96px, 1800px) / 3)" class="w-full h-full object-cover zoom-image"></a><div class="blog-post-card__info">
  3700.    <div class="v-stack gap-4 sm:gap-5">
  3701.      <div class="v-stack gap-3 sm:gap-4"><p class="h3"><a href="/blogs/news/irresistible-cherry-scents-find-your-new-signature-fragrance">Irresistible Cherry Scents: Find Your New Signature Fragrance</a></p></div><div class="blog-post-card__meta"><div class="text-with-icon link-faded"><svg role="presentation" fill="none" focusable="false" stroke-width="1.5" width="16" height="16" class="icon icon-blog-date" viewBox="0 0 16 16">
  3702.        <path d="M5.372 1v2.877M10.455 1v2.877" stroke="currentColor" stroke-linecap="round"/>
  3703.        <path d="M14.338 7.632H1.497l.179-4.57 6.164-.448 6.497.448v4.57Z" fill="currentColor" fill-opacity=".12"/>
  3704.        <path d="M1.224 12.073c.183 1.631 1.508 2.925 3.147 3.004a73.18 73.18 0 0 0 3.546.083c1.256 0 2.413-.028 3.546-.083 1.639-.079 2.964-1.374 3.146-3.004.124-1.099.225-2.224.225-3.37 0-1.147-.102-2.273-.225-3.371-.182-1.631-1.507-2.925-3.146-3.004a73.22 73.22 0 0 0-3.546-.083 73.22 73.22 0 0 0-3.546.083c-1.639.079-2.964 1.374-3.147 3.004C1.101 6.43 1 7.556 1 8.703c0 1.146.102 2.272.224 3.37ZM1.331 7.202h13.24" stroke="currentColor" />
  3705.      </svg><span class="text-sm">Apr 12, 2025</span>
  3706.            </div></div></div>
  3707.  </div></blog-post-card><blog-post-card class="blog-post-card snap-center group"><a href="/blogs/news/maison-crivellis-top-5-best-selling-items" class="blog-post-card__figure rounded"><img src="//houseofmonac.com/cdn/shop/articles/0993a5a2-dddd-4686-88d1-55b9d53e911e_e0f6cfde-8d9c-4e9a-9bf7-687f3cdb08d4.jpg?v=1749670214&amp;width=1344" alt="Maison Crivelli&#39;s Top 5 Best-Selling Items" srcset="//houseofmonac.com/cdn/shop/articles/0993a5a2-dddd-4686-88d1-55b9d53e911e_e0f6cfde-8d9c-4e9a-9bf7-687f3cdb08d4.jpg?v=1749670214&amp;width=300 300w, //houseofmonac.com/cdn/shop/articles/0993a5a2-dddd-4686-88d1-55b9d53e911e_e0f6cfde-8d9c-4e9a-9bf7-687f3cdb08d4.jpg?v=1749670214&amp;width=400 400w, //houseofmonac.com/cdn/shop/articles/0993a5a2-dddd-4686-88d1-55b9d53e911e_e0f6cfde-8d9c-4e9a-9bf7-687f3cdb08d4.jpg?v=1749670214&amp;width=500 500w, //houseofmonac.com/cdn/shop/articles/0993a5a2-dddd-4686-88d1-55b9d53e911e_e0f6cfde-8d9c-4e9a-9bf7-687f3cdb08d4.jpg?v=1749670214&amp;width=600 600w, //houseofmonac.com/cdn/shop/articles/0993a5a2-dddd-4686-88d1-55b9d53e911e_e0f6cfde-8d9c-4e9a-9bf7-687f3cdb08d4.jpg?v=1749670214&amp;width=800 800w, //houseofmonac.com/cdn/shop/articles/0993a5a2-dddd-4686-88d1-55b9d53e911e_e0f6cfde-8d9c-4e9a-9bf7-687f3cdb08d4.jpg?v=1749670214&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/articles/0993a5a2-dddd-4686-88d1-55b9d53e911e_e0f6cfde-8d9c-4e9a-9bf7-687f3cdb08d4.jpg?v=1749670214&amp;width=1200 1200w" width="1344" height="768" loading="lazy" sizes="(max-width: 699px) calc(100vw - 40px), (max-width: 999px) calc(100vw / 3 - 64px), calc(min(100vw - 96px, 1800px) / 3)" class="w-full h-full object-cover zoom-image"></a><div class="blog-post-card__info">
  3708.    <div class="v-stack gap-4 sm:gap-5">
  3709.      <div class="v-stack gap-3 sm:gap-4"><p class="h3"><a href="/blogs/news/maison-crivellis-top-5-best-selling-items">Maison Crivelli's Top 5 Best-Selling Items</a></p></div><div class="blog-post-card__meta"><div class="text-with-icon link-faded"><svg role="presentation" fill="none" focusable="false" stroke-width="1.5" width="16" height="16" class="icon icon-blog-date" viewBox="0 0 16 16">
  3710.        <path d="M5.372 1v2.877M10.455 1v2.877" stroke="currentColor" stroke-linecap="round"/>
  3711.        <path d="M14.338 7.632H1.497l.179-4.57 6.164-.448 6.497.448v4.57Z" fill="currentColor" fill-opacity=".12"/>
  3712.        <path d="M1.224 12.073c.183 1.631 1.508 2.925 3.147 3.004a73.18 73.18 0 0 0 3.546.083c1.256 0 2.413-.028 3.546-.083 1.639-.079 2.964-1.374 3.146-3.004.124-1.099.225-2.224.225-3.37 0-1.147-.102-2.273-.225-3.371-.182-1.631-1.507-2.925-3.146-3.004a73.22 73.22 0 0 0-3.546-.083 73.22 73.22 0 0 0-3.546.083c-1.639.079-2.964 1.374-3.147 3.004C1.101 6.43 1 7.556 1 8.703c0 1.146.102 2.272.224 3.37ZM1.331 7.202h13.24" stroke="currentColor" />
  3713.      </svg><span class="text-sm">Apr 11, 2025</span>
  3714.            </div></div></div>
  3715.  </div></blog-post-card><blog-post-card class="blog-post-card snap-center group"><a href="/blogs/news/maison-francis-kurkdjians-top-5-best-selling-fragrances" class="blog-post-card__figure rounded"><img src="//houseofmonac.com/cdn/shop/articles/c7ec9555-6fe9-4bb9-aad6-6cf9d7990310_f892bc21-2826-487b-aeee-27b963e6e6da.jpg?v=1749669398&amp;width=1344" alt="Maison Francis Kurkdjian&#39;s Top 5 Best Selling Fragrances" srcset="//houseofmonac.com/cdn/shop/articles/c7ec9555-6fe9-4bb9-aad6-6cf9d7990310_f892bc21-2826-487b-aeee-27b963e6e6da.jpg?v=1749669398&amp;width=300 300w, //houseofmonac.com/cdn/shop/articles/c7ec9555-6fe9-4bb9-aad6-6cf9d7990310_f892bc21-2826-487b-aeee-27b963e6e6da.jpg?v=1749669398&amp;width=400 400w, //houseofmonac.com/cdn/shop/articles/c7ec9555-6fe9-4bb9-aad6-6cf9d7990310_f892bc21-2826-487b-aeee-27b963e6e6da.jpg?v=1749669398&amp;width=500 500w, //houseofmonac.com/cdn/shop/articles/c7ec9555-6fe9-4bb9-aad6-6cf9d7990310_f892bc21-2826-487b-aeee-27b963e6e6da.jpg?v=1749669398&amp;width=600 600w, //houseofmonac.com/cdn/shop/articles/c7ec9555-6fe9-4bb9-aad6-6cf9d7990310_f892bc21-2826-487b-aeee-27b963e6e6da.jpg?v=1749669398&amp;width=800 800w, //houseofmonac.com/cdn/shop/articles/c7ec9555-6fe9-4bb9-aad6-6cf9d7990310_f892bc21-2826-487b-aeee-27b963e6e6da.jpg?v=1749669398&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/articles/c7ec9555-6fe9-4bb9-aad6-6cf9d7990310_f892bc21-2826-487b-aeee-27b963e6e6da.jpg?v=1749669398&amp;width=1200 1200w" width="1344" height="768" loading="lazy" sizes="(max-width: 699px) calc(100vw - 40px), (max-width: 999px) calc(100vw / 3 - 64px), calc(min(100vw - 96px, 1800px) / 3)" class="w-full h-full object-cover zoom-image"></a><div class="blog-post-card__info">
  3716.    <div class="v-stack gap-4 sm:gap-5">
  3717.      <div class="v-stack gap-3 sm:gap-4"><p class="h3"><a href="/blogs/news/maison-francis-kurkdjians-top-5-best-selling-fragrances">Maison Francis Kurkdjian's Top 5 Best Selling Fragrances</a></p></div><div class="blog-post-card__meta"><div class="text-with-icon link-faded"><svg role="presentation" fill="none" focusable="false" stroke-width="1.5" width="16" height="16" class="icon icon-blog-date" viewBox="0 0 16 16">
  3718.        <path d="M5.372 1v2.877M10.455 1v2.877" stroke="currentColor" stroke-linecap="round"/>
  3719.        <path d="M14.338 7.632H1.497l.179-4.57 6.164-.448 6.497.448v4.57Z" fill="currentColor" fill-opacity=".12"/>
  3720.        <path d="M1.224 12.073c.183 1.631 1.508 2.925 3.147 3.004a73.18 73.18 0 0 0 3.546.083c1.256 0 2.413-.028 3.546-.083 1.639-.079 2.964-1.374 3.146-3.004.124-1.099.225-2.224.225-3.37 0-1.147-.102-2.273-.225-3.371-.182-1.631-1.507-2.925-3.146-3.004a73.22 73.22 0 0 0-3.546-.083 73.22 73.22 0 0 0-3.546.083c-1.639.079-2.964 1.374-3.147 3.004C1.101 6.43 1 7.556 1 8.703c0 1.146.102 2.272.224 3.37ZM1.331 7.202h13.24" stroke="currentColor" />
  3721.      </svg><span class="text-sm">Apr 10, 2025</span>
  3722.            </div></div></div>
  3723.  </div></blog-post-card></div>
  3724.  </div>
  3725. </div>
  3726.  
  3727. </section><section id="shopify-section-template--18347438506258__featured_collection_GgCpjX" class="shopify-section shopify-section--featured-collection"><style>
  3728.  #shopify-section-template--18347438506258__featured_collection_GgCpjX {
  3729.    --section-background-hash: 0;
  3730.  }
  3731.  
  3732.  #shopify-section-template--18347438506258__featured_collection_GgCpjX + * {
  3733.    --previous-section-background-hash: 0;
  3734.  }</style><style>#shopify-section-template--18347438506258__featured_collection_GgCpjX .product-list {
  3735.    --product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
  3736.    --product-list-items-per-row: 2;
  3737.    --product-list-carousel-item-width: 74vw;
  3738.    --product-list-grid: auto / auto-flow var(--product-list-carousel-item-width);
  3739.  }
  3740.  
  3741.  @media screen and (min-width: 700px) {
  3742.    #shopify-section-template--18347438506258__featured_collection_GgCpjX .product-list {
  3743.      --product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
  3744.      --product-list-items-per-row: 2;
  3745.      --product-list-carousel-item-width: 36vw;
  3746.    }
  3747.  }
  3748.  
  3749.  @media screen and (min-width: 1000px) {
  3750.    #shopify-section-template--18347438506258__featured_collection_GgCpjX .product-list {
  3751.      --product-list-items-per-row: 4;
  3752.      --product-list-carousel-item-width: calc(var(--container-inner-width) / 4 - (var(--product-list-column-gap) / 4 * 3));
  3753.    }
  3754.  }
  3755. </style>
  3756.  
  3757. <div class="section   section-blends section-full">
  3758.  <div class="section-stack">
  3759.  <section-header class="section-header "><div class="prose"><h2 class="h2" reveal-on-scroll="true"><split-lines>Gourmand Fragrances</split-lines></h2><p>Our Original Scents</p></div><a href="/collections/gourmand" class="text-with-icon group">
  3760.        <span class="reversed-link">View all</span>
  3761.        <span class="circle-chevron group-hover:colors"><svg role="presentation" focusable="false" width="5" height="8" class="icon icon-chevron-right-small reverse-icon" viewBox="0 0 5 8">
  3762.        <path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
  3763.      </svg></span>
  3764.      </a></section-header><div class="floating-controls-container"><scroll-carousel selector="product-card" id="scroll-area-template--18347438506258__featured_collection_GgCpjX" class="scroll-area bleed is-scrollable">
  3765.        <reveal-items selector=".product-list > *">
  3766.          <product-list class="product-list"><product-card handle="butterscotch-brulee"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3767.      <a href="/products/butterscotch-brulee" data-instant><img src="//houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&amp;width=2560" alt="Butterscotch Brulee - Monac" srcset="//houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&amp;width=1800 1800w" width="2560" height="2560" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM_2.jpg?v=1742312090&amp;width=1080" alt="Butterscotch Brulee Gourmand Fragrance, Luxury Scents, rich, creamy, caramelized sugar, indulgent scent notes" srcset="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM_2.jpg?v=1742312090&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM_2.jpg?v=1742312090&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM_2.jpg?v=1742312090&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM_2.jpg?v=1742312090&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM_2.jpg?v=1742312090&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM_2.jpg?v=1742312090&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM_2.jpg?v=1742312090&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM_2.jpg?v=1742312090&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3768.          <span class="product-card__title"><a href="/products/butterscotch-brulee" class="bold" data-instant>Butterscotch Brulee</a></span></div><p style="background-color:#F4F4F4;"></p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3769.        <span class="sr-only">Sale price</span>From $19.99
  3770. </sale-price></price-list></div></div>
  3771. </product-card><product-card handle="divine-inspired-by-killan-angles-share"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3772.      <a href="/products/divine-inspired-by-killan-angles-share" data-instant><img src="//houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&amp;width=3464" alt="Divine - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&amp;width=1800 1800w" width="3464" height="3464" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-28at4.03.29PM_3.jpg?v=1741807314&amp;width=1080" alt="Killian Angels&#39; Share Dupe, clone, amber, vanilla, luxury scent notes" srcset="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-28at4.03.29PM_3.jpg?v=1741807314&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-28at4.03.29PM_3.jpg?v=1741807314&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-28at4.03.29PM_3.jpg?v=1741807314&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-28at4.03.29PM_3.jpg?v=1741807314&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-28at4.03.29PM_3.jpg?v=1741807314&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-28at4.03.29PM_3.jpg?v=1741807314&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-28at4.03.29PM_3.jpg?v=1741807314&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-28at4.03.29PM_3.jpg?v=1741807314&amp;width=1000 1000w" width="1080" height="1217" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3773.          <span class="product-card__title"><a href="/products/divine-inspired-by-killan-angles-share" class="bold" data-instant>Divine</a></span></div><p style="background-color:#F4F4F4;"> Inspired By Killan's Angels Share (Retail $275)</p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3774.        <span class="sr-only">Sale price</span>From $29.00
  3775. </sale-price></price-list></div></div>
  3776. </product-card><product-card handle="divine-cherry-pie"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3777.      <a href="/products/divine-cherry-pie" data-instant><img src="//houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=2560" alt="Divine Cherry Pie - Monac" srcset="//houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&amp;width=1800 1800w" width="2560" height="2560" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&amp;width=1080" alt="Divine Cherry Pie Gourmand Fragrance, sweet, luxury, delicious scent packaging" srcset="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3778.          <span class="product-card__title"><a href="/products/divine-cherry-pie" class="bold" data-instant>Divine Cherry Pie</a></span><a href="/products/divine-cherry-pie#shopify-product-reviews" class="rating " title="1 review" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  3779.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3780.      </svg></div>
  3781.  </a></div><p style="background-color:#F4F4F4;"></p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3782.        <span class="sr-only">Sale price</span>From $19.99
  3783. </sale-price></price-list></div></div>
  3784. </product-card><product-card handle="strawberry-shortcake"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3785.      <a href="/products/strawberry-shortcake" data-instant><img src="//houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=2560" alt="Strawberry Shortcake - Monac" srcset="//houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&amp;width=1800 1800w" width="2560" height="2560" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&amp;width=1080" alt="Strawberry Shortcake Gourmand Fragrance, sweet, delicious, savory, luxury scent notes" srcset="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3786.          <span class="product-card__title"><a href="/products/strawberry-shortcake" class="bold" data-instant>Strawberry Shortcake</a></span><a href="/products/strawberry-shortcake#shopify-product-reviews" class="rating " title="1 review" ><span class="text-sm">5.0</span><div class="rating__stars" role="img" aria-label="5.0 out of 5.0 stars"><svg role="presentation" fill="none" focusable="false" width="12" height="12" class="rating__star icon icon-rating-star" viewBox="0 0 15 15">
  3787.        <path d="M7.5 0L9.58587 5.2731L15 5.72949L10.875 9.44483L12.1353 15L7.5 12.0231L2.86475 15L4.125 9.44483L0 5.72949L5.41414 5.2731L7.5 0Z" fill="currentColor"></path>
  3788.      </svg></div>
  3789.  </a></div><p style="background-color:#F4F4F4;"></p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3790.        <span class="sr-only">Sale price</span>From $19.99
  3791. </sale-price></price-list></div></div>
  3792. </product-card><product-card handle="sugar-cookie"  class="product-card product-card--blends product-card--show-secondary-media bg-custom text-custom"style="--background: 255 255 255; --text-color: 26 26 26;"><div class="product-card__figure">
  3793.      <a href="/products/sugar-cookie" data-instant><img src="//houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=2560" alt="Sugar Cookie - Monac" srcset="//houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=1000 1000w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=1200 1200w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=1400 1400w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=1600 1600w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&amp;width=1800 1800w" width="2560" height="2560" loading="lazy" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))" class="product-card__image product-card__image--primary  aspect-natural"><img src="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&amp;width=1080" alt="Sugar Cookie Gourmand Fragrance, sweet, delicious, gourmand, luxury scent notes" srcset="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&amp;width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&amp;width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&amp;width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&amp;width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&amp;width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&amp;width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&amp;width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&amp;width=1000 1000w" width="1080" height="1080" loading="lazy" class="product-card__image product-card__image--secondary object-fill" fetchpriority="low" sizes="(max-width: 699px) 74vw, (max-width: 999px) 38vw, calc(min(100vw - 96px, 1800px) / 4 - (24px / 4 * 3))"></a></div><div class="product-card__info "><div class="v-stack gap-0.5 w-full "><div class="rating-with-text">
  3794.          <span class="product-card__title"><a href="/products/sugar-cookie" class="bold" data-instant>Sugar Cookie</a></span></div><p style="background-color:#F4F4F4;"></p><price-list  class="price-list  " ><sale-price class="text-subdued">
  3795.        <span class="sr-only">Sale price</span>From $19.99
  3796. </sale-price></price-list></div></div>
  3797. </product-card></product-list>
  3798.        </reveal-items>
  3799.      </scroll-carousel><button is="prev-button" class="circle-button circle-button--lg circle-button--fill border group" aria-controls="scroll-area-template--18347438506258__featured_collection_GgCpjX" disabled>
  3800.            <span class="sr-only">Previous</span>
  3801.            <span class="animated-arrow animated-arrow--reverse"></span>
  3802.          </button>
  3803.  
  3804.          <button is="next-button" class="circle-button circle-button--lg circle-button--fill border group" aria-controls="scroll-area-template--18347438506258__featured_collection_GgCpjX">
  3805.            <span class="sr-only">Next</span>
  3806.            <span class="animated-arrow"></span>
  3807.          </button></div>
  3808.  </div>
  3809. </div>
  3810.  
  3811. </section><section id="shopify-section-template--18347438506258__1694399916869e05b3" class="shopify-section shopify-section--apps"><style>
  3812.  #shopify-section-template--18347438506258__1694399916869e05b3 {
  3813.    --section-background-hash: 0;
  3814.  }
  3815.  
  3816.  #shopify-section-template--18347438506258__1694399916869e05b3 + * {
  3817.    --previous-section-background-hash: 0;
  3818.  }</style><style>
  3819.    #shopify-section-template--18347438506258__1694399916869e05b3 {
  3820.      
  3821.      
  3822.    }
  3823.  </style>
  3824.  
  3825.  <div class="section   section-blends section-full"><div id="shopify-block-AU2Ztamt6Y1dEMHRxT__junip_junip_reviews_9R3ARV" class="shopify-block shopify-app-block"><span
  3826.  class="junip-review-section "
  3827.  data-layout=list
  3828.  data-reviews-type=all
  3829.  data-show-summary=true
  3830.  data-reviews-count=10
  3831. >
  3832. </span>
  3833.  
  3834. </div></div>
  3835. </section>
  3836. <!-- BEGIN sections: footer-group -->
  3837. <footer id="shopify-section-sections--18347439456530__footer" class="shopify-section shopify-section-group-footer-group shopify-section--footer"><div class="footer">
  3838.  <div class="container">
  3839.    <div class="footer__wrapper"><div class="footer__block-list empty:hidden"><div class="footer__block footer__block--menu" ><p class="bold">Information Links</p><ul class="v-stack gap-3" role="list"><li>
  3840.                          <a href="/policies/privacy-policy" class="inline-block link-faded break-all">Privacy Policy</a>
  3841.                        </li><li>
  3842.                          <a href="/policies/refund-policy" class="inline-block link-faded break-all">Refund Policy</a>
  3843.                        </li><li>
  3844.                          <a href="/policies/terms-of-service" class="inline-block link-faded break-all">Terms of Service</a>
  3845.                        </li><li>
  3846.                          <a href="/policies/shipping-policy" class="inline-block link-faded break-all">Shipping Policy</a>
  3847.                        </li><li>
  3848.                          <a href="/pages/payment-policy" class="inline-block link-faded break-all">Payment Policy</a>
  3849.                        </li></ul>
  3850.                  </div><div class="footer__block footer__block--menu" ><p class="bold">Customer Area</p><ul class="v-stack gap-3" role="list"><li>
  3851.                          <a href="/" class="inline-block link-faded break-all">Home</a>
  3852.                        </li><li>
  3853.                          <a href="/collections" class="inline-block link-faded break-all">Shop Now</a>
  3854.                        </li><li>
  3855.                          <a href="/account/login" class="inline-block link-faded break-all">Login</a>
  3856.                        </li><li>
  3857.                          <a href="/account/register" class="inline-block link-faded break-all">Signup</a>
  3858.                        </li><li>
  3859.                          <a href="/cart" class="inline-block link-faded break-all">Cart</a>
  3860.                        </li></ul>
  3861.                  </div><div class="footer__block footer__block--text" ><p class="bold">Monac Attar</p><div class="prose text-subdued"><p><strong>Address: </strong>57 street Bayonne , New Jersey, 07002 <br/><br/><strong>Available Time:</strong> Always open, <br/><strong>Email Us: </strong><a href="mailto:info@thewhitemarket.co" title="mailto:info@thewhitemarket.co">Info@houseofmonac.com</a></p><p></p></div></div></div><div class="footer__aside empty:hidden"><div class="footer__aside-top"><ul class="social-media " role="list"><li>
  3862.      <a href="https://www.facebook.com/thewhitemaketusa" class="tap-area" target="_blank" rel="noopener" aria-label="Follow on Facebook"><svg role="presentation" focusable="false" width="27" height="27" class="icon icon-facebook" viewBox="0 0 24 24">
  3863.        <path fill-rule="evenodd" clip-rule="evenodd" d="M10.183 21.85v-8.868H7.2V9.526h2.983V6.982a4.17 4.17 0 0 1 4.44-4.572 22.33 22.33 0 0 1 2.667.144v3.084h-1.83a1.44 1.44 0 0 0-1.713 1.68v2.208h3.423l-.447 3.456h-2.97v8.868h-3.57Z" fill="currentColor"/>
  3864.      </svg></a>
  3865.    </li><li>
  3866.      <a href="https://instagram.com/house_of_monac?igshid=NzZlODBkYWE4Ng==" class="tap-area" target="_blank" rel="noopener" aria-label="Follow on Instagram"><svg role="presentation" focusable="false" width="27" height="27" class="icon icon-instagram" viewBox="0 0 24 24">
  3867.        <path fill-rule="evenodd" clip-rule="evenodd" d="M12 2.4c-2.607 0-2.934.011-3.958.058-1.022.046-1.72.209-2.33.446a4.705 4.705 0 0 0-1.7 1.107 4.706 4.706 0 0 0-1.108 1.7c-.237.611-.4 1.31-.446 2.331C2.41 9.066 2.4 9.392 2.4 12c0 2.607.011 2.934.058 3.958.046 1.022.209 1.72.446 2.33a4.706 4.706 0 0 0 1.107 1.7c.534.535 1.07.863 1.7 1.108.611.237 1.309.4 2.33.446 1.025.047 1.352.058 3.959.058s2.934-.011 3.958-.058c1.022-.046 1.72-.209 2.33-.446a4.706 4.706 0 0 0 1.7-1.107 4.706 4.706 0 0 0 1.108-1.7c.237-.611.4-1.31.446-2.33.047-1.025.058-1.352.058-3.959s-.011-2.934-.058-3.958c-.047-1.022-.209-1.72-.446-2.33a4.706 4.706 0 0 0-1.107-1.7 4.705 4.705 0 0 0-1.7-1.108c-.611-.237-1.31-.4-2.331-.446C14.934 2.41 14.608 2.4 12 2.4Zm0 1.73c2.563 0 2.867.01 3.88.056.935.042 1.443.199 1.782.33.448.174.768.382 1.104.718.336.336.544.656.718 1.104.131.338.287.847.33 1.783.046 1.012.056 1.316.056 3.879 0 2.563-.01 2.867-.056 3.88-.043.935-.199 1.444-.33 1.782a2.974 2.974 0 0 1-.719 1.104 2.974 2.974 0 0 1-1.103.718c-.339.131-.847.288-1.783.33-1.012.046-1.316.056-3.88.056-2.563 0-2.866-.01-3.878-.056-.936-.042-1.445-.199-1.783-.33a2.974 2.974 0 0 1-1.104-.718 2.974 2.974 0 0 1-.718-1.104c-.131-.338-.288-.847-.33-1.783-.047-1.012-.056-1.316-.056-3.879 0-2.563.01-2.867.056-3.88.042-.935.199-1.443.33-1.782.174-.448.382-.768.718-1.104a2.974 2.974 0 0 1 1.104-.718c.338-.131.847-.288 1.783-.33C9.133 4.14 9.437 4.13 12 4.13Zm0 11.07a3.2 3.2 0 1 1 0-6.4 3.2 3.2 0 0 1 0 6.4Zm0-8.13a4.93 4.93 0 1 0 0 9.86 4.93 4.93 0 0 0 0-9.86Zm6.276-.194a1.152 1.152 0 1 1-2.304 0 1.152 1.152 0 0 1 2.304 0Z" fill="currentColor"/>
  3868.      </svg></a>
  3869.    </li><li>
  3870.      <a href="https://www.youtube.com/channel/UCY57yz4vpL962gJ4sjbUJEw" class="tap-area" target="_blank" rel="noopener" aria-label="Follow on YouTube"><svg role="presentation" focusable="false" width="27" height="27" class="icon icon-youtube" viewBox="0 0 24 24">
  3871.        <path fill-rule="evenodd" clip-rule="evenodd" d="M20.44 5.243c.929.244 1.66.963 1.909 1.876.451 1.654.451 5.106.451 5.106s0 3.452-.451 5.106a2.681 2.681 0 0 1-1.91 1.876c-1.684.443-8.439.443-8.439.443s-6.754 0-8.439-.443a2.682 2.682 0 0 1-1.91-1.876c-.45-1.654-.45-5.106-.45-5.106s0-3.452.45-5.106a2.681 2.681 0 0 1 1.91-1.876c1.685-.443 8.44-.443 8.44-.443s6.754 0 8.438.443Zm-5.004 6.982L9.792 15.36V9.091l5.646 3.134Z" fill="currentColor"/>
  3872.      </svg></a>
  3873.    </li><li>
  3874.      <a href="https://www.tiktok.com/@monacattarfragrances?_t=8gen3HTA89z&_r=1" class="tap-area" target="_blank" rel="noopener" aria-label="Follow on TikTok"><svg role="presentation" focusable="false" width="27" height="27" class="icon icon-tiktok" viewBox="0 0 24 24">
  3875.        <path d="M20.027 10.168a5.125 5.125 0 0 1-4.76-2.294v7.893a5.833 5.833 0 1 1-5.834-5.834c.122 0 .241.011.361.019v2.874c-.12-.014-.237-.036-.36-.036a2.977 2.977 0 0 0 0 5.954c1.644 0 3.096-1.295 3.096-2.94L12.56 2.4h2.75a5.122 5.122 0 0 0 4.72 4.573v3.195" fill="currentColor"/>
  3876.      </svg></a>
  3877.    </li></ul></div><div class="footer__aside-bottom"><div class="footer__payment-icons h-stack wrap gap-2"><svg xmlns="http://www.w3.org/2000/svg" role="img" aria-labelledby="pi-american_express" viewBox="0 0 38 24" width="38" height="24"><title id="pi-american_express">American Express</title><path fill="#000" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3Z" opacity=".07"/><path fill="#006FCF" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32Z"/><path fill="#FFF" d="M22.012 19.936v-8.421L37 11.528v2.326l-1.732 1.852L37 17.573v2.375h-2.766l-1.47-1.622-1.46 1.628-9.292-.02Z"/><path fill="#006FCF" d="M23.013 19.012v-6.57h5.572v1.513h-3.768v1.028h3.678v1.488h-3.678v1.01h3.768v1.531h-5.572Z"/><path fill="#006FCF" d="m28.557 19.012 3.083-3.289-3.083-3.282h2.386l1.884 2.083 1.89-2.082H37v.051l-3.017 3.23L37 18.92v.093h-2.307l-1.917-2.103-1.898 2.104h-2.321Z"/><path fill="#FFF" d="M22.71 4.04h3.614l1.269 2.881V4.04h4.46l.77 2.159.771-2.159H37v8.421H19l3.71-8.421Z"/><path fill="#006FCF" d="m23.395 4.955-2.916 6.566h2l.55-1.315h2.98l.55 1.315h2.05l-2.904-6.566h-2.31Zm.25 3.777.875-2.09.873 2.09h-1.748Z"/><path fill="#006FCF" d="M28.581 11.52V4.953l2.811.01L32.84 9l1.456-4.046H37v6.565l-1.74.016v-4.51l-1.644 4.494h-1.59L30.35 7.01v4.51h-1.768Z"/></svg>
  3878. <svg version="1.1" xmlns="http://www.w3.org/2000/svg" role="img" x="0" y="0" width="38" height="24" viewBox="0 0 165.521 105.965" xml:space="preserve" aria-labelledby="pi-apple_pay"><title id="pi-apple_pay">Apple Pay</title><path fill="#000" d="M150.698 0H14.823c-.566 0-1.133 0-1.698.003-.477.004-.953.009-1.43.022-1.039.028-2.087.09-3.113.274a10.51 10.51 0 0 0-2.958.975 9.932 9.932 0 0 0-4.35 4.35 10.463 10.463 0 0 0-.975 2.96C.113 9.611.052 10.658.024 11.696a70.22 70.22 0 0 0-.022 1.43C0 13.69 0 14.256 0 14.823v76.318c0 .567 0 1.132.002 1.699.003.476.009.953.022 1.43.028 1.036.09 2.084.275 3.11a10.46 10.46 0 0 0 .974 2.96 9.897 9.897 0 0 0 1.83 2.52 9.874 9.874 0 0 0 2.52 1.83c.947.483 1.917.79 2.96.977 1.025.183 2.073.245 3.112.273.477.011.953.017 1.43.02.565.004 1.132.004 1.698.004h135.875c.565 0 1.132 0 1.697-.004.476-.002.952-.009 1.431-.02 1.037-.028 2.085-.09 3.113-.273a10.478 10.478 0 0 0 2.958-.977 9.955 9.955 0 0 0 4.35-4.35c.483-.947.789-1.917.974-2.96.186-1.026.246-2.074.274-3.11.013-.477.02-.954.022-1.43.004-.567.004-1.132.004-1.699V14.824c0-.567 0-1.133-.004-1.699a63.067 63.067 0 0 0-.022-1.429c-.028-1.038-.088-2.085-.274-3.112a10.4 10.4 0 0 0-.974-2.96 9.94 9.94 0 0 0-4.35-4.35A10.52 10.52 0 0 0 156.939.3c-1.028-.185-2.076-.246-3.113-.274a71.417 71.417 0 0 0-1.431-.022C151.83 0 151.263 0 150.698 0z" /><path fill="#FFF" d="M150.698 3.532l1.672.003c.452.003.905.008 1.36.02.793.022 1.719.065 2.583.22.75.135 1.38.34 1.984.648a6.392 6.392 0 0 1 2.804 2.807c.306.6.51 1.226.645 1.983.154.854.197 1.783.218 2.58.013.45.019.9.02 1.36.005.557.005 1.113.005 1.671v76.318c0 .558 0 1.114-.004 1.682-.002.45-.008.9-.02 1.35-.022.796-.065 1.725-.221 2.589a6.855 6.855 0 0 1-.645 1.975 6.397 6.397 0 0 1-2.808 2.807c-.6.306-1.228.511-1.971.645-.881.157-1.847.2-2.574.22-.457.01-.912.017-1.379.019-.555.004-1.113.004-1.669.004H14.801c-.55 0-1.1 0-1.66-.004a74.993 74.993 0 0 1-1.35-.018c-.744-.02-1.71-.064-2.584-.22a6.938 6.938 0 0 1-1.986-.65 6.337 6.337 0 0 1-1.622-1.18 6.355 6.355 0 0 1-1.178-1.623 6.935 6.935 0 0 1-.646-1.985c-.156-.863-.2-1.788-.22-2.578a66.088 66.088 0 0 1-.02-1.355l-.003-1.327V14.474l.002-1.325a66.7 66.7 0 0 1 .02-1.357c.022-.792.065-1.717.222-2.587a6.924 6.924 0 0 1 .646-1.981c.304-.598.7-1.144 1.18-1.623a6.386 6.386 0 0 1 1.624-1.18 6.96 6.96 0 0 1 1.98-.646c.865-.155 1.792-.198 2.586-.22.452-.012.905-.017 1.354-.02l1.677-.003h135.875" /><g><g><path fill="#000" d="M43.508 35.77c1.404-1.755 2.356-4.112 2.105-6.52-2.054.102-4.56 1.355-6.012 3.112-1.303 1.504-2.456 3.959-2.156 6.266 2.306.2 4.61-1.152 6.063-2.858" /><path fill="#000" d="M45.587 39.079c-3.35-.2-6.196 1.9-7.795 1.9-1.6 0-4.049-1.8-6.698-1.751-3.447.05-6.645 2-8.395 5.1-3.598 6.2-.95 15.4 2.55 20.45 1.699 2.5 3.747 5.25 6.445 5.151 2.55-.1 3.549-1.65 6.647-1.65 3.097 0 3.997 1.65 6.696 1.6 2.798-.05 4.548-2.5 6.247-5 1.95-2.85 2.747-5.6 2.797-5.75-.05-.05-5.396-2.101-5.446-8.251-.05-5.15 4.198-7.6 4.398-7.751-2.399-3.548-6.147-3.948-7.447-4.048" /></g><g><path fill="#000" d="M78.973 32.11c7.278 0 12.347 5.017 12.347 12.321 0 7.33-5.173 12.373-12.529 12.373h-8.058V69.62h-5.822V32.11h14.062zm-8.24 19.807h6.68c5.07 0 7.954-2.729 7.954-7.46 0-4.73-2.885-7.434-7.928-7.434h-6.706v14.894z" /><path fill="#000" d="M92.764 61.847c0-4.809 3.665-7.564 10.423-7.98l7.252-.442v-2.08c0-3.04-2.001-4.704-5.562-4.704-2.938 0-5.07 1.507-5.51 3.82h-5.252c.157-4.86 4.731-8.395 10.918-8.395 6.654 0 10.995 3.483 10.995 8.89v18.663h-5.38v-4.497h-.13c-1.534 2.937-4.914 4.782-8.579 4.782-5.406 0-9.175-3.222-9.175-8.057zm17.675-2.417v-2.106l-6.472.416c-3.64.234-5.536 1.585-5.536 3.95 0 2.288 1.975 3.77 5.068 3.77 3.95 0 6.94-2.522 6.94-6.03z" /><path fill="#000" d="M120.975 79.652v-4.496c.364.051 1.247.103 1.715.103 2.573 0 4.029-1.09 4.913-3.899l.52-1.663-9.852-27.293h6.082l6.863 22.146h.13l6.862-22.146h5.927l-10.216 28.67c-2.34 6.577-5.017 8.735-10.683 8.735-.442 0-1.872-.052-2.261-.157z" /></g></g></svg>
  3879. <svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-diners_club"><title id="pi-diners_club">Diners Club</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path d="M12 12v3.7c0 .3-.2.3-.5.2-1.9-.8-3-3.3-2.3-5.4.4-1.1 1.2-2 2.3-2.4.4-.2.5-.1.5.2V12zm2 0V8.3c0-.3 0-.3.3-.2 2.1.8 3.2 3.3 2.4 5.4-.4 1.1-1.2 2-2.3 2.4-.4.2-.4.1-.4-.2V12zm7.2-7H13c3.8 0 6.8 3.1 6.8 7s-3 7-6.8 7h8.2c3.8 0 6.8-3.1 6.8-7s-3-7-6.8-7z" fill="#3086C8"/></svg><svg viewBox="0 0 38 24" width="38" height="24" role="img" aria-labelledby="pi-discover" fill="none" xmlns="http://www.w3.org/2000/svg"><title id="pi-discover">Discover</title><path fill="#000" opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32z" fill="#fff"/><path d="M3.57 7.16H2v5.5h1.57c.83 0 1.43-.2 1.96-.63.63-.52 1-1.3 1-2.11-.01-1.63-1.22-2.76-2.96-2.76zm1.26 4.14c-.34.3-.77.44-1.47.44h-.29V8.1h.29c.69 0 1.11.12 1.47.44.37.33.59.84.59 1.37 0 .53-.22 1.06-.59 1.39zm2.19-4.14h1.07v5.5H7.02v-5.5zm3.69 2.11c-.64-.24-.83-.4-.83-.69 0-.35.34-.61.8-.61.32 0 .59.13.86.45l.56-.73c-.46-.4-1.01-.61-1.62-.61-.97 0-1.72.68-1.72 1.58 0 .76.35 1.15 1.35 1.51.42.15.63.25.74.31.21.14.32.34.32.57 0 .45-.35.78-.83.78-.51 0-.92-.26-1.17-.73l-.69.67c.49.73 1.09 1.05 1.9 1.05 1.11 0 1.9-.74 1.9-1.81.02-.89-.35-1.29-1.57-1.74zm1.92.65c0 1.62 1.27 2.87 2.9 2.87.46 0 .86-.09 1.34-.32v-1.26c-.43.43-.81.6-1.29.6-1.08 0-1.85-.78-1.85-1.9 0-1.06.79-1.89 1.8-1.89.51 0 .9.18 1.34.62V7.38c-.47-.24-.86-.34-1.32-.34-1.61 0-2.92 1.28-2.92 2.88zm12.76.94l-1.47-3.7h-1.17l2.33 5.64h.58l2.37-5.64h-1.16l-1.48 3.7zm3.13 1.8h3.04v-.93h-1.97v-1.48h1.9v-.93h-1.9V8.1h1.97v-.94h-3.04v5.5zm7.29-3.87c0-1.03-.71-1.62-1.95-1.62h-1.59v5.5h1.07v-2.21h.14l1.48 2.21h1.32l-1.73-2.32c.81-.17 1.26-.72 1.26-1.56zm-2.16.91h-.31V8.03h.33c.67 0 1.03.28 1.03.82 0 .55-.36.85-1.05.85z" fill="#231F20"/><path d="M20.16 12.86a2.931 2.931 0 100-5.862 2.931 2.931 0 000 5.862z" fill="url(#pi-paint0_linear)"/><path opacity=".65" d="M20.16 12.86a2.931 2.931 0 100-5.862 2.931 2.931 0 000 5.862z" fill="url(#pi-paint1_linear)"/><path d="M36.57 7.506c0-.1-.07-.15-.18-.15h-.16v.48h.12v-.19l.14.19h.14l-.16-.2c.06-.01.1-.06.1-.13zm-.2.07h-.02v-.13h.02c.06 0 .09.02.09.06 0 .05-.03.07-.09.07z" fill="#231F20"/><path d="M36.41 7.176c-.23 0-.42.19-.42.42 0 .23.19.42.42.42.23 0 .42-.19.42-.42 0-.23-.19-.42-.42-.42zm0 .77c-.18 0-.34-.15-.34-.35 0-.19.15-.35.34-.35.18 0 .33.16.33.35 0 .19-.15.35-.33.35z" fill="#231F20"/><path d="M37 12.984S27.09 19.873 8.976 23h26.023a2 2 0 002-1.984l.024-3.02L37 12.985z" fill="#F48120"/><defs><linearGradient id="pi-paint0_linear" x1="21.657" y1="12.275" x2="19.632" y2="9.104" gradientUnits="userSpaceOnUse"><stop stop-color="#F89F20"/><stop offset=".25" stop-color="#F79A20"/><stop offset=".533" stop-color="#F68D20"/><stop offset=".62" stop-color="#F58720"/><stop offset=".723" stop-color="#F48120"/><stop offset="1" stop-color="#F37521"/></linearGradient><linearGradient id="pi-paint1_linear" x1="21.338" y1="12.232" x2="18.378" y2="6.446" gradientUnits="userSpaceOnUse"><stop stop-color="#F58720"/><stop offset=".359" stop-color="#E16F27"/><stop offset=".703" stop-color="#D4602C"/><stop offset=".982" stop-color="#D05B2E"/></linearGradient></defs></svg><svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 38 24" width="38" height="24" aria-labelledby="pi-google_pay"><title id="pi-google_pay">Google Pay</title><path d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z" fill="#000" opacity=".07"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32" fill="#FFF"/><path d="M18.093 11.976v3.2h-1.018v-7.9h2.691a2.447 2.447 0 0 1 1.747.692 2.28 2.28 0 0 1 .11 3.224l-.11.116c-.47.447-1.098.69-1.747.674l-1.673-.006zm0-3.732v2.788h1.698c.377.012.741-.135 1.005-.404a1.391 1.391 0 0 0-1.005-2.354l-1.698-.03zm6.484 1.348c.65-.03 1.286.188 1.778.613.445.43.682 1.03.65 1.649v3.334h-.969v-.766h-.049a1.93 1.93 0 0 1-1.673.931 2.17 2.17 0 0 1-1.496-.533 1.667 1.667 0 0 1-.613-1.324 1.606 1.606 0 0 1 .613-1.336 2.746 2.746 0 0 1 1.698-.515c.517-.02 1.03.093 1.49.331v-.208a1.134 1.134 0 0 0-.417-.901 1.416 1.416 0 0 0-.98-.368 1.545 1.545 0 0 0-1.319.717l-.895-.564a2.488 2.488 0 0 1 2.182-1.06zM23.29 13.52a.79.79 0 0 0 .337.662c.223.176.5.269.785.263.429-.001.84-.17 1.146-.472.305-.286.478-.685.478-1.103a2.047 2.047 0 0 0-1.324-.374 1.716 1.716 0 0 0-1.03.294.883.883 0 0 0-.392.73zm9.286-3.75l-3.39 7.79h-1.048l1.281-2.728-2.224-5.062h1.103l1.612 3.885 1.569-3.885h1.097z" fill="#5F6368"/><path d="M13.986 11.284c0-.308-.024-.616-.073-.92h-4.29v1.747h2.451a2.096 2.096 0 0 1-.9 1.373v1.134h1.464a4.433 4.433 0 0 0 1.348-3.334z" fill="#4285F4"/><path d="M9.629 15.721a4.352 4.352 0 0 0 3.01-1.097l-1.466-1.14a2.752 2.752 0 0 1-4.094-1.44H5.577v1.17a4.53 4.53 0 0 0 4.052 2.507z" fill="#34A853"/><path d="M7.079 12.05a2.709 2.709 0 0 1 0-1.735v-1.17H5.577a4.505 4.505 0 0 0 0 4.075l1.502-1.17z" fill="#FBBC04"/><path d="M9.629 8.44a2.452 2.452 0 0 1 1.74.68l1.3-1.293a4.37 4.37 0 0 0-3.065-1.183 4.53 4.53 0 0 0-4.027 2.5l1.502 1.171a2.715 2.715 0 0 1 2.55-1.875z" fill="#EA4335"/></svg>
  3880. <svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-master"><title id="pi-master">Mastercard</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><circle fill="#EB001B" cx="15" cy="12" r="7"/><circle fill="#F79E1B" cx="23" cy="12" r="7"/><path fill="#FF5F00" d="M22 12c0-2.4-1.2-4.5-3-5.7-1.8 1.3-3 3.4-3 5.7s1.2 4.5 3 5.7c1.8-1.2 3-3.3 3-5.7z"/></svg><svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" width="38" height="24" role="img" aria-labelledby="pi-paypal"><title id="pi-paypal">PayPal</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path fill="#003087" d="M23.9 8.3c.2-1 0-1.7-.6-2.3-.6-.7-1.7-1-3.1-1h-4.1c-.3 0-.5.2-.6.5L14 15.6c0 .2.1.4.3.4H17l.4-3.4 1.8-2.2 4.7-2.1z"/><path fill="#3086C8" d="M23.9 8.3l-.2.2c-.5 2.8-2.2 3.8-4.6 3.8H18c-.3 0-.5.2-.6.5l-.6 3.9-.2 1c0 .2.1.4.3.4H19c.3 0 .5-.2.5-.4v-.1l.4-2.4v-.1c0-.2.3-.4.5-.4h.3c2.1 0 3.7-.8 4.1-3.2.2-1 .1-1.8-.4-2.4-.1-.5-.3-.7-.5-.8z"/><path fill="#012169" d="M23.3 8.1c-.1-.1-.2-.1-.3-.1-.1 0-.2 0-.3-.1-.3-.1-.7-.1-1.1-.1h-3c-.1 0-.2 0-.2.1-.2.1-.3.2-.3.4l-.7 4.4v.1c0-.3.3-.5.6-.5h1.3c2.5 0 4.1-1 4.6-3.8v-.2c-.1-.1-.3-.2-.5-.2h-.1z"/></svg><svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 38 24" width="38" height="24" aria-labelledby="pi-shopify_pay"><title id="pi-shopify_pay">Shop Pay</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z" fill="#000"/><path d="M35.889 0C37.05 0 38 .982 38 2.182v19.636c0 1.2-.95 2.182-2.111 2.182H2.11C.95 24 0 23.018 0 21.818V2.182C0 .982.95 0 2.111 0H35.89z" fill="#5A31F4"/><path d="M9.35 11.368c-1.017-.223-1.47-.31-1.47-.705 0-.372.306-.558.92-.558.54 0 .934.238 1.225.704a.079.079 0 00.104.03l1.146-.584a.082.082 0 00.032-.114c-.475-.831-1.353-1.286-2.51-1.286-1.52 0-2.464.755-2.464 1.956 0 1.275 1.15 1.597 2.17 1.82 1.02.222 1.474.31 1.474.705 0 .396-.332.582-.993.582-.612 0-1.065-.282-1.34-.83a.08.08 0 00-.107-.035l-1.143.57a.083.083 0 00-.036.111c.454.92 1.384 1.437 2.627 1.437 1.583 0 2.539-.742 2.539-1.98s-1.155-1.598-2.173-1.82v-.003zM15.49 8.855c-.65 0-1.224.232-1.636.646a.04.04 0 01-.069-.03v-2.64a.08.08 0 00-.08-.081H12.27a.08.08 0 00-.08.082v8.194a.08.08 0 00.08.082h1.433a.08.08 0 00.081-.082v-3.594c0-.695.528-1.227 1.239-1.227.71 0 1.226.521 1.226 1.227v3.594a.08.08 0 00.081.082h1.433a.08.08 0 00.081-.082v-3.594c0-1.51-.981-2.577-2.355-2.577zM20.753 8.62c-.778 0-1.507.24-2.03.588a.082.082 0 00-.027.109l.632 1.088a.08.08 0 00.11.03 2.5 2.5 0 011.318-.366c1.25 0 2.17.891 2.17 2.068 0 1.003-.736 1.745-1.669 1.745-.76 0-1.288-.446-1.288-1.077 0-.361.152-.657.548-.866a.08.08 0 00.032-.113l-.596-1.018a.08.08 0 00-.098-.035c-.799.299-1.359 1.018-1.359 1.984 0 1.46 1.152 2.55 2.76 2.55 1.877 0 3.227-1.313 3.227-3.195 0-2.018-1.57-3.492-3.73-3.492zM28.675 8.843c-.724 0-1.373.27-1.845.746-.026.027-.069.007-.069-.029v-.572a.08.08 0 00-.08-.082h-1.397a.08.08 0 00-.08.082v8.182a.08.08 0 00.08.081h1.433a.08.08 0 00.081-.081v-2.683c0-.036.043-.054.069-.03a2.6 2.6 0 001.808.7c1.682 0 2.993-1.373 2.993-3.157s-1.313-3.157-2.993-3.157zm-.271 4.929c-.956 0-1.681-.768-1.681-1.783s.723-1.783 1.681-1.783c.958 0 1.68.755 1.68 1.783 0 1.027-.713 1.783-1.681 1.783h.001z" fill="#fff"/></svg>
  3881. <svg viewBox="0 0 38 24" width="38" height="24" xmlns="http://www.w3.org/2000/svg" role="img" aria-labelledby="pi-venmo"><title id="pi-venmo">Venmo</title><g fill="none" fill-rule="evenodd"><rect fill-opacity=".07" fill="#000" width="38" height="24" rx="3"/><path fill="#3D95CE" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path d="M24.675 8.36c0 3.064-2.557 7.045-4.633 9.84h-4.74L13.4 6.57l4.151-.402 1.005 8.275c.94-1.566 2.099-4.025 2.099-5.702 0-.918-.154-1.543-.394-2.058l3.78-.783c.437.738.634 1.499.634 2.46z" fill="#FFF" fill-rule="nonzero"/></g></svg>
  3882. <svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-visa"><title id="pi-visa">Visa</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path d="M28.3 10.1H28c-.4 1-.7 1.5-1 3h1.9c-.3-1.5-.3-2.2-.6-3zm2.9 5.9h-1.7c-.1 0-.1 0-.2-.1l-.2-.9-.1-.2h-2.4c-.1 0-.2 0-.2.2l-.3.9c0 .1-.1.1-.1.1h-2.1l.2-.5L27 8.7c0-.5.3-.7.8-.7h1.5c.1 0 .2 0 .2.2l1.4 6.5c.1.4.2.7.2 1.1.1.1.1.1.1.2zm-13.4-.3l.4-1.8c.1 0 .2.1.2.1.7.3 1.4.5 2.1.4.2 0 .5-.1.7-.2.5-.2.5-.7.1-1.1-.2-.2-.5-.3-.8-.5-.4-.2-.8-.4-1.1-.7-1.2-1-.8-2.4-.1-3.1.6-.4.9-.8 1.7-.8 1.2 0 2.5 0 3.1.2h.1c-.1.6-.2 1.1-.4 1.7-.5-.2-1-.4-1.5-.4-.3 0-.6 0-.9.1-.2 0-.3.1-.4.2-.2.2-.2.5 0 .7l.5.4c.4.2.8.4 1.1.6.5.3 1 .8 1.1 1.4.2.9-.1 1.7-.9 2.3-.5.4-.7.6-1.4.6-1.4 0-2.5.1-3.4-.2-.1.2-.1.2-.2.1zm-3.5.3c.1-.7.1-.7.2-1 .5-2.2 1-4.5 1.4-6.7.1-.2.1-.3.3-.3H18c-.2 1.2-.4 2.1-.7 3.2-.3 1.5-.6 3-1 4.5 0 .2-.1.2-.3.2M5 8.2c0-.1.2-.2.3-.2h3.4c.5 0 .9.3 1 .8l.9 4.4c0 .1 0 .1.1.2 0-.1.1-.1.1-.1l2.1-5.1c-.1-.1 0-.2.1-.2h2.1c0 .1 0 .1-.1.2l-3.1 7.3c-.1.2-.1.3-.2.4-.1.1-.3 0-.5 0H9.7c-.1 0-.2 0-.2-.2L7.9 9.5c-.2-.2-.5-.5-.9-.6-.6-.3-1.7-.5-1.9-.5L5 8.2z" fill="#142688"/></svg></div><p class="footer__copyright text-sm text-subdued">© 2025, Monac Attar.All rights reserverd.</p>
  3883.        </div>
  3884.      </div>
  3885.    </div>
  3886.  </div>
  3887. </div>
  3888.  
  3889. </footer>
  3890. <!-- END sections: footer-group --></main>
  3891.  <script src="//reginapps.com/limitsify/javascripts/limitsify.min.js" type="text/javascript"></script>
  3892.  
  3893. <script>
  3894.  if (typeof limitsifyTheme === 'undefined') {
  3895.    var limitsifyTheme = new Limitsify.DefaultAdapter();
  3896.  
  3897.    var limitsifyClient = new Limitsify({
  3898.      apiToken: '419cdb0929022e8facc6be444624c3',
  3899.      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":"USD","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0},
  3900.      theme: limitsifyTheme,
  3901.      rememberButtonLabels: false,
  3902.      settings: 'color=black&dots=yes&extended=0&space=0'
  3903.    });
  3904.  }
  3905. </script>
  3906.  
  3907.        
  3908.  
  3909. <div id="shopify-block-AYU1uNGdwRjVma1l1U__16017602894386113438" class="shopify-block shopify-app-block"><!-- BEGIN app snippet: junip-store-key --><span
  3910.  class="junip-store-key"
  3911.  data-supports-theme-extensions="true"
  3912.  data-shopify-preview-mode="true"
  3913.  data-store-key="FFAaheFBF9QYGVgLZ1ZpMpPa"
  3914.  data-onsite-enabled="true"
  3915.  data-review-count-enabled="true"
  3916.  data-star-color="#FDB600"
  3917.  data-star-template-url="https://api.juniphq.com/images/star_options/1/template">
  3918. </span>
  3919. <!-- END app snippet -->
  3920.  
  3921.  
  3922. </div><div id="shopify-block-Aajk0TllTV2lJZTdoT__15683396631634586217" class="shopify-block shopify-app-block"><script
  3923.  id="chat-button-container"
  3924.  data-horizontal-position=bottom_right
  3925.  data-vertical-position=lowest
  3926.  data-icon=chat_bubble
  3927.  data-text=no_text
  3928.  data-color=#202a36
  3929.  data-secondary-color=#FFFFFF
  3930.  data-ternary-color=#6A6A6A
  3931.  
  3932.    data-greeting-message=%F0%9F%91%8B+Hi%2C+message+us+with+any+questions.+We%27re+happy+to+help%21
  3933.  
  3934.  data-domain=houseofmonac.com
  3935.  data-shop-domain=houseofmonac.com
  3936.  data-external-identifier=UON-sAMuqMWAWR5b-alyBIRixvI2I2XLqv1Y3jaLFOo
  3937.  
  3938. >
  3939. </script>
  3940.  
  3941.  
  3942. </div><div id="shopify-block-AaUY3TDlOK3J2UVAyQ__4015264832934714879" class="shopify-block shopify-app-block">
  3943. <link rel="stylesheet" href="https://cdn.shopify.com/extensions/08536f02-4ff7-4828-94b5-f5f1c7a8035a/ecomsend-popups-41/assets/style.css" media="print" onload="this.media='all'">
  3944.  
  3945. <script>
  3946.  function createEcomSendMainStyleEle() {
  3947.    const ele = document.createElement("link")
  3948.    ele.rel = "stylesheet"
  3949.    ele.href = 'https://cdn.shopify.com/extensions/08536f02-4ff7-4828-94b5-f5f1c7a8035a/ecomsend-popups-41/assets/style.css'
  3950.    ele.dataset.ecomsendTag = "load-alternate-css"
  3951.  
  3952.    return ele
  3953.  }
  3954.  
  3955.  if (window.EcomSendApps?.enableAlternateCSSLoading ?? false) {
  3956.    document.head.appendChild(createEcomSendMainStyleEle())
  3957.  }
  3958.  
  3959.  // 标记是否已经初始化,防止重复执行
  3960.  let isEcomSendInitialized = false;
  3961.  
  3962.  function createEcomSendMainJSEle() {
  3963.    if (isEcomSendInitialized) return;
  3964.    
  3965.    const ele = document.createElement("script")
  3966.    ele.defer = true
  3967.    ele.id = "ecomsend-main-js"
  3968.    ele.src = 'https://cdn.shopify.com/extensions/08536f02-4ff7-4828-94b5-f5f1c7a8035a/ecomsend-popups-41/assets/ecomsend.js'
  3969.  
  3970.    if (null === document.getElementById(ele.id)) {
  3971.      document.head.appendChild(ele)
  3972.      isEcomSendInitialized = true;
  3973.    }
  3974.  }
  3975.  
  3976.  // onload 回调函数
  3977.  function EcomsendOnMobxLoaded() {
  3978.    createEcomSendMainJSEle();
  3979.  }
  3980.  
  3981.  // 备用检查方案
  3982.  let checkCount = 0;
  3983.  const maxChecks = 15; // 最多检查15秒
  3984.  
  3985.  function EcomsendBackupCheck() {
  3986.    if (isEcomSendInitialized) return; // 已经初始化过了
  3987.    
  3988.    checkCount++;
  3989.    
  3990.    // 检查 React 和相关依赖是否已加载
  3991.    if (window.React && window.ReactDOM) {
  3992.      createEcomSendMainJSEle();
  3993.      return;
  3994.    }
  3995.    
  3996.    // 继续检查
  3997.    if (checkCount < maxChecks) {
  3998.      setTimeout(EcomsendBackupCheck, 1000);
  3999.    } else {
  4000.      createEcomSendMainJSEle();
  4001.    }
  4002.  }
  4003.  
  4004.  // 启动备用检查(延迟1秒开始,给onload机会先执行)
  4005.  setTimeout(EcomsendBackupCheck, 1000);
  4006. </script>
  4007.  
  4008. <style id="ecomsend-custom-style"></style>
  4009. <div id="ecomsend-widget"></div>
  4010.  
  4011.  
  4012. <!-- BEGIN app snippet: ecomsend-app --><script type="text/javascript">
  4013.  //EcomSend APPS COMMON JS CODE
  4014.  window.EcomSendApps = window.EcomSendApps || {}
  4015.  
  4016.  window.EcomSendApps.design_mode = false
  4017.  
  4018.  
  4019.  window.EcomSendApps.common = window.EcomSendApps.common || {}
  4020.  window.EcomSendApps.common.shop = {
  4021.    permanent_domain: 'the-white-market-2718.myshopify.com',
  4022.    currency: "USD",
  4023.    money_format: "${{amount}}",
  4024.    id: 71899971858,
  4025.  }
  4026.  
  4027.  
  4028.  
  4029.  
  4030.  
  4031.  window.EcomSendApps.common.template = 'index'
  4032. </script>
  4033. <!-- END app snippet -->
  4034.  
  4035.  
  4036. <script>window.shopLocale = 'en'</script>
  4037. <script defer="defer" src="https://cdn.shopify.com/extensions/08536f02-4ff7-4828-94b5-f5f1c7a8035a/ecomsend-popups-41/assets/react_react-dom.min.js"></script>
  4038. <script defer="defer" src="https://cdn.shopify.com/extensions/08536f02-4ff7-4828-94b5-f5f1c7a8035a/ecomsend-popups-41/assets/mobx_react-custom-roulette.min.js" onload="EcomsendOnMobxLoaded()"></script>
  4039.  
  4040.  
  4041.  
  4042. </div></body>
  4043. </html>
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda