<!doctype html>
<html class="no-js" lang="en" dir="ltr">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QWF0043TTT"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QWF0043TTT');
</script>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-KNXFV8HZ');</script>
<!-- End Google Tag Manager -->
<script>
/**
* Author: Md Hasanuzzamna
* Email: webhasan24@gmail.com
* Linkedin: https://linkedin.com/md-h
* Version: 2.0
* Last Update: 27 Dec 2023
*/
(function() {
class Ultimate_Shopify_DataLayer {
constructor() {
window.dataLayer = window.dataLayer || [];
// use a prefix of events name
this.eventPrefix = '';
//Keep the value false to get non-formatted product ID
this.formattedItemId = true;
// data schema
this.dataSchema = {
ecommerce: {
show: true
},
dynamicRemarketing: {
show: false,
business_vertical: 'retail'
}
}
// add to wishlist selectors
this.addToWishListSelectors = {
'addWishListIcon': '',
'gridItemSelector': '',
'productLinkSelector': 'a[href*="/products/"]'
}
// quick view selectors
this.quickViewSelector = {
'quickViewElement': '',
'gridItemSelector': '',
'productLinkSelector': 'a[href*="/products/"]'
}
// mini cart button selector
this.miniCartButton = [
'a[href="/cart"]',
];
this.miniCartAppersOn = 'click';
// begin checkout buttons/links selectors
this.beginCheckoutButtons = [
'input[name="checkout"]',
'button[name="checkout"]',
'a[href="/checkout"]',
'.additional-checkout-buttons',
];
// direct checkout button selector
this.shopifyDirectCheckoutButton = [
'.shopify-payment-button'
]
//Keep the value true if Add to Cart redirects to the cart page
this.isAddToCartRedirect = false;
// keep the value false if cart items increment/decrement/remove refresh page
this.isAjaxCartIncrementDecrement = false;
// Caution: Do not modify anything below this line, as it may result in it not functioning correctly.
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}
this.countryCode = "US";
this.collectData();
this.storeURL = "https://houseofmonac.com";
}
updateCart() {
fetch("/cart.js")
.then((response) => response.json())
.then((data) => {
this.cart = data;
});
}
debounce(delay) {
let timeoutId;
return function(func) {
const context = this;
const args = arguments;
clearTimeout(timeoutId);
timeoutId = setTimeout(function() {
func.apply(context, args);
}, delay);
};
}
collectData() {
this.customerData();
this.ajaxRequestData();
this.searchPageData();
this.miniCartData();
this.beginCheckoutData();
this.addToWishListData();
this.quickViewData();
this.formData();
this.phoneClickData();
this.emailClickData();
}
//logged in customer data
customerData() {
const currentUser = {};
if (currentUser.email) {
currentUser.hash_email = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
}
window.dataLayer = window.dataLayer || [];
dataLayer.push({
customer: currentUser
});
}
// add_to_cart, remove_from_cart, search
ajaxRequestData() {
const self = this;
// handle non-ajax add to cart
if(this.isAddToCartRedirect) {
document.addEventListener('submit', function(event) {
const addToCartForm = event.target.closest('form[action="/cart/add"]');
if(addToCartForm) {
event.preventDefault();
const formData = new FormData(addToCartForm);
fetch(window.Shopify.routes.root + 'cart/add.js', {
method: 'POST',
body: formData
})
.then(response => {
window.location.href = "/cart";
})
.catch((error) => {
console.error('Error:', error);
});
}
});
}
// fetch
let originalFetch = window.fetch;
let debounce = this.debounce(800);
window.fetch = function () {
return originalFetch.apply(this, arguments).then((response) => {
if (response.ok) {
let cloneResponse = response.clone();
let requestURL = arguments[0];
if(/.*\/search\/?.*\?.*q=.+/.test(requestURL) && !requestURL.includes('&requestFrom=uldt')) {
const queryString = requestURL.split('?')[1];
const urlParams = new URLSearchParams(queryString);
const search_term = urlParams.get("q");
debounce(function() {
fetch(`${self.storeURL}/search/suggest.json?q=${search_term}&resources[type]=product&requestFrom=uldt`)
.then(res => res.json())
.then(function(data) {
const products = data.resources.results.products;
if(products.length) {
const fetchRequests = products.map(product =>
fetch(`${self.storeURL}/${product.url.split('?')[0]}.js`)
.then(response => response.json())
.catch(error => console.error('Error fetching:', error))
);
Promise.all(fetchRequests)
.then(products => {
const items = products.map((product) => {
return {
product_id: product.id,
product_title: product.title,
variant_id: product.variants[0].id,
variant_title: product.variants[0].title,
vendor: product.vendor,
total_discount: 0,
final_price: product.price_min,
product_type: product.type,
quantity: 1
}
});
self.ecommerceDataLayer('search', {search_term, items});
})
}else {
self.ecommerceDataLayer('search', {search_term, items: []});
}
});
});
}
else if (requestURL.includes("/cart/add")) {
cloneResponse.text().then((text) => {
let data = JSON.parse(text);
if(data.items && Array.isArray(data.items)) {
data.items.forEach(function(item) {
self.ecommerceDataLayer('add_to_cart', {items: [item]});
})
} else {
self.ecommerceDataLayer('add_to_carts', {items: [data]});
}
self.updateCart();
});
}else if(requestURL.includes("/cart/change") || requestURL.includes("/cart/update")) {
cloneResponse.text().then((text) => {
let newCart = JSON.parse(text);
let newCartItems = newCart.items;
let oldCartItems = self.cart.items;
for(let i = 0; i < oldCartItems.length; i++) {
let item = oldCartItems[i];
let newItem = newCartItems.find(newItems => newItems.id === item.id);
if(newItem) {
if(newItem.quantity > item.quantity) {
// cart item increment
let quantity = (newItem.quantity - item.quantity);
let updatedItem = {...item, quantity}
self.ecommerceDataLayer('add_to_cart', {items: [updatedItem]});
self.updateCart();
}else if(newItem.quantity < item.quantity) {
// cart item decrement
let quantity = (item.quantity - newItem.quantity);
let updatedItem = {...item, quantity}
self.ecommerceDataLayer('remove_from_cart', {items: [updatedItem]});
self.updateCart();
}
}else {
self.ecommerceDataLayer('remove_from_cart', {items: [item]});
self.updateCart();
}
}
});
}
}
return response;
});
}
// end fetch
//xhr
var origXMLHttpRequest = XMLHttpRequest;
XMLHttpRequest = function() {
var requestURL;
var xhr = new origXMLHttpRequest();
var origOpen = xhr.open;
var origSend = xhr.send;
// Override the `open` function.
xhr.open = function(method, url) {
requestURL = url;
return origOpen.apply(this, arguments);
};
xhr.send = function() {
// Only proceed if the request URL matches what we're looking for.
if (requestURL.includes("/cart/add") || requestURL.includes("/cart/change") || /.*\/search\/?.*\?.*q=.+/.test(requestURL)) {
xhr.addEventListener('load', function() {
if (xhr.readyState === 4) {
if (xhr.status >= 200 && xhr.status < 400) {
if(/.*\/search\/?.*\?.*q=.+/.test(requestURL) && !requestURL.inclides('&requestFrom=uldt')) {
const queryString = requestURL.split('?')[1];
const urlParams = new URLSearchParams(queryString);
const search_term = urlParams.get("q");
debounce(function() {
fetch(`${self.storeURL}/search/suggest.json?q=${search_term}&resources[type]=product&requestFrom=uldt`)
.then(res => res.json())
.then(function(data) {
const products = data.resources.results.products;
if(products.length) {
const fetchRequests = products.map(product =>
fetch(`${self.storeURL}/${product.url.split('?')[0]}.js`)
.then(response => response.json())
.catch(error => console.error('Error fetching:', error))
);
Promise.all(fetchRequests)
.then(products => {
const items = products.map((product) => {
return {
product_id: product.id,
product_title: product.title,
variant_id: product.variants[0].id,
variant_title: product.variants[0].title,
vendor: product.vendor,
total_discount: 0,
final_price: product.price_min,
product_type: product.type,
quantity: 1
}
});
self.ecommerceDataLayer('search', {search_term, items});
})
}else {
self.ecommerceDataLayer('search', {search_term, items: []});
}
});
});
}
else if(requestURL.includes("/cart/add")) {
const item = JSON.parse(xhr.responseText);
self.ecommerceDataLayer('add_to_cart', {items: [item]});
self.updateCart();
}else if(requestURL.includes("/cart/change")) {
const newCart = JSON.parse(xhr.responseText);
const newCartItems = newCart.items;
let oldCartItems = self.cart.items;
for(let i = 0; i < oldCartItems.length; i++) {
let item = oldCartItems[i];
let newItem = newCartItems.find(newItems => newItems.id === item.id);
if(newItem) {
if(newItem.quantity > item.quantity) {
// cart item increment
let quantity = (newItem.quantity - item.quantity);
let updatedItem = {...item, quantity}
self.ecommerceDataLayer('add_to_cart', {items: [updatedItem]});
self.updateCart();
}else if(newItem.quantity < item.quantity) {
// cart item decrement
let quantity = (item.quantity - newItem.quantity);
let updatedItem = {...item, quantity}
self.ecommerceDataLayer('remove_from_cart', {items: [updatedItem]});
self.updateCart();
}
}else {
self.ecommerceDataLayer('remove_from_cart', {items: [item]});
self.updateCart();
}
}
}
}
}
});
}
return origSend.apply(this, arguments);
};
return xhr;
};
//end xhr
}
// search event from search page
searchPageData() {
const self = this;
let pageUrl = window.location.href;
if(/.+\/search\?.*\&?q=.+/.test(pageUrl)) {
const queryString = pageUrl.split('?')[1];
const urlParams = new URLSearchParams(queryString);
const search_term = urlParams.get("q");
fetch(`https://houseofmonac.com/search/suggest.json?q=${search_term}&resources[type]=product&requestFrom=uldt`)
.then(res => res.json())
.then(function(data) {
const products = data.resources.results.products;
if(products.length) {
const fetchRequests = products.map(product =>
fetch(`${self.storeURL}/${product.url.split('?')[0]}.js`)
.then(response => response.json())
.catch(error => console.error('Error fetching:', error))
);
Promise.all(fetchRequests)
.then(products => {
const items = products.map((product) => {
return {
product_id: product.id,
product_title: product.title,
variant_id: product.variants[0].id,
variant_title: product.variants[0].title,
vendor: product.vendor,
total_discount: 0,
final_price: product.price_min,
product_type: product.type,
quantity: 1
}
});
self.ecommerceDataLayer('search', {search_term, items});
});
}else {
self.ecommerceDataLayer('search', {search_term, items: []});
}
});
}
}
// view_cart
miniCartData() {
if(this.miniCartButton.length) {
let self = this;
if(this.miniCartAppersOn === 'hover') {
this.miniCartAppersOn = 'mouseenter';
}
this.miniCartButton.forEach((selector) => {
let miniCartButton = document.querySelector(selector);
if(miniCartButton) {
miniCartButton.addEventListener(self.miniCartAppersOn, () => {
self.ecommerceDataLayer('view_cart', self.cart);
});
}
});
}
}
// begin_checkout
beginCheckoutData() {
let self = this;
document.addEventListener('pointerdown', () => {
let targetElement = event.target.closest(self.beginCheckoutButtons.join(', '));
if(targetElement) {
self.ecommerceDataLayer('begin_checkout', self.cart);
}
});
}
// view_cart, add_to_cart, remove_from_cart
viewCartPageData() {
this.ecommerceDataLayer('view_cart', this.cart);
//if cart quantity chagne reload page
if(!this.isAjaxCartIncrementDecrement) {
const self = this;
document.addEventListener('pointerdown', (event) => {
const target = event.target.closest('a[href*="/cart/change?"]');
if(target) {
const linkUrl = target.getAttribute('href');
const queryString = linkUrl.split("?")[1];
const urlParams = new URLSearchParams(queryString);
const newQuantity = urlParams.get("quantity");
const line = urlParams.get("line");
const cart_id = urlParams.get("id");
if(newQuantity && (line || cart_id)) {
let item = line ? {...self.cart.items[line - 1]} : self.cart.items.find(item => item.key === cart_id);
let event = 'add_to_cart';
if(newQuantity < item.quantity) {
event = 'remove_from_cart';
}
let quantity = Math.abs(newQuantity - item.quantity);
item['quantity'] = quantity;
self.ecommerceDataLayer(event, {items: [item]});
}
}
});
}
}
productSinglePage() {
}
collectionsPageData() {
var ecommerce = {
'items': [
]
};
ecommerce['item_list_id'] = null
ecommerce['item_list_name'] = null
this.ecommerceDataLayer('view_item_list', ecommerce);
}
// add to wishlist
addToWishListData() {
if(this.addToWishListSelectors && this.addToWishListSelectors.addWishListIcon) {
const self = this;
document.addEventListener('pointerdown', (event) => {
let target = event.target;
if(target.closest(self.addToWishListSelectors.addWishListIcon)) {
let pageULR = window.location.href.replace(/\?.+/, '');
let requestURL = undefined;
if(/\/products\/[^/]+$/.test(pageULR)) {
requestURL = pageULR;
} else if(self.addToWishListSelectors.gridItemSelector && self.addToWishListSelectors.productLinkSelector) {
let itemElement = target.closest(self.addToWishListSelectors.gridItemSelector);
if(itemElement) {
let linkElement = itemElement.querySelector(self.addToWishListSelectors.productLinkSelector);
if(linkElement) {
let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
if(link && /\/products\/[^/]+$/.test(link)) {
requestURL = link;
}
}
}
}
if(requestURL) {
fetch(requestURL + '.json')
.then(res => res.json())
.then(result => {
let data = result.product;
if(data) {
let dataLayerData = {
product_id: data.id,
variant_id: data.variants[0].id,
product_title: data.title,
quantity: 1,
final_price: parseFloat(data.variants[0].price) * 100,
total_discount: 0,
product_type: data.product_type,
vendor: data.vendor,
variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
sku: data.variants[0].sku,
}
self.ecommerceDataLayer('add_to_wishlist', {items: [dataLayerData]});
}
});
}
}
});
}
}
quickViewData() {
if(this.quickViewSelector.quickViewElement && this.quickViewSelector.gridItemSelector && this.quickViewSelector.productLinkSelector) {
const self = this;
document.addEventListener('pointerdown', (event) => {
let target = event.target;
if(target.closest(self.quickViewSelector.quickViewElement)) {
let requestURL = undefined;
let itemElement = target.closest(this.quickViewSelector.gridItemSelector );
if(itemElement) {
let linkElement = itemElement.querySelector(self.quickViewSelector.productLinkSelector);
if(linkElement) {
let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
if(link && /\/products\/[^/]+$/.test(link)) {
requestURL = link;
}
}
}
if(requestURL) {
fetch(requestURL + '.json')
.then(res => res.json())
.then(result => {
let data = result.product;
if(data) {
let dataLayerData = {
product_id: data.id,
variant_id: data.variants[0].id,
product_title: data.title,
quantity: 1,
final_price: parseFloat(data.variants[0].price) * 100,
total_discount: 0,
product_type: data.product_type,
vendor: data.vendor,
variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
sku: data.variants[0].sku,
}
self.ecommerceDataLayer('view_item', {items: [dataLayerData]});
self.quickViewVariants = data.variants;
self.quickViewedItem = dataLayerData;
}
});
}
}
});
if(this.shopifyDirectCheckoutButton.length) {
let self = this;
document.addEventListener('pointerdown', (event) => {
let target = event.target;
let checkoutButton = event.target.closest(this.shopifyDirectCheckoutButton.join(', '));
if(self.quickViewVariants && self.quickViewedItem && self.quickViewVariants.length && checkoutButton) {
let checkoutForm = checkoutButton.closest('form[action*="/cart/add"]');
if(checkoutForm) {
let quantity = 1;
let varientInput = checkoutForm.querySelector('input[name="id"]');
let quantitySelector = checkoutForm.getAttribute('id');
if(quantitySelector) {
let quentityInput = document.querySelector('input[name="quantity"][form="'+quantitySelector+'"]');
if(quentityInput) {
quantity = +quentityInput.value;
}
}
if(varientInput) {
let variant_id = parseInt(varientInput.value);
if(variant_id) {
const variant = self.quickViewVariants.find(item => item.id === +variant_id);
if(variant && self.quickViewedItem) {
self.quickViewedItem['variant_id'] = variant_id;
self.quickViewedItem['variant_title'] = variant.title;
self.quickViewedItem['final_price'] = parseFloat(variant.price) * 100;
self.quickViewedItem['quantity'] = quantity;
self.ecommerceDataLayer('add_to_cart', {items: [self.quickViewedItem]});
self.ecommerceDataLayer('begin_checkout', {items: [self.quickViewedItem]});
}
}
}
}
}
});
}
}
}
// all ecommerce events
ecommerceDataLayer(event, data) {
const self = this;
dataLayer.push({ 'ecommerce': null });
const dataLayerData = {
"event": this.eventPrefix + event,
'ecommerce': {
'currency': this.cart.currency,
'items': data.items.map((item, index) => {
const dataLayerItem = {
'index': index,
'item_id': this.formattedItemId ? `shopify_${this.countryCode}_${item.product_id}_${item.variant_id}` : item.product_id.toString(),
'product_id': item.product_id.toString(),
'variant_id': item.variant_id.toString(),
'item_name': item.product_title,
'quantity': item.quantity,
'price': +((item.final_price / 100).toFixed(2)),
'discount': item.total_discount ? +((item.total_discount / 100).toFixed(2)) : 0
}
if(item.product_type) {
dataLayerItem['item_category'] = item.product_type;
}
if(item.vendor) {
dataLayerItem['item_brand'] = item.vendor;
}
if(item.variant_title && item.variant_title !== 'Default Title') {
dataLayerItem['item_variant'] = item.variant_title;
}
if(item.sku) {
dataLayerItem['sku'] = item.sku;
}
if(item.item_list_name) {
dataLayerItem['item_list_name'] = item.item_list_name;
}
if(item.item_list_id) {
dataLayerItem['item_list_id'] = item.item_list_id.toString()
}
return dataLayerItem;
})
}
}
if(data.total_price !== undefined) {
dataLayerData['ecommerce']['value'] = +((data.total_price / 100).toFixed(2));
} else {
dataLayerData['ecommerce']['value'] = +(dataLayerData['ecommerce']['items'].reduce((total, item) => total + item.price, 0)).toFixed(2);
}
if(data.item_list_id) {
dataLayerData['ecommerce']['item_list_id'] = data.item_list_id;
}
if(data.item_list_name) {
dataLayerData['ecommerce']['item_list_name'] = data.item_list_name;
}
if(data.search_term) {
dataLayerData['search_term'] = data.search_term;
}
if(self.dataSchema.dynamicRemarketing && self.dataSchema.dynamicRemarketing.show) {
dataLayer.push({ 'dynamicRemarketing': null });
dataLayerData['dynamicRemarketing'] = {
value: dataLayerData.ecommerce.value,
items: dataLayerData.ecommerce.items.map(item => ({id: item.item_id, google_business_vertical: self.dataSchema.dynamicRemarketing.business_vertical}))
}
}
if(!self.dataSchema.ecommerce || !self.dataSchema.ecommerce.show) {
delete dataLayerData['ecommerce'];
}
dataLayer.push(dataLayerData);
}
// contact form submit & newsletters signup
formData() {
const self = this;
document.addEventListener('submit', function(event) {
let targetForm = event.target.closest('form[action^="/contact"]');
if(targetForm) {
const formData = {
form_location: window.location.href,
form_id: targetForm.getAttribute('id'),
form_classes: targetForm.getAttribute('class')
};
let formType = targetForm.querySelector('input[name="form_type"]');
let inputs = targetForm.querySelectorAll("input:not([type=hidden]):not([type=submit]), textarea, select");
inputs.forEach(function(input) {
var inputName = input.name;
var inputValue = input.value;
if (inputName && inputValue) {
var matches = inputName.match(/\[(.*?)\]/);
if (matches && matches.length > 1) {
var fieldName = matches[1];
formData[fieldName] = input.value;
}
}
});
if(formType && formType.value === 'customer') {
dataLayer.push({ event: self.eventPrefix + 'newsletter_signup', ...formData});
} else if(formType && formType.value === 'contact') {
dataLayer.push({ event: self.eventPrefix + 'contact_form_submit', ...formData});
}
}
});
}
// phone_number_click event
phoneClickData() {
const self = this;
document.addEventListener('click', function(event) {
let target = event.target.closest('a[href^="tel:"]');
if(target) {
let phone_number = target.getAttribute('href').replace('tel:', '');
dataLayer.push({
event: self.eventPrefix + 'phone_number_click',
page_location: window.location.href,
link_classes: target.getAttribute('class'),
link_id: target.getAttribute('id'),
phone_number
})
}
});
}
// email_click event
emailClickData() {
const self = this;
document.addEventListener('click', function(event) {
let target = event.target.closest('a[href^="mailto:"]');
if(target) {
let email_address = target.getAttribute('href').replace('mailto:', '');
dataLayer.push({
event: self.eventPrefix + 'email_click',
page_location: window.location.href,
link_classes: target.getAttribute('class'),
link_id: target.getAttribute('id'),
email_address
})
}
});
}
}
// end Ultimate_Shopify_DataLayer
document.addEventListener('DOMContentLoaded', function() {
try{
new Ultimate_Shopify_DataLayer();
}catch(error) {
console.log(error);
}
});
})();
</script>
<!-- Meta Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '486179761752509');
fbq('track', 'PageView');
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://houseofmonac.com/"
},{
"@type": "ListItem",
"position": 2,
"name": "Best Sellers",
"item": "https://houseofmonac.com/collections/best-sellers"
}]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "HouseofMonac",
"alternateName": "HouseofMonac",
"url": "https://houseofmonac.com/",
"logo": "https://houseofmonac.com/cdn/shop/files/monac_Attar_png-01_430x_8ffa7d40-f382-426c-b38c-f3eddca63588.png?v=1713355635&width=410",
"sameAs": [
"https://www.facebook.com/thewhitemaketusa",
"https://instagram.com/house_of_monac?igshid=NzZlODBkYWE4Ng==",
"https://www.youtube.com/channel/UCY57yz4vpL962gJ4sjbUJEw"
]
}
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=486179761752509&ev=PageView&noscript=1"
/></noscript>
<!-- End Meta Pixel Code -->
<meta name="google-site-verification" content="EMDM2oSOX0mixvY9nrm90StcC86k5eyNaZRjC0fRfCE" />
<meta name="facebook-domain-verification" content="sedji3j5urb7lzl3lo9hanv8bj7vkx" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, height=device-height, minimum-scale=1.0, maximum-scale=1.0">
<meta name="theme-color" content="#ffffff">
<title>Shop Dupe Fragrances, Lotions, Body Wash & Candles</title><meta name="description" content="Luxury scents for less! Shop inspired fragrances, lotions, candles & more. Smell amazing & 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">
<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">
<link rel="preconnect" href="https://fonts.shopifycdn.com" crossorigin>
<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">
<link rel="modulepreload" href="//houseofmonac.com/cdn/shop/t/5/assets/theme.js?v=49892170302731136491697768327" as="script">
<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">
<meta property="og:title" content="Shop Dupe Fragrances, Lotions, Body Wash & 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">
<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">
<meta property="og:image:width" content="410">
<meta property="og:image:height" content="290"><meta property="og:description" content="Luxury scents for less! Shop inspired fragrances, lotions, candles & more. Smell amazing & save—see why our customers keep coming back"><meta property="og:url" content="https://houseofmonac.com/">
<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 & Candles">
<meta name="twitter:description" content="Luxury scents for less! Shop inspired fragrances, lotions, candles & more. Smell amazing & 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">
<meta name="twitter:image:alt" content="">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://houseofmonac.com"
}]
}
</script>
<script type="application/ld+json">
[
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Monac Attar",
"url": "https:\/\/houseofmonac.com",
"potentialAction": {
"@type": "SearchAction",
"target": "https:\/\/houseofmonac.com\/search?q={search_term_string}",
"query-input": "required name=search_term_string"
}
},
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Monac Attar","logo": "https:\/\/houseofmonac.com\/cdn\/shop\/files\/monac_Attar_png-01.webp?v=1743702345\u0026width=410","url": "https:\/\/houseofmonac.com"
}
]
</script><style>/* Typography (heading) */
@font-face {
font-family: Futura;
font-weight: 600;
font-style: normal;
font-display: fallback;
src: url("//houseofmonac.com/cdn/fonts/futura/futura_n6.bbe2e25d5b96d13ff36b242171a3d07cf5a60170.woff2?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=205c43b8da48e165ac907fc5ee6842c4662a478f44f389209d0a546bad340c83") format("woff2"),
url("//houseofmonac.com/cdn/fonts/futura/futura_n6.66fa8f5c3c4b2c7c04809ecefe751450fa59d995.woff?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=3999d639381681281f280248c49c6333b42c358f2c6665a442e6ff2fd6f8aeea") format("woff");
}
@font-face {
font-family: Futura;
font-weight: 600;
font-style: oblique;
font-display: fallback;
src: url("//houseofmonac.com/cdn/fonts/futura/futura_o6.2978dbd38bd9b3e8b72ee3299cd940da2900eb72.woff2?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=cd6bd83406cb496286a376bb506f9b7d183516a2ffeb6f5b3ddb84777345496d") format("woff2"),
url("//houseofmonac.com/cdn/fonts/futura/futura_o6.bbc5bc6e7a675b3182e4866da9f9643bb3821261.woff?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=5a9f00afbd6d8bf5e4a11233f5e662bc228224b9d7dff21d85c866db484b08ab") format("woff");
}
/* Typography (body) */
@font-face {
font-family: Futura;
font-weight: 400;
font-style: normal;
font-display: fallback;
src: url("//houseofmonac.com/cdn/fonts/futura/futura_n4.df36ce3d9db534a4d7947f4aa825495ed740e410.woff2?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=422bab9319bbfdc4fb3cfbea1e3edf63b112f94c7b56684854e939f5c0c39699") format("woff2"),
url("//houseofmonac.com/cdn/fonts/futura/futura_n4.6bce24beb4ba1ff4ddeb20f7cd6e2fa513a3d6ec.woff?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=1d4e021be27fa38abac9b5d806005abf23e1cb012ce814bfebb6aa2661d20e69") format("woff");
}
@font-face {
font-family: Futura;
font-weight: 400;
font-style: oblique;
font-display: fallback;
src: url("//houseofmonac.com/cdn/fonts/futura/futura_o4.9747e2e6ed2f11b894984527c927b42234e48815.woff2?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=faaa5185cb3df2f13ec8adada7fe1a9e8c4bab20fe717b25ad064e4f24446919") format("woff2"),
url("//houseofmonac.com/cdn/fonts/futura/futura_o4.d5edc6b1d9a050bbe0beb9093d73b883bf18c6c1.woff?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=cdc7d5ffc576aefdca65899b020646796fbfa7111a29a9585b2527bd34429192") format("woff");
}
@font-face {
font-family: Futura;
font-weight: 700;
font-style: normal;
font-display: fallback;
src: url("//houseofmonac.com/cdn/fonts/futura/futura_n7.153f8fffad8e901382179997bbb87aa7a5ff33b3.woff2?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=7debade8d27e1da6fc0a2760c5816c26e81bc4ebbe647a0049ddd141ae1bfd81") format("woff2"),
url("//houseofmonac.com/cdn/fonts/futura/futura_n7.711e9243b3eccc2745ecf4731eba61651a122376.woff?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=4cfd13ab4f4dbc263ff9093478d7f26f3fa6fe3f5812e4374bc6a151c9a7ffe3") format("woff");
}
@font-face {
font-family: Futura;
font-weight: 700;
font-style: oblique;
font-display: fallback;
src: url("//houseofmonac.com/cdn/fonts/futura/futura_o7.ece1472e1fefbb598873ba72dc2bfa2e050347c1.woff2?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=11706f57fc98cd992069ff56b56796255a7878deb382a906bbdf6c3792b6d644") format("woff2"),
url("//houseofmonac.com/cdn/fonts/futura/futura_o7.7028291332320745f0217c346c800da7522a22b2.woff?h1=dGhlLXdoaXRlLW1hcmtldC0yNzE4LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=aG91c2VvZm1vbmFjLmNvbQ&h3=YWNjb3VudC5ob3VzZW9mbW9uYWMuY29t&hmac=e0522baa9e147298f6cae60d7726415b8f5f18332fa30a46c9d25740f54f437b") format("woff");
}
:root {
/**
* ---------------------------------------------------------------------
* SPACING VARIABLES
*
* We are using a spacing inspired from frameworks like Tailwind CSS.
* ---------------------------------------------------------------------
*/
--spacing-0-5: 0.125rem; /* 2px */
--spacing-1: 0.25rem; /* 4px */
--spacing-1-5: 0.375rem; /* 6px */
--spacing-2: 0.5rem; /* 8px */
--spacing-2-5: 0.625rem; /* 10px */
--spacing-3: 0.75rem; /* 12px */
--spacing-3-5: 0.875rem; /* 14px */
--spacing-4: 1rem; /* 16px */
--spacing-4-5: 1.125rem; /* 18px */
--spacing-5: 1.25rem; /* 20px */
--spacing-5-5: 1.375rem; /* 22px */
--spacing-6: 1.5rem; /* 24px */
--spacing-6-5: 1.625rem; /* 26px */
--spacing-7: 1.75rem; /* 28px */
--spacing-7-5: 1.875rem; /* 30px */
--spacing-8: 2rem; /* 32px */
--spacing-8-5: 2.125rem; /* 34px */
--spacing-9: 2.25rem; /* 36px */
--spacing-9-5: 2.375rem; /* 38px */
--spacing-10: 2.5rem; /* 40px */
--spacing-11: 2.75rem; /* 44px */
--spacing-12: 3rem; /* 48px */
--spacing-14: 3.5rem; /* 56px */
--spacing-16: 4rem; /* 64px */
--spacing-18: 4.5rem; /* 72px */
--spacing-20: 5rem; /* 80px */
--spacing-24: 6rem; /* 96px */
--spacing-28: 7rem; /* 112px */
--spacing-32: 8rem; /* 128px */
--spacing-36: 9rem; /* 144px */
--spacing-40: 10rem; /* 160px */
--spacing-44: 11rem; /* 176px */
--spacing-48: 12rem; /* 192px */
--spacing-52: 13rem; /* 208px */
--spacing-56: 14rem; /* 224px */
--spacing-60: 15rem; /* 240px */
--spacing-64: 16rem; /* 256px */
--spacing-72: 18rem; /* 288px */
--spacing-80: 20rem; /* 320px */
--spacing-96: 24rem; /* 384px */
/* Container */
--container-max-width: 1800px;
--container-narrow-max-width: 1550px;
--container-gutter: var(--spacing-5);
--section-outer-spacing-block: var(--spacing-10);
--section-inner-max-spacing-block: var(--spacing-9);
--section-inner-spacing-inline: var(--container-gutter);
--section-stack-spacing-block: var(--spacing-8);
/* Grid gutter */
--grid-gutter: var(--spacing-5);
/* Product list settings */
--product-list-row-gap: var(--spacing-8);
--product-list-column-gap: var(--grid-gutter);
/* Form settings */
--input-gap: var(--spacing-2);
--input-height: 2.625rem;
--input-padding-inline: var(--spacing-4);
/* Other sizes */
--sticky-area-height: calc(var(--sticky-announcement-bar-enabled, 0) * var(--announcement-bar-height, 0px) + var(--sticky-header-enabled, 0) * var(--header-height, 0px));
/* RTL support */
--transform-logical-flip: 1;
--transform-origin-start: left;
--transform-origin-end: right;
/**
* ---------------------------------------------------------------------
* TYPOGRAPHY
* ---------------------------------------------------------------------
*/
/* Font properties */
--heading-font-family: Futura, sans-serif;
--heading-font-weight: 600;
--heading-font-style: normal;
--heading-text-transform: normal;
--heading-letter-spacing: -0.02em;
--text-font-family: Futura, sans-serif;
--text-font-weight: 400;
--text-font-style: normal;
--text-letter-spacing: 0.0em;
/* Font sizes */
--text-h0: 2.75rem;
--text-h1: 2rem;
--text-h2: 1.75rem;
--text-h3: 1.375rem;
--text-h4: 1.125rem;
--text-h5: 1.125rem;
--text-h6: 1rem;
--text-xs: 0.6875rem;
--text-sm: 0.75rem;
--text-base: 0.875rem;
--text-lg: 1.125rem;
/**
* ---------------------------------------------------------------------
* COLORS
* ---------------------------------------------------------------------
*/
/* Color settings */--accent: 26 26 26;
--text-primary: 26 26 26;
--background-primary: 255 255 255;
--dialog-background: 255 255 255;
--border-color: var(--text-color, var(--text-primary)) / 0.12;
/* Button colors */
--button-background-primary: 26 26 26;
--button-text-primary: 255 255 255;
--button-background-secondary: 240 196 23;
--button-text-secondary: 26 26 26;
/* Status colors */
--success-background: 224 244 232;
--success-text: 0 163 65;
--warning-background: 255 246 233;
--warning-text: 255 183 74;
--error-background: 254 231 231;
--error-text: 248 58 58;
/* Product colors */
--on-sale-text: 248 58 58;
--on-sale-badge-background: 248 58 58;
--on-sale-badge-text: 255 255 255;
--sold-out-badge-background: 0 0 0;
--sold-out-badge-text: 255 255 255;
--primary-badge-background: 128 60 238;
--primary-badge-text: 255 255 255;
--star-color: 255 183 74;
--product-card-background: 255 255 255;
--product-card-text: 26 26 26;
/* Header colors */
--header-background: 255 255 255;
--header-text: 26 26 26;
/* Footer colors */
--footer-background: 0 0 0;
--footer-text: 255 255 255;
/* Rounded variables (used for border radius) */
--rounded-xs: 0.25rem;
--rounded-sm: 0.375rem;
--rounded: 0.75rem;
--rounded-lg: 1.5rem;
--rounded-full: 9999px;
--rounded-button: 0.0rem;
--rounded-input: 0.5rem;
/* Box shadow */
--shadow-sm: 0 2px 8px rgb(var(--text-primary) / 0.1);
--shadow: 0 5px 15px rgb(var(--text-primary) / 0.1);
--shadow-md: 0 5px 30px rgb(var(--text-primary) / 0.1);
--shadow-block: 0px 18px 50px rgb(var(--text-primary) / 0.1);
/**
* ---------------------------------------------------------------------
* OTHER
* ---------------------------------------------------------------------
*/
--cursor-close-svg-url: url(//houseofmonac.com/cdn/shop/t/5/assets/cursor-close.svg?v=147174565022153725511679774310);
--cursor-zoom-in-svg-url: url(//houseofmonac.com/cdn/shop/t/5/assets/cursor-zoom-in.svg?v=154953035094101115921679774310);
--cursor-zoom-out-svg-url: url(//houseofmonac.com/cdn/shop/t/5/assets/cursor-zoom-out.svg?v=16155520337305705181679774310);
--checkmark-svg-url: url(//houseofmonac.com/cdn/shop/t/5/assets/checkmark.svg?v=77552481021870063511679774310);
}
[dir="rtl"]:root {
/* RTL support */
--transform-logical-flip: -1;
--transform-origin-start: right;
--transform-origin-end: left;
}
@media screen and (min-width: 700px) {
:root {
/* Typography (font size) */
--text-h0: 3.5rem;
--text-h1: 2.5rem;
--text-h2: 2rem;
--text-h3: 1.625rem;
--text-h4: 1.375rem;
--text-h5: 1.125rem;
--text-h6: 1rem;
--text-xs: 0.75rem;
--text-sm: 0.875rem;
--text-base: 1.0rem;
--text-lg: 1.25rem;
/* Spacing */
--container-gutter: 2rem;
--section-outer-spacing-block: var(--spacing-14);
--section-inner-max-spacing-block: var(--spacing-10);
--section-inner-spacing-inline: var(--spacing-12);
--section-stack-spacing-block: var(--spacing-12);
/* Grid gutter */
--grid-gutter: var(--spacing-6);
/* Product list settings */
--product-list-row-gap: var(--spacing-12);
/* Form settings */
--input-gap: 1rem;
--input-height: 3.125rem;
--input-padding-inline: var(--spacing-5);
}
}
@media screen and (min-width: 1000px) {
:root {
/* Spacing settings */
--container-gutter: var(--spacing-12);
--section-outer-spacing-block: var(--spacing-16);
--section-inner-max-spacing-block: var(--spacing-14);
--section-inner-spacing-inline: var(--spacing-16);
--section-stack-spacing-block: var(--spacing-12);
}
}
@media screen and (min-width: 1150px) {
:root {
/* Spacing settings */
--container-gutter: var(--spacing-12);
--section-outer-spacing-block: var(--spacing-16);
--section-inner-max-spacing-block: var(--spacing-14);
--section-inner-spacing-inline: var(--spacing-16);
--section-stack-spacing-block: var(--spacing-12);
}
}
@media screen and (min-width: 1400px) {
:root {
/* Typography (font size) */
--text-h0: 4.5rem;
--text-h1: 3.5rem;
--text-h2: 2.75rem;
--text-h3: 2rem;
--text-h4: 1.75rem;
--text-h5: 1.375rem;
--text-h6: 1.25rem;
--section-outer-spacing-block: var(--spacing-20);
--section-inner-max-spacing-block: var(--spacing-16);
--section-inner-spacing-inline: var(--spacing-18);
}
}
@media screen and (min-width: 1600px) {
:root {
--section-outer-spacing-block: var(--spacing-20);
--section-inner-max-spacing-block: var(--spacing-18);
--section-inner-spacing-inline: var(--spacing-20);
}
}
/**
* ---------------------------------------------------------------------
* LIQUID DEPENDANT CSS
*
* Our main CSS is Liquid free, but some very specific features depend on
* theme settings, so we have them here
* ---------------------------------------------------------------------
*/@media screen and (pointer: fine) {
.button:not([disabled]):hover, .btn:not([disabled]):hover, .shopify-payment-button__button--unbranded:not([disabled]):hover {
--button-background-opacity: 0.85;
}
.button--subdued:not([disabled]):hover {
--button-background: var(--text-color) / .05 !important;
}
}</style><script>
document.documentElement.classList.replace('no-js', 'js');
// This allows to expose several variables to the global scope, to be used in scripts
window.themeVariables = {
settings: {
showPageTransition: true,
headingApparition: "split_fade",
pageType: "index",
moneyFormat: "${{amount}}",
moneyWithCurrencyFormat: "${{amount}} USD",
currencyCodeEnabled: false,
cartType: "drawer",
showDiscount: true,
discountMode: "saving"
},
strings: {
accessibilityClose: "Close",
accessibilityNext: "Next",
accessibilityPrevious: "Previous",
addToCartButton: "Add to cart",
soldOutButton: "Sold out",
preOrderButton: "Pre-order",
unavailableButton: "Unavailable",
closeGallery: "Close gallery",
zoomGallery: "Zoom",
errorGallery: "Image cannot be loaded",
soldOutBadge: "Sold out",
discountBadge: "Save @@",
sku: "SKU:",
searchNoResults: "No results could be found.",
addOrderNote: "Add order note",
editOrderNote: "Edit order note",
shippingEstimatorNoResults: "Sorry, we do not ship to your address.",
shippingEstimatorOneResult: "There is one shipping rate for your address:",
shippingEstimatorMultipleResults: "There are several shipping rates for your address:",
shippingEstimatorError: "One or more error occurred while retrieving shipping rates:"
},
breakpoints: {
'sm': 'screen and (min-width: 700px)',
'md': 'screen and (min-width: 1000px)',
'lg': 'screen and (min-width: 1150px)',
'xl': 'screen and (min-width: 1400px)',
'sm-max': 'screen and (max-width: 699px)',
'md-max': 'screen and (max-width: 999px)',
'lg-max': 'screen and (max-width: 1149px)',
'xl-max': 'screen and (max-width: 1399px)'
}
};window.addEventListener('DOMContentLoaded', () => {
const isReloaded = (window.performance.navigation && window.performance.navigation.type === 1) || window.performance.getEntriesByType('navigation').map((nav) => nav.type).includes('reload');
if ('animate' in document.documentElement && window.matchMedia('(prefers-reduced-motion: no-preference)').matches && document.referrer.includes(location.host) && !isReloaded) {
document.body.animate({opacity: [0, 1]}, {duration: 115, fill: 'forwards'});
}
});
window.addEventListener('pageshow', (event) => {
document.body.classList.remove('page-transition');
if (event.persisted) {
document.body.animate({opacity: [0, 1]}, {duration: 0, fill: 'forwards'});
}
});// For detecting native share
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>
<script type="module" src="//houseofmonac.com/cdn/shop/t/5/assets/theme.js?v=49892170302731136491697768327"></script>
<script type="module" src="//houseofmonac.com/cdn/shop/t/5/assets/sections.js?v=77734894065137989411697768380"></script>
<script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta name="google-site-verification" content="EMDM2oSOX0mixvY9nrm90StcC86k5eyNaZRjC0fRfCE">
<meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/71899971858/digital_wallets/dialog">
<meta name="shopify-checkout-api-token" content="0e829a237eaa9a51bb114f386e51b471">
<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">
<script async="async" src="/checkouts/internal/preloads.js?locale=en-US"></script>
<link rel="preconnect" href="https://shop.app" crossorigin="anonymous">
<script async="async" src="https://shop.app/checkouts/internal/preloads.js?locale=en-US&shop_id=71899971858" crossorigin="anonymous"></script>
<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>
<script id="shopify-features" type="application/json">{"accessToken":"0e829a237eaa9a51bb114f386e51b471","betas":["rich-media-storefront-analytics"],"domain":"houseofmonac.com","predictiveSearch":true,"shopId":71899971858,"locale":"en"}</script>
<script>var Shopify = Shopify || {};
Shopify.shop = "the-white-market-2718.myshopify.com";
Shopify.locale = "en";
Shopify.currency = {"active":"USD","rate":"1.0"};
Shopify.country = "US";
Shopify.theme = {"name":"Impact version 4.0.2","id":146188894482,"schema_name":"Impact","schema_version":"4.0.2","theme_store_id":null,"role":"main"};
Shopify.theme.handle = "null";
Shopify.theme.style = {"id":null,"handle":null};
Shopify.cdnHost = "houseofmonac.com/cdn";
Shopify.routes = Shopify.routes || {};
Shopify.routes.root = "/";</script>
<script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
<script>!function(o){function n(){var o=[];function n(){o.push(Array.prototype.slice.apply(arguments))}return n.q=o,n}var t=o.Shopify=o.Shopify||{};t.loadFeatures=n(),t.autoloadFeatures=n()}(window);</script>
<script>window.ShopifyPay = window.ShopifyPay || {};
window.ShopifyPay.apiHost = "shop.app\/pay";</script>
<script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script>
<script>
window.Shopify = window.Shopify || {};
if (!window.Shopify.featureAssets) window.Shopify.featureAssets = {};
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"]};
</script>
<script>(function() {
function asyncLoad() {
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"];
for (var i = 0; i < urls.length; i++) {
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = urls[i];
var x = document.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s, x);
}
};
if(window.attachEvent) {
window.attachEvent('onload', asyncLoad);
} else {
window.addEventListener('load', asyncLoad, false);
}
})();</script>
<script id="__st">var __st={"a":71899971858,"offset":-14400,"reqid":"b2d4a05a-0953-4032-825b-f19b1e1704b1-1751324424","pageurl":"houseofmonac.com\/","u":"0e795cbfc67f","p":"home"};</script>
<script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
<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>
<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>
<script crossorigin="anonymous" defer="defer" src="//houseofmonac.com/cdn/shopifycloud/shopify/assets/shopify_pay/storefront-9846a8162782d0b340b9256e1835a4bf4ccf7ab521e1221004c475e86df911f4.js?v=20220906"></script>
<script data-source-attribution="shopify.dynamic_checkout.dynamic.init">var Shopify=Shopify||{};Shopify.PaymentButton=Shopify.PaymentButton||{isStorefrontPortableWallets:!0,init:function(){window.Shopify.PaymentButton.init=function(){};var t=document.createElement("script");t.src="https://houseofmonac.com/cdn/shopifycloud/portable-wallets/latest/portable-wallets.en.js",t.type="module",document.head.appendChild(t)}};
</script>
<script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
function portableWalletsHideBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.add("hidden"),t.setAttribute("aria-hidden","true"),n.removeEventListener("click",e))}function portableWalletsShowBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.remove("hidden"),t.removeAttribute("aria-hidden"),n.addEventListener("click",e))}window.Shopify?.PaymentButton&&(window.Shopify.PaymentButton.hideBuyerConsent=portableWalletsHideBuyerConsent,window.Shopify.PaymentButton.showBuyerConsent=portableWalletsShowBuyerConsent);
</script>
<script>
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);
</script>
<script type="module" src="https://houseofmonac.com/cdn/shopifycloud/portable-wallets/latest/portable-wallets.en.js" onError="portableWalletsCleanup(this)" crossorigin="anonymous"></script>
<script nomodule>
document.addEventListener("DOMContentLoaded", portableWalletsCleanup);
</script>
<script id='scb4127' type='text/javascript' async='' src='https://houseofmonac.com/cdn/shopifycloud/privacy-banner/storefront-banner.js'></script>
<link rel="stylesheet" media="screen" href="https://houseofmonac.com/cdn/shopifycloud/portable-wallets/latest/accelerated-checkout-backwards-compat.css" crossorigin="anonymous">
<style id="shopify-accelerated-checkout-cart">
#shopify-buyer-consent {
margin-top: 1em;
display: inline-block;
width: 100%;
}
#shopify-buyer-consent.hidden {
display: none;
}
#shopify-subscription-policy-button {
background: none;
border: none;
padding: 0;
text-decoration: underline;
font-size: inherit;
cursor: pointer;
}
#shopify-subscription-policy-button::before {
box-shadow: none;
}
</style>
<script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>
<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 -->
<script
type="application/ld+json"
injected-by-storeseo="true"
>
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https:\/\/houseofmonac.com"
}
,{
"@type": "ListItem",
"position": 2,
"name": "Shop Dupe Fragrances, Lotions, Body Wash \u0026amp; Candles"
}
]
}
</script>
<!-- END app snippet --><!-- BEGIN app snippet: local_seo_collection -->
<!-- END app snippet --><!-- BEGIN app snippet: local_seo_blogs -->
<!-- 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 -->
<!-- END app snippet --><!-- BEGIN app snippet: local_seo_local_business -->
<!-- END app snippet -->
<!-- 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>
<link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
<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>
<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>
window.ShopifyAnalytics = window.ShopifyAnalytics || {};
window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
window.ShopifyAnalytics.meta.currency = 'USD';
var meta = {"page":{"pageType":"home"}};
for (var attr in meta) {
window.ShopifyAnalytics.meta[attr] = meta[attr];
}
</script>
<script class="analytics">
(function () {
var customDocumentWrite = function(content) {
var jquery = null;
if (window.jQuery) {
jquery = window.jQuery;
} else if (window.Checkout && window.Checkout.$) {
jquery = window.Checkout.$;
}
if (jquery) {
jquery('body').append(content);
}
};
var hasLoggedConversion = function(token) {
if (token) {
return document.cookie.indexOf('loggedConversion=' + token) !== -1;
}
return false;
}
var setCookieIfConversion = function(token) {
if (token) {
var twoMonthsFromNow = new Date(Date.now());
twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);
document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
}
}
var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
if (trekkie.integrations) {
return;
}
trekkie.methods = [
'identify',
'page',
'ready',
'track',
'trackForm',
'trackLink'
];
trekkie.factory = function(method) {
return function() {
var args = Array.prototype.slice.call(arguments);
args.unshift(method);
trekkie.push(args);
return trekkie;
};
};
for (var i = 0; i < trekkie.methods.length; i++) {
var key = trekkie.methods[i];
trekkie[key] = trekkie.factory(key);
}
trekkie.load = function(config) {
trekkie.config = config || {};
trekkie.config.initialDocumentCookie = document.cookie;
var first = document.getElementsByTagName('script')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
script.onerror = function(e) {
var scriptFallback = document.createElement('script');
scriptFallback.type = 'text/javascript';
scriptFallback.onerror = function(error) {
var Monorail = {
produce: function produce(monorailDomain, schemaId, payload) {
var currentMs = new Date().getTime();
var event = {
schema_id: schemaId,
payload: payload,
metadata: {
event_created_at_ms: currentMs,
event_sent_at_ms: currentMs
}
};
return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
},
sendRequest: function sendRequest(endpointUrl, payload) {
// Try the sendBeacon API
if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
var blobData = new window.Blob([payload], {
type: 'text/plain'
});
if (window.navigator.sendBeacon(endpointUrl, blobData)) {
return true;
} // sendBeacon was not successful
} // XHR beacon
var xhr = new XMLHttpRequest();
try {
xhr.open('POST', endpointUrl);
xhr.setRequestHeader('Content-Type', 'text/plain');
xhr.send(payload);
} catch (e) {
console.log(e);
}
return false;
},
isIos12: function isIos12() {
return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
}
};
Monorail.produce('monorail-edge.shopifysvc.com',
'trekkie_storefront_load_errors/1.1',
{shop_id: 71899971858,
theme_id: 146188894482,
app_name: "storefront",
context_url: window.location.href,
source_url: "//houseofmonac.com/cdn/s/trekkie.storefront.7f48c99429cb25be36839f7a7bcca2ac8a69827d.min.js"});
};
scriptFallback.async = true;
scriptFallback.src = '//houseofmonac.com/cdn/s/trekkie.storefront.7f48c99429cb25be36839f7a7bcca2ac8a69827d.min.js';
first.parentNode.insertBefore(scriptFallback, first);
};
script.async = true;
script.src = '//houseofmonac.com/cdn/s/trekkie.storefront.7f48c99429cb25be36839f7a7bcca2ac8a69827d.min.js';
first.parentNode.insertBefore(script, first);
};
trekkie.load(
{"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}}
);
var loaded = false;
trekkie.ready(function() {
if (loaded) return;
loaded = true;
window.ShopifyAnalytics.lib = window.trekkie;
var originalDocumentWrite = document.write;
document.write = customDocumentWrite;
try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
document.write = originalDocumentWrite;
window.ShopifyAnalytics.lib.page(null,{"pageType":"home","shopifyEmitted":true});
var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
var token = match? match[1]: undefined;
if (!hasLoggedConversion(token)) {
setCookieIfConversion(token);
}
});
var eventsListenerScript = document.createElement('script');
eventsListenerScript.async = true;
eventsListenerScript.src = "//houseofmonac.com/cdn/shopifycloud/shopify/assets/shop_events_listener-1d89eace2351930ad947448cd92e0cd236cb81ecc8f6bbf9ce2331557cb884b2.js";
document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
})();</script>
<script
defer
src="https://houseofmonac.com/cdn/shopifycloud/perf-kit/shopify-perf-kit-1.6.6.min.js"
data-application="storefront-renderer"
data-shop-id="71899971858"
data-render-region="gcp-us-east1"
data-page-type="index"
data-theme-instance-id="146188894482"
data-theme-name="Impact"
data-theme-version="4.0.2"
data-monorail-region="shop_domain"
data-resource-timing-sampling-rate="10"
data-shs="true"
></script>
</head>
<body class="page-transition zoom-image--enabled"><!-- DRAWER -->
<template id="drawer-default-template">
<style>
[hidden] {
display: none !important;
}
</style>
<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">
<path d="M17.658 6.343 6.344 17.657M17.658 17.657 6.344 6.343" stroke="currentColor"></path>
</svg></button>
<div part="overlay"></div>
<div part="content">
<header part="header">
<slot name="header"></slot>
<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">
<path d="M17.658 6.343 6.344 17.657M17.658 17.657 6.344 6.343" stroke="currentColor"></path>
</svg></button>
</header>
<div part="body">
<slot></slot>
</div>
<footer part="footer">
<slot name="footer"></slot>
</footer>
</div>
</template>
<!-- POPOVER -->
<template id="popover-default-template">
<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">
<path d="M17.658 6.343 6.344 17.657M17.658 17.657 6.344 6.343" stroke="currentColor"></path>
</svg></button>
<div part="overlay"></div>
<div part="content">
<header part="title">
<slot name="title"></slot>
</header>
<div part="body">
<slot></slot>
</div>
</div>
</template><a href="#main" class="skip-to-content sr-only">Skip to content</a><!-- BEGIN sections: header-group -->
<aside id="shopify-section-sections--18347439554834__announcement-bar" class="shopify-section shopify-section-group-header-group shopify-section--announcement-bar"><style>
:root {
--sticky-announcement-bar-enabled:1;
}#shopify-section-sections--18347439554834__announcement-bar {
position: sticky;
top: 0;
z-index: 20;
}
.shopify-section--header ~ #shopify-section-sections--18347439554834__announcement-bar {
top: calc(var(--sticky-header-enabled, 0) * var(--header-height, 0px));
}</style><height-observer variable="announcement-bar">
<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
</p>
<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
</p>
<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
</p>
<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
</p>
<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
</p>
<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
</p>
<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
</p>
<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
</p>
<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
</p>
<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
</p>
<span class="shape-circle shape--sm"></span></span></marquee-text></div>
</height-observer>
<script>
document.documentElement.style.setProperty('--announcement-bar-height', Math.round(document.getElementById('shopify-section-sections--18347439554834__announcement-bar').clientHeight) + 'px');
</script></aside><header id="shopify-section-sections--18347439554834__header" class="shopify-section shopify-section-group-header-group shopify-section--header"><style>
:root {
--sticky-header-enabled:1;
}
#shopify-section-sections--18347439554834__header {
--header-grid-template: "main-nav logo secondary-nav" / minmax(0, 1fr) auto minmax(0, 1fr);
--header-padding-block: var(--spacing-4-5);
--header-background-opacity: 1.0;
--header-background-blur-radius: 0px;
--header-transparent-text-color: 0 0 0;--header-logo-width: 130px;
--header-logo-height: 92px;position: sticky;
top: 0;
z-index: 10;
}.shopify-section--announcement-bar ~ #shopify-section-sections--18347439554834__header {
top: calc(var(--sticky-announcement-bar-enabled, 0) * var(--announcement-bar-height, 0px));
}@media screen and (min-width: 700px) {
#shopify-section-sections--18347439554834__header {--header-logo-width: 205px;
--header-logo-height: 145px;--header-padding-block: var(--spacing-8-5);
}
}</style>
<height-observer variable="header">
<store-header class="header" sticky>
<div class="header__wrapper"><div class="header__main-nav">
<div class="header__icon-list">
<button type="button" class="tap-area lg:hidden" aria-controls="header-sidebar-menu">
<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">
<path d="M1 5h20M1 11h20M1 17h20" stroke="currentColor" stroke-linecap="round"></path>
</svg></button>
<a href="/search" class="tap-area sm:hidden" aria-controls="search-drawer">
<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">
<circle cx="11" cy="10" r="7" fill="none" stroke="currentColor"></circle>
<path d="m16 15 3 3" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path>
</svg></a><nav class="header__link-list wrap" role="navigation">
<ul class="contents" role="list">
<li><a href="/" class="bold link-faded-reverse" aria-current="page">Home</a></li>
<li><details class="relative" is="dropdown-disclosure" trigger="click">
<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">
<path d="m1 1 4 4 4-4" fill="none" stroke="currentColor" stroke-width="2"></path>
</svg></summary>
<div class="dropdown-menu">
<ul class="contents" role="list"><li><a href="/collections/all" class="dropdown-menu__item group" >
<span><span class="reversed-link">All Products</span></span>
</a></li><li><a href="/collections/fragrance" class="dropdown-menu__item group" >
<span><span class="reversed-link">Fragrances</span></span>
</a></li><li><a href="/collections/body-lotions" class="dropdown-menu__item group" >
<span><span class="reversed-link">Body Lotion</span></span>
</a></li><li><a href="/collections/body-wash" class="dropdown-menu__item group" >
<span><span class="reversed-link">Body Wash</span></span>
</a></li><li><a href="/collections/candle" class="dropdown-menu__item group" >
<span><span class="reversed-link">Candles</span></span>
</a></li><li><details class="relative" is="dropdown-disclosure" trigger="click">
<summary class="dropdown-menu__item group" data-url="/collections/inspired-by-amouage">
<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">
<path d="m1 9 4-4-4-4" fill="none" stroke="currentColor" stroke-width="2"></path>
</svg></summary>
<div class="dropdown-menu">
<ul class="contents" role="list"><li>
<a href="/collections/inspired-by-bond-no-9" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Bond No 9</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-bdk" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by BDK</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-amouage" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Amouage</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-chanel" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Chanel</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-clive-christian" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired By Clive Christian</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-creed" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Creed</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-dior" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Dior</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-ex-nihilo" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Ex Nihilo</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-frederic-malle" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Frederic Malle</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-giardini" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Giardini</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-gueralin" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Gueralin</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-initio" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Initio</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-jean-paul-gaultier" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Jean Paul Gaultier</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-kayali" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Kayali</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-killian" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Killian</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-maison-crivelli" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Maison Crivelli</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-mancera" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Mancera</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-masion-francis-kurkdjian" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired By Masion Francis Kurkdjian</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-nishane" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Nishane</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-parfums-de-marly" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired By Parfums De Marly</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-prada" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Prada</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-stronger-with-you" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Soleil De Jeddah</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-sospiro" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Sospiro</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-stephane-humbert-lucas" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Stephane Humbert Lucas</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-thierry-mugler" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Thierry Mugler</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-tiziana-terenzi" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Tiziana Terenzi</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-tom-ford" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Tom Ford</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-valentino" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Valentino</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-viktor-and-rolf" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Viktor and Rolf</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-xerjoff" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired BY Xerjoff</span></span>
</a>
</li><li>
<a href="/collections/inspired-by-yves-saint-laurent" class="dropdown-menu__item group" >
<span><span class="reversed-link">Inspired by Yves Saint Laurent</span></span>
</a>
</li><li>
<a href="/collections/louis-vuitton" class="dropdown-menu__item group" >
<span><span class="reversed-link">Louis Vuitton</span></span>
</a>
</li></ul>
</div>
</details></li></ul>
</div>
</details></li>
<li><a href="/blogs/news" class="bold link-faded-reverse" >Blogs</a></li>
<li><a href="/pages/press" class="bold link-faded-reverse" >Press</a></li>
<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>
</nav></div>
</div><h1 class="header__logo">
<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&width=430" alt="" srcset="//houseofmonac.com/cdn/shop/files/monac_Attar_png-01_430x_8ffa7d40-f382-426c-b38c-f3eddca63588.png?v=1713355635&width=410 410w, //houseofmonac.com/cdn/shop/files/monac_Attar_png-01_430x_8ffa7d40-f382-426c-b38c-f3eddca63588.png?v=1713355635&width=430 430w" width="430" height="304" sizes="205px" class="header__logo-image"></a>
</h1>
<div class="header__secondary-nav"><div class="header__icon-list"><a href="/search" class="hidden tap-area sm:block" aria-controls="search-drawer">
<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">
<circle cx="11" cy="10" r="7" fill="none" stroke="currentColor"></circle>
<path d="m16 15 3 3" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path>
</svg></a><a href="/account" class="hidden tap-area sm:block">
<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">
<circle cx="11" cy="7" r="4" fill="none" stroke="currentColor"></circle>
<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>
</svg></a><a href="/cart" data-no-instant class="relative tap-area" aria-controls="cart-drawer">
<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">
<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>
</svg><div class="header__cart-count">
<cart-count class="count-bubble opacity-0" aria-hidden="true">0</cart-count>
</div>
</a>
</div>
</div>
</div>
</store-header>
</height-observer><navigation-drawer mobile-opening="bottom" open-from="left" id="header-sidebar-menu" class="navigation-drawer drawer lg:hidden" >
<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">
<path d="M17.658 6.343 6.344 17.657M17.658 17.657 6.344 6.343" stroke="currentColor"></path>
</svg></button><div class="panel-list__wrapper">
<div class="panel">
<div class="panel__wrapper" >
<div class="panel__scroller v-stack gap-8"><ul class="v-stack gap-4">
<li class="h3 sm:h4"><a href="/" class="group block w-full">
<span><span class="reversed-link">Home</span></span>
</a></li>
<li class="h3 sm:h4"><button class="text-with-icon w-full group justify-between" aria-expanded="false" data-panel="1-0">
<span>Shop Now</span>
<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">
<path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
</svg></span>
</button></li>
<li class="h3 sm:h4"><a href="/blogs/news" class="group block w-full">
<span><span class="reversed-link">Blogs</span></span>
</a></li>
<li class="h3 sm:h4"><a href="/pages/press" class="group block w-full">
<span><span class="reversed-link">Press</span></span>
</a></li>
<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">
<span><span class="reversed-link">Reviews </span></span>
</a></li></ul></div><div class="panel-footer v-stack gap-5"><ul class="social-media " role="list"><li>
<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">
<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"/>
</svg></a>
</li><li>
<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">
<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"/>
</svg></a>
</li><li>
<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">
<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"/>
</svg></a>
</li><li>
<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">
<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"/>
</svg></a>
</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>
</div><div class="panel gap-8">
<div class="panel__wrapper" hidden>
<ul class="v-stack gap-4">
<li class="lg:hidden">
<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">
<path d="M6 1 2 5l4 4" fill="none" stroke="currentColor" stroke-width="2"></path>
</svg>Shop Now
</button>
</li><li class="h3 sm:h4"><a class="group block w-full" href="/collections/all"><span><span class="reversed-link">All Products</span></span>
</a></li><li class="h3 sm:h4"><a class="group block w-full" href="/collections/fragrance"><span><span class="reversed-link">Fragrances</span></span>
</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>
</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>
</a></li><li class="h3 sm:h4"><a class="group block w-full" href="/collections/candle"><span><span class="reversed-link">Candles</span></span>
</a></li><li class="h3 sm:h4"><button class="text-with-icon w-full justify-between" aria-expanded="false" data-panel="2-0">
<span>Shop By Inspirations</span>
<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">
<path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
</svg></span>
</button></li></ul></div>
</div>
<div class="panel">
<div class="panel__wrapper" hidden>
<ul class="v-stack gap-4">
<li class="text-with-icon lg:hidden">
<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">
<path d="M6 1 2 5l4 4" fill="none" stroke="currentColor" stroke-width="2"></path>
</svg>Shop By Inspirations
</button>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-bond-no-9"><span><span class="reversed-link">Inspired by Bond No 9</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-bdk"><span><span class="reversed-link">Inspired by BDK</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-amouage"><span><span class="reversed-link">Inspired by Amouage</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-chanel"><span><span class="reversed-link">Inspired by Chanel</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-clive-christian"><span><span class="reversed-link">Inspired By Clive Christian</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-creed"><span><span class="reversed-link">Inspired by Creed</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-dior"><span><span class="reversed-link">Inspired by Dior</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-ex-nihilo"><span><span class="reversed-link">Inspired by Ex Nihilo</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-frederic-malle"><span><span class="reversed-link">Inspired by Frederic Malle</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-giardini"><span><span class="reversed-link">Inspired by Giardini</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-gueralin"><span><span class="reversed-link">Inspired by Gueralin</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-initio"><span><span class="reversed-link">Inspired by Initio</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-jean-paul-gaultier"><span><span class="reversed-link">Inspired by Jean Paul Gaultier</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-kayali"><span><span class="reversed-link">Inspired by Kayali</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-killian"><span><span class="reversed-link">Inspired by Killian</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-maison-crivelli"><span><span class="reversed-link">Inspired by Maison Crivelli</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-mancera"><span><span class="reversed-link">Inspired by Mancera</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-masion-francis-kurkdjian"><span><span class="reversed-link">Inspired By Masion Francis Kurkdjian</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-nishane"><span><span class="reversed-link">Inspired by Nishane</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-parfums-de-marly"><span><span class="reversed-link">Inspired By Parfums De Marly</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-prada"><span><span class="reversed-link">Inspired by Prada</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-stronger-with-you"><span><span class="reversed-link">Inspired by Soleil De Jeddah</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-sospiro"><span><span class="reversed-link">Inspired by Sospiro</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-stephane-humbert-lucas"><span><span class="reversed-link">Inspired by Stephane Humbert Lucas</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-thierry-mugler"><span><span class="reversed-link">Inspired by Thierry Mugler</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-tiziana-terenzi"><span><span class="reversed-link">Inspired by Tiziana Terenzi</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-tom-ford"><span><span class="reversed-link">Inspired by Tom Ford</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-valentino"><span><span class="reversed-link">Inspired by Valentino</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-viktor-and-rolf"><span><span class="reversed-link">Inspired by Viktor and Rolf</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-xerjoff"><span><span class="reversed-link">Inspired BY Xerjoff</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/inspired-by-yves-saint-laurent"><span><span class="reversed-link">Inspired by Yves Saint Laurent</span></span>
</a>
</li><li class="h5 sm:h5">
<a class="group block w-full"
href="/collections/louis-vuitton"><span><span class="reversed-link">Louis Vuitton</span></span>
</a>
</li></ul>
</div>
</div></div></navigation-drawer><script>
document.documentElement.style.setProperty('--header-height', Math.round(document.getElementById('shopify-section-sections--18347439554834__header').clientHeight) + 'px');
</script>
</header>
<!-- END sections: header-group --><!-- BEGIN sections: overlay-group -->
<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>
<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">
<path d="M17.658 6.343 6.344 17.657M17.658 17.657 6.344 6.343" stroke="currentColor"></path>
</svg></button><img src="//houseofmonac.com/cdn/shop/files/Untitled_design_3.jpg?v=1679934949&width=800" alt="" srcset="//houseofmonac.com/cdn/shop/files/Untitled_design_3.jpg?v=1679934949&width=800 800w, //houseofmonac.com/cdn/shop/files/Untitled_design_3.jpg?v=1679934949&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">
<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">
<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=" "
autocomplete="email"
required
><label for="input-sections--18347439653138__newsletter-popup-049069293" class="floating-label">E-mail</label></div></div>
<button type="submit" class="button button--xl"
is="custom-button"
>
<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">
<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"/>
<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"/>
</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>
</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>
<div class="privacy-bar__inner">
<button type="button" class="privacy-bar__close" data-action="close">
<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">
<path d="m.757.757 8.486 8.486m-8.486 0L9.243.757" stroke="currentColor"></path>
</svg></button>
<div class="v-stack gap-4">
<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>
<div class="h-stack gap-2">
<button type="button" class="button button--sm" data-action="accept">Accept</button>
<button type="button" class="button button--sm button--subdued" data-action="decline">Decline</button>
</div>
</div>
</div>
</privacy-bar>
</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">
<path d="M17.658 6.343 6.344 17.657M17.658 17.657 6.344 6.343" stroke="currentColor"></path>
</svg></button>
<div class="empty-state align-self-center">
<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">
<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>
</svg><span class="count-bubble count-bubble--lg">0</span>
</div>
<div class="prose">
<p class="h5">Your cart is empty</p>
<a class="button button--xl"
href="/collections/all"
>Continue shopping</a></div>
</div></cart-drawer>
</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">
<form action="/search" method="get" class="v-stack gap-5 sm:gap-8" role="search">
<div class="search-input">
<input type="search" name="q" placeholder="Search for..." autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" aria-label="Search">
<button type="reset" class="text-subdued">Clear</button>
<button type="button" is="close-button">
<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">
<path d="M17.658 6.343 6.344 17.657M17.658 17.657 6.344 6.343" stroke="currentColor"></path>
</svg></button>
</div>
<style>
#shopify-section-sections--18347439653138__search-drawer {
--predictive-search-column-count: 3;
}
</style>
<input type="hidden" name="type" value="product">
<predictive-search class="predictive-search" section-id="sections--18347439653138__search-drawer"><div slot="results"></div>
<div slot="loading">
<div class="v-stack gap-5 sm:gap-6 md:hidden">
<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>
<div class="v-stack gap-4 sm:gap-6"><div class="h-stack align-center gap-5 sm:gap-6">
<span class="skeleton skeleton--thumbnail"></span>
<div class="v-stack gap-3 w-full">
<span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
</div>
</div><div class="h-stack align-center gap-5 sm:gap-6">
<span class="skeleton skeleton--thumbnail"></span>
<div class="v-stack gap-3 w-full">
<span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
</div>
</div><div class="h-stack align-center gap-5 sm:gap-6">
<span class="skeleton skeleton--thumbnail"></span>
<div class="v-stack gap-3 w-full">
<span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
</div>
</div><div class="h-stack align-center gap-5 sm:gap-6">
<span class="skeleton skeleton--thumbnail"></span>
<div class="v-stack gap-3 w-full">
<span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
</div>
</div></div>
</div><div class="predictive-search__skeleton-full-width hidden"><div class="v-stack gap-8">
<span class="skeleton skeleton--tab"></span><div class="h-stack align-center gap-5 sm:gap-6">
<span class="skeleton skeleton--thumbnail"></span>
<div class="v-stack gap-3 w-full">
<span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
</div>
</div><div class="h-stack align-center gap-5 sm:gap-6">
<span class="skeleton skeleton--thumbnail"></span>
<div class="v-stack gap-3 w-full">
<span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
</div>
</div><div class="h-stack align-center gap-5 sm:gap-6">
<span class="skeleton skeleton--thumbnail"></span>
<div class="v-stack gap-3 w-full">
<span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
</div>
</div><div class="h-stack align-center gap-5 sm:gap-6">
<span class="skeleton skeleton--thumbnail"></span>
<div class="v-stack gap-3 w-full">
<span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
</div>
</div></div><div class="v-stack gap-8">
<span class="skeleton skeleton--tab"></span><div class="h-stack align-center gap-5 sm:gap-6">
<span class="skeleton skeleton--thumbnail"></span>
<div class="v-stack gap-3 w-full">
<span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
</div>
</div><div class="h-stack align-center gap-5 sm:gap-6">
<span class="skeleton skeleton--thumbnail"></span>
<div class="v-stack gap-3 w-full">
<span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
</div>
</div><div class="h-stack align-center gap-5 sm:gap-6">
<span class="skeleton skeleton--thumbnail"></span>
<div class="v-stack gap-3 w-full">
<span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
</div>
</div><div class="h-stack align-center gap-5 sm:gap-6">
<span class="skeleton skeleton--thumbnail"></span>
<div class="v-stack gap-3 w-full">
<span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
</div>
</div></div><div class="v-stack gap-8">
<span class="skeleton skeleton--tab"></span><div class="h-stack align-center gap-5 sm:gap-6">
<span class="skeleton skeleton--thumbnail"></span>
<div class="v-stack gap-3 w-full">
<span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
</div>
</div><div class="h-stack align-center gap-5 sm:gap-6">
<span class="skeleton skeleton--thumbnail"></span>
<div class="v-stack gap-3 w-full">
<span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
</div>
</div><div class="h-stack align-center gap-5 sm:gap-6">
<span class="skeleton skeleton--thumbnail"></span>
<div class="v-stack gap-3 w-full">
<span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
</div>
</div><div class="h-stack align-center gap-5 sm:gap-6">
<span class="skeleton skeleton--thumbnail"></span>
<div class="v-stack gap-3 w-full">
<span class="skeleton skeleton--text" style="--skeleton-text-width: 20%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 80%"></span>
<span class="skeleton skeleton--text" style="--skeleton-text-width: 40%"></span>
</div>
</div></div></div></div>
</predictive-search>
</form>
</search-drawer>
</div>
<!-- END sections: overlay-group --><main role="main" id="main" class="anchor">
<section id="shopify-section-template--18347438506258__slideshow" class="shopify-section shopify-section--slideshow"><style>#shopify-section-template--18347438506258__slideshow {
--slideshow-background: linear-gradient(60deg, rgba(60, 65, 68, 1), rgba(23, 29, 33, 1) 98%);
--slideshow-controls-background: ;
--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%);
--slideshow-slide-controls-background: ;
--slideshow-slide-controls-color: 255 255 255;
}</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&width=700" alt="" srcset="//houseofmonac.com/cdn/shop/files/4_July_post_5_Banner_Size_700_x_500_px.jpg?v=1751318900&width=200 200w, //houseofmonac.com/cdn/shop/files/4_July_post_5_Banner_Size_700_x_500_px.jpg?v=1751318900&width=300 300w, //houseofmonac.com/cdn/shop/files/4_July_post_5_Banner_Size_700_x_500_px.jpg?v=1751318900&width=400 400w, //houseofmonac.com/cdn/shop/files/4_July_post_5_Banner_Size_700_x_500_px.jpg?v=1751318900&width=500 500w, //houseofmonac.com/cdn/shop/files/4_July_post_5_Banner_Size_700_x_500_px.jpg?v=1751318900&width=600 600w, //houseofmonac.com/cdn/shop/files/4_July_post_5_Banner_Size_700_x_500_px.jpg?v=1751318900&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&width=1080" alt="" srcset="//houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-06-30_at_5.18.00_PM.jpg?v=1751319091&width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-06-30_at_5.18.00_PM.jpg?v=1751319091&width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-06-30_at_5.18.00_PM.jpg?v=1751319091&width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-06-30_at_5.18.00_PM.jpg?v=1751319091&width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-06-30_at_5.18.00_PM.jpg?v=1751319091&width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-06-30_at_5.18.00_PM.jpg?v=1751319091&width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-06-30_at_5.18.00_PM.jpg?v=1751319091&width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-06-30_at_5.18.00_PM.jpg?v=1751319091&width=900 900w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-06-30_at_5.18.00_PM.jpg?v=1751319091&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;">
<div class="prose"></div>
</div>
</div></div></slideshow-carousel>
</x-slideshow>
</section><section id="shopify-section-template--18347438506258__collection_list_Jw6rKV" class="shopify-section shopify-section--collection-list"><style>
#shopify-section-template--18347438506258__collection_list_Jw6rKV {
--section-background-hash: 0;
}
#shopify-section-template--18347438506258__collection_list_Jw6rKV + * {
--previous-section-background-hash: 0;
}</style><style>
#shopify-section-template--18347438506258__collection_list_Jw6rKV .collection-list {
--collection-list-grid: auto / auto-flow 73vw;
}
@media screen and (min-width: 700px) {
#shopify-section-template--18347438506258__collection_list_Jw6rKV .collection-list {
--collection-list-grid: auto / auto-flow 36vw;
}
}
@media screen and (min-width: 1000px) {
#shopify-section-template--18347438506258__collection_list_Jw6rKV .collection-list {
--collection-list-grid: auto / auto-flow calc(var(--container-inner-width) / 5 - (var(--grid-gutter) / 3 * 2));
}
}
@media screen and (min-width: 1400px) {
#shopify-section-template--18347438506258__collection_list_Jw6rKV .collection-list {
--collection-list-grid: auto / auto-flow calc(var(--container-inner-width) / 5 - (var(--grid-gutter) / 5 * 4));
}
}
</style><div class="section section-blends section-full">
<div class="section-stack">
<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">
<span class="reversed-link">View all</span>
<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">
<path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
</svg></span>
</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 ">
<collection-list class="collection-list"><a href="/collections/sales" class="collection-card shadow" reveal-js>
<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&width=2048" alt="Cherry - Monac" srcset="//houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&width=200 200w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&width=300 300w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&width=400 400w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&width=500 500w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&width=600 600w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&width=800 800w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&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>
</div><svg role="presentation" focusable="false" width="40" height="40" class="icon icon-circle-button-right-clipped" viewBox="0 0 24 24">
<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>
</svg></div></div>
</a><a href="/collections/body-lotions" class="collection-card shadow" reveal-js>
<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&width=1080" alt="" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&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>
</div><svg role="presentation" focusable="false" width="40" height="40" class="icon icon-circle-button-right-clipped" viewBox="0 0 24 24">
<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>
</svg></div></div>
</a><a href="/collections/fragrance" class="collection-card shadow" reveal-js>
<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&width=2560" alt="Imagine Inspired by Imagination" srcset="//houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&width=200 200w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&width=300 300w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&width=400 400w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&width=500 500w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&width=600 600w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&width=800 800w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&width=1000 1000w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&width=1200 1200w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&width=1400 1400w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&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>
</div><svg role="presentation" focusable="false" width="40" height="40" class="icon icon-circle-button-right-clipped" viewBox="0 0 24 24">
<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>
</svg></div></div>
</a><a href="/collections/body-wash" class="collection-card shadow" reveal-js>
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&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>
</div><svg role="presentation" focusable="false" width="40" height="40" class="icon icon-circle-button-right-clipped" viewBox="0 0 24 24">
<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>
</svg></div></div>
</a><a href="/collections/candle" class="collection-card shadow" reveal-js>
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-11-30-039.jpg?v=1724773828&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-11-30-039.jpg?v=1724773828&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-11-30-039.jpg?v=1724773828&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-11-30-039.jpg?v=1724773828&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-11-30-039.jpg?v=1724773828&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-11-30-039.jpg?v=1724773828&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-11-30-039.jpg?v=1724773828&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-11-30-039.jpg?v=1724773828&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-11-30-039.jpg?v=1724773828&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>
</div><svg role="presentation" focusable="false" width="40" height="40" class="icon icon-circle-button-right-clipped" viewBox="0 0 24 24">
<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>
</svg></div></div>
</a></collection-list>
</scroll-carousel><div class="scrollbar peer-not-scrollable:hidden">
<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">
<button is="prev-button" class="circle-button ring group" aria-controls="scroll-area-template--18347438506258__collection_list_Jw6rKV" disabled>
<span class="sr-only">Previous</span>
<span class="animated-arrow animated-arrow--reverse"></span>
</button>
<button is="next-button" class="circle-button ring group" aria-controls="scroll-area-template--18347438506258__collection_list_Jw6rKV">
<span class="sr-only">Next</span>
<span class="animated-arrow"></span>
</button>
</div></div></div>
</div>
</div>
</section><section id="shopify-section-template--18347438506258__1747687338c0d013ff" class="shopify-section shopify-section--apps"><style>
#shopify-section-template--18347438506258__1747687338c0d013ff {
--section-background-hash: 0;
}
#shopify-section-template--18347438506258__1747687338c0d013ff + * {
--previous-section-background-hash: 0;
}</style><style>
#shopify-section-template--18347438506258__1747687338c0d013ff {
}
</style>
<div class="section section-blends section-full"><div id="shopify-block-AVWVjbjg0OG5rL1VsR__junip_junip_review_carousel_Nc7fmx" class="shopify-block shopify-app-block"><div
class="junip-review-carousel "
data-reviews-type=product_reviews
data-show-summary=true
data-title="Reviews"
data-product-id=""
style="padding-top: 48px; padding-bottom: 48px;"
>
</div>
</div></div>
</section><section id="shopify-section-template--18347438506258__featured_collection_TYmrnt" class="shopify-section shopify-section--featured-collection"><style>
#shopify-section-template--18347438506258__featured_collection_TYmrnt {
--section-background-hash: 0;
}
#shopify-section-template--18347438506258__featured_collection_TYmrnt + * {
--previous-section-background-hash: 0;
}</style><style>#shopify-section-template--18347438506258__featured_collection_TYmrnt .product-list {
--product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
--product-list-items-per-row: 1;
--product-list-carousel-item-width: 74vw;
--product-list-grid: auto / auto-flow var(--product-list-carousel-item-width);
}
@media screen and (min-width: 700px) {
#shopify-section-template--18347438506258__featured_collection_TYmrnt .product-list {
--product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
--product-list-items-per-row: 2;
--product-list-carousel-item-width: 36vw;
}
}
@media screen and (min-width: 1000px) {
#shopify-section-template--18347438506258__featured_collection_TYmrnt .product-list {
--product-list-items-per-row: 5;
--product-list-carousel-item-width: calc(var(--container-inner-width) / 5 - (var(--product-list-column-gap) / 5 * 4));
}
}
</style>
<div class="section section-blends section-full">
<div class="section-stack">
<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">
<span class="reversed-link">View all</span>
<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">
<path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
</svg></span>
</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">
<reveal-items selector=".product-list > *">
<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">
<a href="/products/cherry-inspired-by-tom-ford-lost-cherry" data-instant><img src="//houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&width=2048" alt="Cherry - Monac" srcset="//houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&width=200 200w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&width=300 300w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&width=400 400w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&width=500 500w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&width=600 600w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&width=700 700w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&width=800 800w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Cherry.jpg?v=1742240294&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-02-29_14-14-20-293.jpg?v=1742240294&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-02-29_14-14-20-293.jpg?v=1742240294&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-02-29_14-14-20-293.jpg?v=1742240294&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-02-29_14-14-20-293.jpg?v=1742240294&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-02-29_14-14-20-293.jpg?v=1742240294&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-02-29_14-14-20-293.jpg?v=1742240294&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-02-29_14-14-20-293.jpg?v=1742240294&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">
<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">
<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>
</svg></div>
</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">
<span class="sr-only">Sale price</span>From $19.99</sale-price>
<compare-at-price class="text-subdued line-through">
<span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
</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">
<a href="/products/why-inspired-by-yves-saint-laurent-y" data-instant><img src="//houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&width=2048" alt="Why - Monac" srcset="//houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&width=200 200w, //houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&width=300 300w, //houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&width=400 400w, //houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&width=500 500w, //houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&width=600 600w, //houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&width=700 700w, //houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&width=800 800w, //houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Why.jpg?v=1741978190&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&width=1080" alt="ysl y clone dupe luxury scent notes" srcset="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.24PM.jpg?v=1741978190&width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.24PM.jpg?v=1741978190&width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.24PM.jpg?v=1741978190&width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.24PM.jpg?v=1741978190&width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.24PM.jpg?v=1741978190&width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.24PM.jpg?v=1741978190&width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.24PM.jpg?v=1741978190&width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.24PM.jpg?v=1741978190&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">
<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">
<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>
</svg></div>
</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">
<span class="sr-only">Sale price</span>From $19.00</sale-price>
<compare-at-price class="text-subdued line-through">
<span class="sr-only">Regular price</span>$29.00</compare-at-price></price-list></div></div>
</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">
<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&width=2048" alt="Millionaire Prive - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_21-48-13-738.jpg?v=1742360371&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-16_12-23-03-233.jpg?v=1742360371&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-16_12-23-03-233.jpg?v=1742360371&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-16_12-23-03-233.jpg?v=1742360371&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-16_12-23-03-233.jpg?v=1742360371&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-16_12-23-03-233.jpg?v=1742360371&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-16_12-23-03-233.jpg?v=1742360371&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-16_12-23-03-233.jpg?v=1742360371&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">
<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">
<span class="sr-only">Sale price</span>From $19.99
</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_15-41-40-741.jpg?v=1743102344&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_15-41-40-741.jpg?v=1743102344&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_15-41-40-741.jpg?v=1743102344&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_15-41-40-741.jpg?v=1743102344&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_15-41-40-741.jpg?v=1743102344&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_15-41-40-741.jpg?v=1743102344&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_15-41-40-741.jpg?v=1743102344&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_15-41-40-741.jpg?v=1743102344&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_15-41-40-741.jpg?v=1743102344&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_15-41-40-741.jpg?v=1743102344&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_15-41-40-741.jpg?v=1743102344&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-13_11-54-12-152.jpg?v=1743102344&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-13_11-54-12-152.jpg?v=1743102344&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-13_11-54-12-152.jpg?v=1743102344&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-13_11-54-12-152.jpg?v=1743102344&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-13_11-54-12-152.jpg?v=1743102344&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-13_11-54-12-152.jpg?v=1743102344&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-13_11-54-12-152.jpg?v=1743102344&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-13_11-54-12-152.jpg?v=1743102344&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-13_11-54-12-152.jpg?v=1743102344&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-13_11-54-12-152.jpg?v=1743102344&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-13_11-54-12-152.jpg?v=1743102344&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">
<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">
<span class="sr-only">Sale price</span>From $19.99</sale-price>
<compare-at-price class="text-subdued line-through">
<span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
</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">
<a href="/products/savage-elixir-inspired-by-sauvage-elixir" data-instant><img src="//houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&width=2048" alt="Savage Elixir - Monac" srcset="//houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&width=200 200w, //houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&width=300 300w, //houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&width=400 400w, //houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&width=500 500w, //houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&width=600 600w, //houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&width=700 700w, //houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&width=800 800w, //houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Savage_Elixir.jpg?v=1745943779&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-10at3.38.17PM_2.jpg?v=1745943778&width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-10at3.38.17PM_2.jpg?v=1745943778&width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-10at3.38.17PM_2.jpg?v=1745943778&width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-10at3.38.17PM_2.jpg?v=1745943778&width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-10at3.38.17PM_2.jpg?v=1745943778&width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-10at3.38.17PM_2.jpg?v=1745943778&width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-10at3.38.17PM_2.jpg?v=1745943778&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">
<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">
<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>
</svg></div>
</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">
<span class="sr-only">Sale price</span>From $19.99</sale-price>
<compare-at-price class="text-subdued line-through">
<span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
</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">
<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&width=2048" alt="Gio - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_00-39-28-870.jpg?v=1742362165&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-13at9.44.54PM_2.jpg?v=1742362165&width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-13at9.44.54PM_2.jpg?v=1742362165&width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-13at9.44.54PM_2.jpg?v=1742362165&width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-13at9.44.54PM_2.jpg?v=1742362165&width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-13at9.44.54PM_2.jpg?v=1742362165&width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-13at9.44.54PM_2.jpg?v=1742362165&width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-13at9.44.54PM_2.jpg?v=1742362165&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">
<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">
<span class="sr-only">Sale price</span>From $19.99</sale-price>
<compare-at-price class="text-subdued line-through">
<span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
</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">
<a href="/products/pineapple-beach" data-instant><img src="//houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&width=2560" alt="Pineapple Beach - Monac" srcset="//houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&width=200 200w, //houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&width=300 300w, //houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&width=400 400w, //houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&width=500 500w, //houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&width=600 600w, //houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&width=700 700w, //houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&width=800 800w, //houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Pineapple_beach.jpg?v=1742311570&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&width=1080" alt="Pineapple Beach Gourmand Fragrance" srcset="//houseofmonac.com/cdn/shop/files/IMG-20240710-WA0021.jpg?v=1742311570&width=200 200w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0021.jpg?v=1742311570&width=300 300w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0021.jpg?v=1742311570&width=400 400w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0021.jpg?v=1742311570&width=500 500w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0021.jpg?v=1742311570&width=600 600w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0021.jpg?v=1742311570&width=700 700w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0021.jpg?v=1742311570&width=800 800w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0021.jpg?v=1742311570&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">
<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">
<span class="sr-only">Sale price</span>From $19.99
</sale-price></price-list></div></div>
</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">
<a href="/products/vanilla-rose-inspired-by-mancera-roses-vanilla" data-instant><img src="//houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&width=2048" alt="Vanilla Rose Inspired By Mancera Roses Vanilla" srcset="//houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&width=200 200w, //houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&width=300 300w, //houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&width=400 400w, //houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&width=500 500w, //houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&width=600 600w, //houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&width=700 700w, //houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&width=800 800w, //houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Vanilla_Rose.jpg?v=1743623227&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-09-53-089.jpg?v=1743623227&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-09-53-089.jpg?v=1743623227&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-09-53-089.jpg?v=1743623227&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-09-53-089.jpg?v=1743623227&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-09-53-089.jpg?v=1743623227&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-09-53-089.jpg?v=1743623227&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-09-53-089.jpg?v=1743623227&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-09-53-089.jpg?v=1743623227&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-09-53-089.jpg?v=1743623227&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-09-53-089.jpg?v=1743623227&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-09-53-089.jpg?v=1743623227&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">
<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">
<span class="sr-only">Sale price</span>From $19.99</sale-price>
<compare-at-price class="text-subdued line-through">
<span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
</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">
<a href="/products/warm-apple-pie" data-instant><img src="//houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&width=2560" alt="Warm Apple Pie - Monac" srcset="//houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&width=200 200w, //houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&width=300 300w, //houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&width=400 400w, //houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&width=500 500w, //houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&width=600 600w, //houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&width=700 700w, //houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&width=800 800w, //houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&width=1000 1000w, //houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&width=1200 1200w, //houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&width=1400 1400w, //houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&width=1600 1600w, //houseofmonac.com/cdn/shop/files/warm_apple_pie.jpg?v=1742312248&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM.jpg?v=1742312248&width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM.jpg?v=1742312248&width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM.jpg?v=1742312248&width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM.jpg?v=1742312248&width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM.jpg?v=1742312248&width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM.jpg?v=1742312248&width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM.jpg?v=1742312248&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">
<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">
<span class="sr-only">Sale price</span>From $19.99
</sale-price></price-list></div></div>
</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">
<a href="/products/strawberry-shortcake" data-instant><img src="//houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&width=2560" alt="Strawberry Shortcake - Monac" srcset="//houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&width=200 200w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&width=300 300w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&width=400 400w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&width=500 500w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&width=600 600w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&width=700 700w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&width=800 800w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&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">
<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">
<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>
</svg></div>
</a></div><p style="background-color:#F4F4F4;"></p><price-list class="price-list " ><sale-price class="text-subdued">
<span class="sr-only">Sale price</span>From $19.99
</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_17-49-27-058.jpg?v=1743697009&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_17-49-27-058.jpg?v=1743697009&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_17-49-27-058.jpg?v=1743697009&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_17-49-27-058.jpg?v=1743697009&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_17-49-27-058.jpg?v=1743697009&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_17-49-27-058.jpg?v=1743697009&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_17-49-27-058.jpg?v=1743697009&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_17-49-27-058.jpg?v=1743697009&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_17-49-27-058.jpg?v=1743697009&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_17-49-27-058.jpg?v=1743697009&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_17-49-27-058.jpg?v=1743697009&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-09-06_14-33-20-882.jpg?v=1743697010&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-09-06_14-33-20-882.jpg?v=1743697010&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-09-06_14-33-20-882.jpg?v=1743697010&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-09-06_14-33-20-882.jpg?v=1743697010&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-09-06_14-33-20-882.jpg?v=1743697010&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-09-06_14-33-20-882.jpg?v=1743697010&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-09-06_14-33-20-882.jpg?v=1743697010&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">
<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">
<span class="sr-only">Sale price</span>From $19.99</sale-price>
<compare-at-price class="text-subdued line-through">
<span class="sr-only">Regular price</span>$29.00</compare-at-price></price-list></div></div>
</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">
<a href="/products/arab-tonka-inspired-by-montale-arabians-tonka" data-instant><img src="//houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&width=2560" alt="Arab Tonka Inspired By Montale Arabians Tonka" srcset="//houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&width=200 200w, //houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&width=300 300w, //houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&width=400 400w, //houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&width=500 500w, //houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&width=600 600w, //houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&width=700 700w, //houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&width=800 800w, //houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Arab_Tonka.jpg?v=1743017264&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-35-53-522.jpg?v=1743017263&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-35-53-522.jpg?v=1743017263&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-35-53-522.jpg?v=1743017263&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-35-53-522.jpg?v=1743017263&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-35-53-522.jpg?v=1743017263&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-35-53-522.jpg?v=1743017263&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-35-53-522.jpg?v=1743017263&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-35-53-522.jpg?v=1743017263&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-35-53-522.jpg?v=1743017263&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-35-53-522.jpg?v=1743017263&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-35-53-522.jpg?v=1743017263&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">
<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">
<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>
</svg></div>
</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">
<span class="sr-only">Sale price</span>From $19.99</sale-price>
<compare-at-price class="text-subdued line-through">
<span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
</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">
<a href="/products/wild-berry-cheese-cake" data-instant><img src="//houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&width=2560" alt="Wild Berry Cheese Cake - Monac" srcset="//houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&width=200 200w, //houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&width=300 300w, //houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&width=400 400w, //houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&width=500 500w, //houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&width=600 600w, //houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&width=700 700w, //houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&width=800 800w, //houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Wild_Berry_Cheesecake.jpg?v=1742311818&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.37.33PM.jpg?v=1742311818&width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.37.33PM.jpg?v=1742311818&width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.37.33PM.jpg?v=1742311818&width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.37.33PM.jpg?v=1742311818&width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.37.33PM.jpg?v=1742311818&width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.37.33PM.jpg?v=1742311818&width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.37.33PM.jpg?v=1742311818&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">
<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">
<span class="sr-only">Sale price</span>From $19.99
</sale-price></price-list></div></div>
</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">
<a href="/products/watermelon-lemonade" data-instant><img src="//houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&width=2560" alt="Watermelon Lemonade - Monac" srcset="//houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&width=200 200w, //houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&width=300 300w, //houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&width=400 400w, //houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&width=500 500w, //houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&width=600 600w, //houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&width=700 700w, //houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&width=800 800w, //houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Watermelon_lemonade.jpg?v=1742311965&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-12_17-30-08-245.jpg?v=1742311965&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-12_17-30-08-245.jpg?v=1742311965&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-12_17-30-08-245.jpg?v=1742311965&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-12_17-30-08-245.jpg?v=1742311965&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-12_17-30-08-245.jpg?v=1742311965&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-12_17-30-08-245.jpg?v=1742311965&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-12_17-30-08-245.jpg?v=1742311965&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">
<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">
<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>
</svg></div>
</a></div><p style="background-color:#F4F4F4;"></p><price-list class="price-list " ><sale-price class="text-subdued">
<span class="sr-only">Sale price</span>From $19.99
</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-41-09-505.jpg?v=1749581298&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-41-09-505.jpg?v=1749581298&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-41-09-505.jpg?v=1749581298&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-41-09-505.jpg?v=1749581298&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-41-09-505.jpg?v=1749581298&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-41-09-505.jpg?v=1749581298&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-41-09-505.jpg?v=1749581298&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-41-09-505.jpg?v=1749581298&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-41-09-505.jpg?v=1749581298&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-41-09-505.jpg?v=1749581298&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-41-09-505.jpg?v=1749581298&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-50-05-969.jpg?v=1749581299&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-50-05-969.jpg?v=1749581299&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-50-05-969.jpg?v=1749581299&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-50-05-969.jpg?v=1749581299&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-50-05-969.jpg?v=1749581299&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-50-05-969.jpg?v=1749581299&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-50-05-969.jpg?v=1749581299&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-50-05-969.jpg?v=1749581299&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-50-05-969.jpg?v=1749581299&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-50-05-969.jpg?v=1749581299&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-10_13-50-05-969.jpg?v=1749581299&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">
<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">
<span class="sr-only">Sale price</span>From $29.00</sale-price></price-list></div></div>
</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">
<a href="/products/sugar-cookie" data-instant><img src="//houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&width=2560" alt="Sugar Cookie - Monac" srcset="//houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&width=200 200w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&width=300 300w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&width=400 400w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&width=500 500w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&width=600 600w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&width=700 700w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&width=800 800w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&width=1000 1000w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&width=1200 1200w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&width=1400 1400w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&width=1600 1600w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&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">
<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">
<span class="sr-only">Sale price</span>From $19.99
</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_13-51-51-187.jpg?v=1743627933&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_13-51-51-187.jpg?v=1743627933&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_13-51-51-187.jpg?v=1743627933&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_13-51-51-187.jpg?v=1743627933&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_13-51-51-187.jpg?v=1743627933&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_13-51-51-187.jpg?v=1743627933&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_13-51-51-187.jpg?v=1743627933&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_13-51-51-187.jpg?v=1743627933&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_13-51-51-187.jpg?v=1743627933&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_13-51-51-187.jpg?v=1743627933&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-19_13-51-51-187.jpg?v=1743627933&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.25PM_2.jpg?v=1743627933&width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.25PM_2.jpg?v=1743627933&width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.25PM_2.jpg?v=1743627933&width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.25PM_2.jpg?v=1743627933&width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.25PM_2.jpg?v=1743627933&width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.25PM_2.jpg?v=1743627933&width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-09at8.54.25PM_2.jpg?v=1743627933&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">
<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">
<span class="sr-only">Sale price</span>From $19.00</sale-price>
<compare-at-price class="text-subdued line-through">
<span class="sr-only">Regular price</span>$29.00</compare-at-price></price-list></div></div>
</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">
<a href="/products/rose-bomb-inspired-by-initio-atomic-rose" data-instant><img src="//houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&width=2048" alt="Rose Bomb Inspired By Initio Atomic Rose" srcset="//houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&width=200 200w, //houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&width=300 300w, //houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&width=400 400w, //houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&width=500 500w, //houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&width=600 600w, //houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&width=700 700w, //houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&width=800 800w, //houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Rose_Bomb.jpg?v=1743698071&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-57-21-096.jpg?v=1743698071&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-57-21-096.jpg?v=1743698071&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-57-21-096.jpg?v=1743698071&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-57-21-096.jpg?v=1743698071&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-57-21-096.jpg?v=1743698071&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-57-21-096.jpg?v=1743698071&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-57-21-096.jpg?v=1743698071&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">
<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">
<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>
</svg></div>
</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">
<span class="sr-only">Sale price</span>From $19.99</sale-price>
<compare-at-price class="text-subdued line-through">
<span class="sr-only">Regular price</span>$29.00</compare-at-price></price-list></div></div>
</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">
<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&width=2560" alt="Crush Inspired By Mancera Instant Crush" srcset="//houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&width=200 200w, //houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&width=300 300w, //houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&width=400 400w, //houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&width=500 500w, //houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&width=600 600w, //houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&width=700 700w, //houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&width=800 800w, //houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Crush_015f7d12-dd36-4450-9d2d-4e7fac3121e4.jpg?v=1750100061&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-21-00-609.jpg?v=1750100060&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-21-00-609.jpg?v=1750100060&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-21-00-609.jpg?v=1750100060&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-21-00-609.jpg?v=1750100060&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-21-00-609.jpg?v=1750100060&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-21-00-609.jpg?v=1750100060&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-21-00-609.jpg?v=1750100060&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-21-00-609.jpg?v=1750100060&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-21-00-609.jpg?v=1750100060&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-21-00-609.jpg?v=1750100060&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-21-00-609.jpg?v=1750100060&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">
<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">
<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>
</svg></div>
</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">
<span class="sr-only">Sale price</span>From $19.99</sale-price>
<compare-at-price class="text-subdued line-through">
<span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
</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">
<a href="/products/lome-inspired-by-yves-saint-laurent-lhomme" data-instant><img src="//houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&width=2048" alt="Lome Inspired By Yves Saint Laurent LHomme" srcset="//houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&width=200 200w, //houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&width=300 300w, //houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&width=400 400w, //houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&width=500 500w, //houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&width=600 600w, //houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&width=700 700w, //houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&width=800 800w, //houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Lome.jpg?v=1743702364&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&width=1080" alt="Lome Inspired By Yves Saint Laurent L'Homme" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-49-09-608.jpg?v=1743702364&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-49-09-608.jpg?v=1743702364&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-49-09-608.jpg?v=1743702364&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-49-09-608.jpg?v=1743702364&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-49-09-608.jpg?v=1743702364&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-49-09-608.jpg?v=1743702364&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-49-09-608.jpg?v=1743702364&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-49-09-608.jpg?v=1743702364&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">
<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">
<span class="sr-only">Sale price</span>From $19.99</sale-price>
<compare-at-price class="text-subdued line-through">
<span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_16-06-31-114.jpg?v=1743102578&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_16-06-31-114.jpg?v=1743102578&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_16-06-31-114.jpg?v=1743102578&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_16-06-31-114.jpg?v=1743102578&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_16-06-31-114.jpg?v=1743102578&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_16-06-31-114.jpg?v=1743102578&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_16-06-31-114.jpg?v=1743102578&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_16-06-31-114.jpg?v=1743102578&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_16-06-31-114.jpg?v=1743102578&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_16-06-31-114.jpg?v=1743102578&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-18_16-06-31-114.jpg?v=1743102578&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-48-01-239.jpg?v=1743102579&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-48-01-239.jpg?v=1743102579&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-48-01-239.jpg?v=1743102579&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-48-01-239.jpg?v=1743102579&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-48-01-239.jpg?v=1743102579&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-48-01-239.jpg?v=1743102579&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-48-01-239.jpg?v=1743102579&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-48-01-239.jpg?v=1743102579&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-48-01-239.jpg?v=1743102579&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-48-01-239.jpg?v=1743102579&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-48-01-239.jpg?v=1743102579&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">
<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">
<span class="sr-only">Sale price</span>From $19.99</sale-price>
<compare-at-price class="text-subdued line-through">
<span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
</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">
<a href="/products/newclius-inspired-by-xerjoff-newcleus" data-instant><img src="//houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&width=2560" alt="Newclius Inspired By Xerjoff Newcleus" srcset="//houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&width=200 200w, //houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&width=300 300w, //houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&width=400 400w, //houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&width=500 500w, //houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&width=600 600w, //houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&width=700 700w, //houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&width=800 800w, //houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&width=1000 1000w, //houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&width=1200 1200w, //houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&width=1400 1400w, //houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&width=1600 1600w, //houseofmonac.com/cdn/shop/files/newcluis.jpg?v=1743017629&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-10-43-646.jpg?v=1743017629&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-10-43-646.jpg?v=1743017629&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-10-43-646.jpg?v=1743017629&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-10-43-646.jpg?v=1743017629&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-10-43-646.jpg?v=1743017629&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-10-43-646.jpg?v=1743017629&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-10-43-646.jpg?v=1743017629&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-10-43-646.jpg?v=1743017629&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-10-43-646.jpg?v=1743017629&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-10-43-646.jpg?v=1743017629&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-20_13-10-43-646.jpg?v=1743017629&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">
<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">
<span class="sr-only">Sale price</span>From $19.99</sale-price>
<compare-at-price class="text-subdued line-through">
<span class="sr-only">Regular price</span>$29.00</compare-at-price></price-list></div></div>
</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">
<a href="/products/divine-cherry-pie" data-instant><img src="//houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&width=2560" alt="Divine Cherry Pie - Monac" srcset="//houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&width=200 200w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&width=300 300w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&width=400 400w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&width=500 500w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&width=600 600w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&width=700 700w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&width=800 800w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&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">
<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">
<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>
</svg></div>
</a></div><p style="background-color:#F4F4F4;"></p><price-list class="price-list " ><sale-price class="text-subdued">
<span class="sr-only">Sale price</span>From $19.99
</sale-price></price-list></div></div>
</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">
<a href="/products/key-lime-gelato" data-instant><img src="//houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&width=2560" alt="Key Lime Gelato - Monac" srcset="//houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&width=200 200w, //houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&width=300 300w, //houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&width=400 400w, //houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&width=500 500w, //houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&width=600 600w, //houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&width=700 700w, //houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&width=800 800w, //houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Key_Lime_Gelato.jpg?v=1742311867&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&width=1080" alt="Key Lime Gelato gourmand fragrance" srcset="//houseofmonac.com/cdn/shop/files/IMG-20240710-WA0022.jpg?v=1742311867&width=200 200w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0022.jpg?v=1742311867&width=300 300w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0022.jpg?v=1742311867&width=400 400w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0022.jpg?v=1742311867&width=500 500w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0022.jpg?v=1742311867&width=600 600w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0022.jpg?v=1742311867&width=700 700w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0022.jpg?v=1742311867&width=800 800w, //houseofmonac.com/cdn/shop/files/IMG-20240710-WA0022.jpg?v=1742311867&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">
<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">
<span class="sr-only">Sale price</span>From $19.99
</sale-price></price-list></div></div>
</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">
<a href="/products/spicy-inspired-by-t-ford-bitter-peach" data-instant><img src="//houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&width=2048" alt="Spicy Inspired by T Ford Bitter Peach" srcset="//houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&width=200 200w, //houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&width=300 300w, //houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&width=400 400w, //houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&width=500 500w, //houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&width=600 600w, //houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&width=700 700w, //houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&width=800 800w, //houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Spicy.jpg?v=1743701164&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-26_12-47-16-674.jpg?v=1743701164&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-26_12-47-16-674.jpg?v=1743701164&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-26_12-47-16-674.jpg?v=1743701164&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-26_12-47-16-674.jpg?v=1743701164&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-26_12-47-16-674.jpg?v=1743701164&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-26_12-47-16-674.jpg?v=1743701164&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-26_12-47-16-674.jpg?v=1743701164&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">
<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">
<span class="sr-only">Sale price</span>From $19.99</sale-price>
<compare-at-price class="text-subdued line-through">
<span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
</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">
<a href="/products/red-tobac-inspired-by-mancera-red-tobacco" data-instant><img src="//houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&width=2048" alt="Red Tobac Inspired By Mancera Red Tobacco" srcset="//houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&width=200 200w, //houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&width=300 300w, //houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&width=400 400w, //houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&width=500 500w, //houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&width=600 600w, //houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&width=700 700w, //houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&width=800 800w, //houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Red_Tobac.jpg?v=1743623180&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-30-45-172.jpg?v=1743623180&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-30-45-172.jpg?v=1743623180&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-30-45-172.jpg?v=1743623180&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-30-45-172.jpg?v=1743623180&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-30-45-172.jpg?v=1743623180&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-30-45-172.jpg?v=1743623180&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-30-45-172.jpg?v=1743623180&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-30-45-172.jpg?v=1743623180&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-30-45-172.jpg?v=1743623180&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-30-45-172.jpg?v=1743623180&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-06_14-30-45-172.jpg?v=1743623180&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">
<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">
<span class="sr-only">Sale price</span>From $19.99</sale-price>
<compare-at-price class="text-subdued line-through">
<span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
</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">
<a href="/products/chance-inspired-by-chanel-chance" data-instant><img src="//houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&width=2560" alt="Chance Inspired By Chanel Chance" srcset="//houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&width=200 200w, //houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&width=300 300w, //houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&width=400 400w, //houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&width=500 500w, //houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&width=600 600w, //houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&width=700 700w, //houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&width=800 800w, //houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Chance.jpg?v=1743102427&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-09_11-13-27-199.jpg?v=1743102425&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-09_11-13-27-199.jpg?v=1743102425&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-09_11-13-27-199.jpg?v=1743102425&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-09_11-13-27-199.jpg?v=1743102425&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-09_11-13-27-199.jpg?v=1743102425&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-09_11-13-27-199.jpg?v=1743102425&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-09_11-13-27-199.jpg?v=1743102425&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">
<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">
<span class="sr-only">Sale price</span>From $19.99</sale-price>
<compare-at-price class="text-subdued line-through">
<span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
</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">
<a href="/products/angelic-man-inspired-by-a-men" data-instant><img src="//houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&width=2048" alt="Angelic Man Inspired By A Men" srcset="//houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&width=200 200w, //houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&width=300 300w, //houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&width=400 400w, //houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&width=500 500w, //houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&width=600 600w, //houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&width=700 700w, //houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&width=800 800w, //houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&width=1000 1000w, //houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&width=1200 1200w, //houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&width=1400 1400w, //houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&width=1600 1600w, //houseofmonac.com/cdn/shop/files/71nU14uMVFL.jpg?v=1743102390&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-08_14-47-29-107.jpg?v=1743102390&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-08_14-47-29-107.jpg?v=1743102390&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-08_14-47-29-107.jpg?v=1743102390&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-08_14-47-29-107.jpg?v=1743102390&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-08_14-47-29-107.jpg?v=1743102390&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-08_14-47-29-107.jpg?v=1743102390&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-08_14-47-29-107.jpg?v=1743102390&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-08_14-47-29-107.jpg?v=1743102390&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-08_14-47-29-107.jpg?v=1743102390&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-08_14-47-29-107.jpg?v=1743102390&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-08_14-47-29-107.jpg?v=1743102390&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">
<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">
<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>
</svg></div>
</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">
<span class="sr-only">Sale price</span>From $19.99</sale-price>
<compare-at-price class="text-subdued line-through">
<span class="sr-only">Regular price</span>$29.99</compare-at-price></price-list></div></div>
</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">
<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&width=2560" alt="Royal Tobac Inspired By Amouage Opus XIV Royal Tobacco" srcset="//houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&width=200 200w, //houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&width=300 300w, //houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&width=400 400w, //houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&width=500 500w, //houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&width=600 600w, //houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&width=700 700w, //houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&width=800 800w, //houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Royal_Tobac.jpg?v=1743096785&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-24_12-51-31-026.jpg?v=1743096785&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-24_12-51-31-026.jpg?v=1743096785&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-24_12-51-31-026.jpg?v=1743096785&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-24_12-51-31-026.jpg?v=1743096785&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-24_12-51-31-026.jpg?v=1743096785&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-24_12-51-31-026.jpg?v=1743096785&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-24_12-51-31-026.jpg?v=1743096785&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-24_12-51-31-026.jpg?v=1743096785&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-24_12-51-31-026.jpg?v=1743096785&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-24_12-51-31-026.jpg?v=1743096785&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-24_12-51-31-026.jpg?v=1743096785&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">
<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">
<span class="sr-only">Sale price</span>From $19.99</sale-price>
<compare-at-price class="text-subdued line-through">
<span class="sr-only">Regular price</span>$25.00</compare-at-price></price-list></div></div>
</product-card></product-list>
</reveal-items>
</scroll-carousel><div class="scrollbar peer-not-scrollable:hidden">
<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">
<button is="prev-button" class="circle-button ring group" aria-controls="scroll-area-template--18347438506258__featured_collection_TYmrnt" disabled>
<span class="sr-only">Previous</span>
<span class="animated-arrow animated-arrow--reverse"></span>
</button>
<button is="next-button" class="circle-button ring group" aria-controls="scroll-area-template--18347438506258__featured_collection_TYmrnt">
<span class="sr-only">Next</span>
<span class="animated-arrow"></span>
</button>
</div></div></div>
</div>
</div>
</section><section id="shopify-section-template--18347438506258__featured-collection" class="shopify-section shopify-section--featured-collection"><style>
#shopify-section-template--18347438506258__featured-collection {
--section-background-hash: 0;
}
#shopify-section-template--18347438506258__featured-collection + * {
--previous-section-background-hash: 0;
}</style><style>#shopify-section-template--18347438506258__featured-collection .product-list {
--product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
--product-list-items-per-row: 2;
--product-list-carousel-item-width: 74vw;
--product-list-grid: auto / auto-flow var(--product-list-carousel-item-width);
}
@media screen and (min-width: 700px) {
#shopify-section-template--18347438506258__featured-collection .product-list {
--product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
--product-list-items-per-row: 2;
--product-list-carousel-item-width: 36vw;
}
}
@media screen and (min-width: 1000px) {
#shopify-section-template--18347438506258__featured-collection .product-list {
--product-list-items-per-row: 4;
--product-list-carousel-item-width: calc(var(--container-inner-width) / 4 - (var(--product-list-column-gap) / 4 * 3));
}
}
</style>
<div class="section section-blends section-full">
<div class="section-stack">
<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">
<span class="reversed-link">View All</span>
<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">
<path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
</svg></span>
</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">
<reveal-items selector=".product-list > *">
<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">
<a href="/products/latte-inspired-by-bianco-latte" data-instant><img src="//houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&width=2560" alt="Latte Inspired By Bianco Latte" srcset="//houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&width=200 200w, //houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&width=300 300w, //houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&width=400 400w, //houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&width=500 500w, //houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&width=600 600w, //houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&width=700 700w, //houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&width=800 800w, //houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Latte.jpg?v=1750109208&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-34-15-361.jpg?v=1750109208&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-34-15-361.jpg?v=1750109208&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-34-15-361.jpg?v=1750109208&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-34-15-361.jpg?v=1750109208&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-34-15-361.jpg?v=1750109208&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-34-15-361.jpg?v=1750109208&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-34-15-361.jpg?v=1750109208&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">
<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">
<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>
</svg></div>
</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">
<span class="sr-only">Sale price</span>From $29.00
</sale-price></price-list></div></div>
</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">
<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&width=1084" alt="Urban inspired Erba Pura" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-03-11_13-44-02-273.jpg?v=1750008447&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-11_13-44-02-273.jpg?v=1750008447&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-11_13-44-02-273.jpg?v=1750008447&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-11_13-44-02-273.jpg?v=1750008447&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-11_13-44-02-273.jpg?v=1750008447&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-11_13-44-02-273.jpg?v=1750008447&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-11_13-44-02-273.jpg?v=1750008447&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-11_13-44-02-273.jpg?v=1750008447&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&width=1080" alt="Urban inspired Erba Pura" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-05-15_15-27-15-779.jpg?v=1750008428&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-15_15-27-15-779.jpg?v=1750008428&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-15_15-27-15-779.jpg?v=1750008428&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-15_15-27-15-779.jpg?v=1750008428&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-15_15-27-15-779.jpg?v=1750008428&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-15_15-27-15-779.jpg?v=1750008428&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-15_15-27-15-779.jpg?v=1750008428&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-05-15_15-27-15-779.jpg?v=1750008428&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">
<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">
<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>
</svg></div>
</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">
<span class="sr-only">Sale price</span>From $29.00
</sale-price></price-list></div></div>
</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">
<a href="/products/valiya-inspired-by-parfums-de-marly-valaya" data-instant><img src="//houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&width=2560" alt="Valiya Inspired By Parfums De Marly Valaya" srcset="//houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&width=200 200w, //houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&width=300 300w, //houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&width=400 400w, //houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&width=500 500w, //houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&width=600 600w, //houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&width=700 700w, //houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&width=800 800w, //houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Valiya.jpg?v=1743698249&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_11-57-25-112.jpg?v=1743698249&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_11-57-25-112.jpg?v=1743698249&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_11-57-25-112.jpg?v=1743698249&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_11-57-25-112.jpg?v=1743698249&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_11-57-25-112.jpg?v=1743698249&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_11-57-25-112.jpg?v=1743698249&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_11-57-25-112.jpg?v=1743698249&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">
<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">
<span class="sr-only">Sale price</span>From $29.00
</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/rn-image_picker_lib_temp_bc8146ef-0afc-4373-b996-75b2536b6971.jpg?v=1743625040&width=300 300w, //houseofmonac.com/cdn/shop/files/rn-image_picker_lib_temp_bc8146ef-0afc-4373-b996-75b2536b6971.jpg?v=1743625040&width=400 400w, //houseofmonac.com/cdn/shop/files/rn-image_picker_lib_temp_bc8146ef-0afc-4373-b996-75b2536b6971.jpg?v=1743625040&width=500 500w, //houseofmonac.com/cdn/shop/files/rn-image_picker_lib_temp_bc8146ef-0afc-4373-b996-75b2536b6971.jpg?v=1743625040&width=600 600w, //houseofmonac.com/cdn/shop/files/rn-image_picker_lib_temp_bc8146ef-0afc-4373-b996-75b2536b6971.jpg?v=1743625040&width=700 700w, //houseofmonac.com/cdn/shop/files/rn-image_picker_lib_temp_bc8146ef-0afc-4373-b996-75b2536b6971.jpg?v=1743625040&width=800 800w, //houseofmonac.com/cdn/shop/files/rn-image_picker_lib_temp_bc8146ef-0afc-4373-b996-75b2536b6971.jpg?v=1743625040&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-04_16-32-57-136.jpg?v=1743625041&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-04_16-32-57-136.jpg?v=1743625041&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-04_16-32-57-136.jpg?v=1743625041&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-04_16-32-57-136.jpg?v=1743625041&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-04_16-32-57-136.jpg?v=1743625041&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-04_16-32-57-136.jpg?v=1743625041&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-04_16-32-57-136.jpg?v=1743625041&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-04_16-32-57-136.jpg?v=1743625041&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-04_16-32-57-136.jpg?v=1743625041&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-04_16-32-57-136.jpg?v=1743625041&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-04_16-32-57-136.jpg?v=1743625041&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">
<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">
<span class="sr-only">Sale price</span>From $29.00
</sale-price></price-list></div></div>
</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">
<a href="/products/hibiscus-inspired-by-hibiscus-mahajad-maison-crivelli" data-instant><img src="//houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&width=2048" alt="Hibiscus Inspired By Hibiscus Mahajad Maison Crivelli" srcset="//houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&width=200 200w, //houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&width=300 300w, //houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&width=400 400w, //houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&width=500 500w, //houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&width=600 600w, //houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&width=700 700w, //houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&width=800 800w, //houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Hibiscus.jpg?v=1743700182&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-13_13-48-41-020.jpg?v=1743700182&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-13_13-48-41-020.jpg?v=1743700182&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-13_13-48-41-020.jpg?v=1743700182&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-13_13-48-41-020.jpg?v=1743700182&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-13_13-48-41-020.jpg?v=1743700182&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-13_13-48-41-020.jpg?v=1743700182&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-13_13-48-41-020.jpg?v=1743700182&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">
<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">
<span class="sr-only">Sale price</span>From $35.00
</sale-price></price-list></div></div>
</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">
<a href="/products/tourino-21-inspired-by-xerjoff-torino-21" data-instant><img src="//houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&width=2560" alt="Tourino 21 Inspired by Xerjoff Torino 21" srcset="//houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&width=200 200w, //houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&width=300 300w, //houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&width=400 400w, //houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&width=500 500w, //houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&width=600 600w, //houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&width=700 700w, //houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&width=800 800w, //houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Tourino_21.jpg?v=1743702156&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_15-13-53-602.jpg?v=1743702157&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_15-13-53-602.jpg?v=1743702157&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_15-13-53-602.jpg?v=1743702157&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_15-13-53-602.jpg?v=1743702157&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_15-13-53-602.jpg?v=1743702157&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_15-13-53-602.jpg?v=1743702157&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_15-13-53-602.jpg?v=1743702157&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">
<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">
<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>
</svg></div>
</a></div><p style="background-color:#F4F4F4;"> Inspired By Torino 21 (Retail $320)</p><price-list class="price-list " ><sale-price class="text-subdued">
<span class="sr-only">Sale price</span>From $29.00
</sale-price></price-list></div></div>
</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">
<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&width=3464" alt="The Man Elixir - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-52-31-648.jpg?v=1741806206&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-30_17-02-49-184.jpg?v=1741806206&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-30_17-02-49-184.jpg?v=1741806206&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-30_17-02-49-184.jpg?v=1741806206&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-30_17-02-49-184.jpg?v=1741806206&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-30_17-02-49-184.jpg?v=1741806206&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-30_17-02-49-184.jpg?v=1741806206&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-04-30_17-02-49-184.jpg?v=1741806206&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">
<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">
<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>
</svg></div>
</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">
<span class="sr-only">Sale price</span>From $29.00
</sale-price></price-list></div></div>
</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">
<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&width=2048" alt="Sexy Vanilla Inspired by Tom Ford Vanilla Sex" srcset="//houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&width=200 200w, //houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&width=300 300w, //houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&width=400 400w, //houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&width=500 500w, //houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&width=600 600w, //houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&width=700 700w, //houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&width=800 800w, //houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Sexy_Vanilla.jpg?v=1743704642&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-40-04-982.jpg?v=1743704642&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-40-04-982.jpg?v=1743704642&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-40-04-982.jpg?v=1743704642&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-40-04-982.jpg?v=1743704642&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-40-04-982.jpg?v=1743704642&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-40-04-982.jpg?v=1743704642&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-07-23_13-40-04-982.jpg?v=1743704642&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">
<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">
<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>
</svg></div>
</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">
<span class="sr-only">Sale price</span>From $29.00
</sale-price></price-list></div></div>
</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">
<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&width=3464" alt="Harmony Inspired By Symphony" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-09_13-37-36-362.jpg?v=1745940308&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&width=1080" alt="Harmony Inspired By Symphony" srcset="//houseofmonac.com/cdn/shop/files/61OhZLawDXL.jpg?v=1745940308&width=200 200w, //houseofmonac.com/cdn/shop/files/61OhZLawDXL.jpg?v=1745940308&width=300 300w, //houseofmonac.com/cdn/shop/files/61OhZLawDXL.jpg?v=1745940308&width=400 400w, //houseofmonac.com/cdn/shop/files/61OhZLawDXL.jpg?v=1745940308&width=500 500w, //houseofmonac.com/cdn/shop/files/61OhZLawDXL.jpg?v=1745940308&width=600 600w, //houseofmonac.com/cdn/shop/files/61OhZLawDXL.jpg?v=1745940308&width=700 700w, //houseofmonac.com/cdn/shop/files/61OhZLawDXL.jpg?v=1745940308&width=800 800w, //houseofmonac.com/cdn/shop/files/61OhZLawDXL.jpg?v=1745940308&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">
<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">
<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>
</svg></div>
</a></div><p style="background-color:#F4F4F4;"> Inspired By Symphony (Retail $400)</p><price-list class="price-list " ><sale-price class="text-subdued">
<span class="sr-only">Sale price</span>From $35.00
</sale-price></price-list></div></div>
</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">
<a href="/products/imagine-inspired-by-imagination" data-instant><img src="//houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&width=2560" alt="Imagine Inspired by Imagination" srcset="//houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&width=200 200w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&width=300 300w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&width=400 400w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&width=500 500w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&width=600 600w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&width=700 700w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&width=800 800w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&width=1000 1000w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&width=1200 1200w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&width=1400 1400w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&width=1600 1600w, //houseofmonac.com/cdn/shop/files/imagine.jpg?v=1750008281&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&width=3464" alt="Imagine Inspired by Imagination" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_24-06-18_10-42-20-192.jpg?v=1750008281&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">
<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">
<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>
</svg></div>
</a></div><p style="background-color:#F4F4F4;"> Inspired By Imagination (Retail $400)</p><price-list class="price-list " ><sale-price class="text-subdued">
<span class="sr-only">Sale price</span>From $35.00
</sale-price></price-list></div></div>
</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">
<a href="/products/delightful-narcotics-inspired-by-narcotic-delight" data-instant><img src="//houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&width=2048" alt="Delightful Narcotics Inspired By Narcotic Delight" srcset="//houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&width=200 200w, //houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&width=300 300w, //houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&width=400 400w, //houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&width=500 500w, //houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&width=600 600w, //houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&width=700 700w, //houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&width=800 800w, //houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Delightful_Narcotics.jpg?v=1750109615&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-44-34-605.jpg?v=1750109615&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-44-34-605.jpg?v=1750109615&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-44-34-605.jpg?v=1750109615&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-44-34-605.jpg?v=1750109615&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-44-34-605.jpg?v=1750109615&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-44-34-605.jpg?v=1750109615&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-29_12-44-34-605.jpg?v=1750109615&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">
<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">
<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>
</svg></div>
</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">
<span class="sr-only">Sale price</span>From $29.00
</sale-price></price-list></div></div>
</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">
<a href="/products/540-inspired-by-baccarat-rouge-540" data-instant><img src="//houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&width=2048" alt="540 Inspired By Baccarat Rouge 540" srcset="//houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&width=200 200w, //houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&width=300 300w, //houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&width=400 400w, //houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&width=500 500w, //houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&width=600 600w, //houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&width=700 700w, //houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&width=800 800w, //houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&width=1000 1000w, //houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&width=1200 1200w, //houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&width=1400 1400w, //houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&width=1600 1600w, //houseofmonac.com/cdn/shop/files/540_Extrait.jpg?v=1750109998&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&width=1080" alt="540 Inspired By Baccarat Rouge 540" srcset="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-29at11.13.46AM.jpg?v=1750109998&width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-29at11.13.46AM.jpg?v=1750109998&width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-29at11.13.46AM.jpg?v=1750109998&width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-29at11.13.46AM.jpg?v=1750109998&width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-29at11.13.46AM.jpg?v=1750109998&width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-29at11.13.46AM.jpg?v=1750109998&width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-29at11.13.46AM.jpg?v=1750109998&width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-29at11.13.46AM.jpg?v=1750109998&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">
<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">
<span class="sr-only">Sale price</span>From $35.00
</sale-price></price-list></div></div>
</product-card></product-list>
</reveal-items>
</scroll-carousel><div class="scrollbar peer-not-scrollable:hidden">
<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">
<button is="prev-button" class="circle-button ring group" aria-controls="scroll-area-template--18347438506258__featured-collection" disabled>
<span class="sr-only">Previous</span>
<span class="animated-arrow animated-arrow--reverse"></span>
</button>
<button is="next-button" class="circle-button ring group" aria-controls="scroll-area-template--18347438506258__featured-collection">
<span class="sr-only">Next</span>
<span class="animated-arrow"></span>
</button>
</div></div></div>
</div>
</div>
</section><section id="shopify-section-template--18347438506258__5de445ce-7255-472a-acf5-a25c8c902b93" class="shopify-section shopify-section--scrolling-text"><style>
#shopify-section-template--18347438506258__5de445ce-7255-472a-acf5-a25c8c902b93 {
--section-background-hash: 0;
}
#shopify-section-template--18347438506258__5de445ce-7255-472a-acf5-a25c8c902b93 + * {
--previous-section-background-hash: 0;
}</style><style>
#shopify-section-template--18347438506258__5de445ce-7255-472a-acf5-a25c8c902b93 {
--section-spacing-inline: 0;
--scrolling-text-font-size: 3.75rem;
}
@media screen and (min-width: 700px) {
#shopify-section-template--18347438506258__5de445ce-7255-472a-acf5-a25c8c902b93 {
--scrolling-text-font-size: 5rem;
}
}
</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>
</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>
#shopify-section-template--18347438506258__a6a54990-6782-4328-858c-337aa34d364f {
--section-background-hash: 0;
}
#shopify-section-template--18347438506258__a6a54990-6782-4328-858c-337aa34d364f + * {
--previous-section-background-hash: 0;
}</style><style>#shopify-section-template--18347438506258__a6a54990-6782-4328-858c-337aa34d364f .product-list {
--product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
--product-list-items-per-row: 2;
--product-list-carousel-item-width: 74vw;
--product-list-grid: auto / auto-flow var(--product-list-carousel-item-width);
}
@media screen and (min-width: 700px) {
#shopify-section-template--18347438506258__a6a54990-6782-4328-858c-337aa34d364f .product-list {
--product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
--product-list-items-per-row: 2;
--product-list-carousel-item-width: 36vw;
}
}
@media screen and (min-width: 1000px) {
#shopify-section-template--18347438506258__a6a54990-6782-4328-858c-337aa34d364f .product-list {
--product-list-items-per-row: 5;
--product-list-carousel-item-width: calc(var(--container-inner-width) / 5 - (var(--product-list-column-gap) / 5 * 4));
}
}
</style>
<div class="section section-blends section-full">
<div class="section-stack">
<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">
<span class="reversed-link">View all</span>
<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">
<path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
</svg></span>
</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">
<reveal-items selector=".product-list > *">
<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">
<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&width=1080" alt="540 Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-36-12-245.jpg?v=1750549133&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-56-50-397.jpg?v=1750549133&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-56-50-397.jpg?v=1750549133&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-56-50-397.jpg?v=1750549133&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-56-50-397.jpg?v=1750549133&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-56-50-397.jpg?v=1750549133&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-56-50-397.jpg?v=1750549133&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-56-50-397.jpg?v=1750549133&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">
<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">
<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>
</svg></div>
</a></div><p style="background-color:#F4F4F4;"> Inspired By Baccarat Rouge 540</p><price-list class="price-list " ><sale-price class="text-subdued">
<span class="sr-only">Sale price</span>$20.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-15_14-02-35-632.jpg?v=1747750975&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-15_14-02-35-632.jpg?v=1747750975&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-15_14-02-35-632.jpg?v=1747750975&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-15_14-02-35-632.jpg?v=1747750975&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-15_14-02-35-632.jpg?v=1747750975&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-15_14-02-35-632.jpg?v=1747750975&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-15_14-02-35-632.jpg?v=1747750975&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_12-22-49-323.jpg?v=1747750976&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_12-22-49-323.jpg?v=1747750976&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_12-22-49-323.jpg?v=1747750976&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_12-22-49-323.jpg?v=1747750976&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_12-22-49-323.jpg?v=1747750976&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_12-22-49-323.jpg?v=1747750976&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_12-22-49-323.jpg?v=1747750976&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">
<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">
<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>
</svg></div>
</a></div><p style="background-color:#F4F4F4;"> Inspired By Imagination </p><price-list class="price-list " ><sale-price class="text-subdued">
<span class="sr-only">Sale price</span>$20.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-32-50-539.jpg?v=1750109277&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-32-50-539.jpg?v=1750109277&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-32-50-539.jpg?v=1750109277&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-32-50-539.jpg?v=1750109277&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-32-50-539.jpg?v=1750109277&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-32-50-539.jpg?v=1750109277&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-32-50-539.jpg?v=1750109277&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-56-22-012.jpg?v=1750109274&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-56-22-012.jpg?v=1750109274&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-56-22-012.jpg?v=1750109274&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-56-22-012.jpg?v=1750109274&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-56-22-012.jpg?v=1750109274&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-56-22-012.jpg?v=1750109274&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-56-22-012.jpg?v=1750109274&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">
<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">
<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>
</svg></div>
</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">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_13-00-54-295.jpg?v=1750008609&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_13-00-54-295.jpg?v=1750008609&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_13-00-54-295.jpg?v=1750008609&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_13-00-54-295.jpg?v=1750008609&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_13-00-54-295.jpg?v=1750008609&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_13-00-54-295.jpg?v=1750008609&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_13-00-54-295.jpg?v=1750008609&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_12-59-47-741.jpg?v=1750008609&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_12-59-47-741.jpg?v=1750008609&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_12-59-47-741.jpg?v=1750008609&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_12-59-47-741.jpg?v=1750008609&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_12-59-47-741.jpg?v=1750008609&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_12-59-47-741.jpg?v=1750008609&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-29_12-59-47-741.jpg?v=1750008609&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">
<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">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="Aventor Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-50-59-884.jpg?v=1750283592&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-50-59-884.jpg?v=1750283592&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-50-59-884.jpg?v=1750283592&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-50-59-884.jpg?v=1750283592&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-50-59-884.jpg?v=1750283592&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-50-59-884.jpg?v=1750283592&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-50-59-884.jpg?v=1750283592&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-50-59-884.jpg?v=1750283592&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&width=1084" alt="Aventor Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-51-36-376.jpg?v=1750283592&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-51-36-376.jpg?v=1750283592&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-51-36-376.jpg?v=1750283592&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-51-36-376.jpg?v=1750283592&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-51-36-376.jpg?v=1750283592&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-51-36-376.jpg?v=1750283592&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-51-36-376.jpg?v=1750283592&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-51-36-376.jpg?v=1750283592&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">
<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">
<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>
</svg></div>
</a></div><p style="background-color:#F4F4F4;"> Inspired By Creed Aventus</p><price-list class="price-list " ><sale-price class="text-subdued">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-26-758.jpg?v=1743713870&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-26-758.jpg?v=1743713870&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-26-758.jpg?v=1743713870&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-26-758.jpg?v=1743713870&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-26-758.jpg?v=1743713870&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-26-758.jpg?v=1743713870&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-26-758.jpg?v=1743713870&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-31-55-102.jpg?v=1743713870&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-31-55-102.jpg?v=1743713870&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-31-55-102.jpg?v=1743713870&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-31-55-102.jpg?v=1743713870&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-31-55-102.jpg?v=1743713870&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-31-55-102.jpg?v=1743713870&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-31-55-102.jpg?v=1743713870&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">
<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">
<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>
</svg></div>
</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">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="Cherry Body Lotion - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-33-240.jpg?v=1731698944&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-33-240.jpg?v=1731698944&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-33-240.jpg?v=1731698944&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-33-240.jpg?v=1731698944&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-33-240.jpg?v=1731698944&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-33-240.jpg?v=1731698944&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-33-240.jpg?v=1731698944&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-33-240.jpg?v=1731698944&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&width=1080" alt="Cherry Body Lotion - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-13-21-296.jpg?v=1731698944&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-13-21-296.jpg?v=1731698944&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-13-21-296.jpg?v=1731698944&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-13-21-296.jpg?v=1731698944&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-13-21-296.jpg?v=1731698944&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-13-21-296.jpg?v=1731698944&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-13-21-296.jpg?v=1731698944&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-13-21-296.jpg?v=1731698944&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">
<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">
<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>
</svg></div>
</a></div><p style="background-color:#F4F4F4;">inspired by Tom Ford Lost Cherry </p><price-list class="price-list " ><sale-price class="text-subdued">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-53-028.jpg?v=1743713939&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-53-028.jpg?v=1743713939&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-53-028.jpg?v=1743713939&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-53-028.jpg?v=1743713939&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-53-028.jpg?v=1743713939&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-53-028.jpg?v=1743713939&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-53-028.jpg?v=1743713939&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-09-18-103.jpg?v=1743713940&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-09-18-103.jpg?v=1743713940&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-09-18-103.jpg?v=1743713940&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-09-18-103.jpg?v=1743713940&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-09-18-103.jpg?v=1743713940&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-09-18-103.jpg?v=1743713940&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-09-18-103.jpg?v=1743713940&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">
<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">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="Divine Body Lotion - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-00-424.jpg?v=1731699136&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-00-424.jpg?v=1731699136&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-00-424.jpg?v=1731699136&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-00-424.jpg?v=1731699136&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-00-424.jpg?v=1731699136&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-00-424.jpg?v=1731699136&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-00-424.jpg?v=1731699136&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-00-424.jpg?v=1731699136&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&width=1080" alt="Divine Body Lotion - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-16-25-305.jpg?v=1731699136&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-16-25-305.jpg?v=1731699136&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-16-25-305.jpg?v=1731699136&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-16-25-305.jpg?v=1731699136&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-16-25-305.jpg?v=1731699136&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-16-25-305.jpg?v=1731699136&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-16-25-305.jpg?v=1731699136&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-16-25-305.jpg?v=1731699136&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">
<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">
<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>
</svg></div>
</a></div><p style="background-color:#F4F4F4;">Inspired By Killan's Angels Share</p><price-list class="price-list " ><sale-price class="text-subdued">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-27-822.jpg?v=1743705188&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-27-822.jpg?v=1743705188&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-27-822.jpg?v=1743705188&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-27-822.jpg?v=1743705188&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-27-822.jpg?v=1743705188&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-27-822.jpg?v=1743705188&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-27-822.jpg?v=1743705188&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-01-36-982.jpg?v=1743705188&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-01-36-982.jpg?v=1743705188&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-01-36-982.jpg?v=1743705188&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-01-36-982.jpg?v=1743705188&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-01-36-982.jpg?v=1743705188&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-01-36-982.jpg?v=1743705188&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-01-36-982.jpg?v=1743705188&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">
<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">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="Gio Body Lotion - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-06-162.jpg?v=1731699921&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-06-162.jpg?v=1731699921&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-06-162.jpg?v=1731699921&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-06-162.jpg?v=1731699921&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-06-162.jpg?v=1731699921&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-06-162.jpg?v=1731699921&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-06-162.jpg?v=1731699921&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-06-162.jpg?v=1731699921&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&width=1080" alt="Gio Body Lotion - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-40-44-803.jpg?v=1731699922&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-40-44-803.jpg?v=1731699922&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-40-44-803.jpg?v=1731699922&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-40-44-803.jpg?v=1731699922&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-40-44-803.jpg?v=1731699922&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-40-44-803.jpg?v=1731699922&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-40-44-803.jpg?v=1731699922&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-40-44-803.jpg?v=1731699922&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">
<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">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_12-50-02-871.jpg?v=1750108546&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_12-50-02-871.jpg?v=1750108546&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_12-50-02-871.jpg?v=1750108546&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_12-50-02-871.jpg?v=1750108546&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_12-50-02-871.jpg?v=1750108546&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_12-50-02-871.jpg?v=1750108546&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_12-50-02-871.jpg?v=1750108546&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-52-54-335.jpg?v=1750108546&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-52-54-335.jpg?v=1750108546&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-52-54-335.jpg?v=1750108546&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-52-54-335.jpg?v=1750108546&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-52-54-335.jpg?v=1750108546&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-52-54-335.jpg?v=1750108546&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-52-54-335.jpg?v=1750108546&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-52-54-335.jpg?v=1750108546&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-52-54-335.jpg?v=1750108546&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-52-54-335.jpg?v=1750108546&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-52-54-335.jpg?v=1750108546&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">
<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">
<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>
</svg></div>
</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">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="Forest Street Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-29-11-467.jpg?v=1731699582&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-29-11-467.jpg?v=1731699582&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-29-11-467.jpg?v=1731699582&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-29-11-467.jpg?v=1731699582&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-29-11-467.jpg?v=1731699582&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-29-11-467.jpg?v=1731699582&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-29-11-467.jpg?v=1731699582&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-29-11-467.jpg?v=1731699582&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&width=1080" alt="Forest Street Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-35-23-704.jpg?v=1731699583&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-35-23-704.jpg?v=1731699583&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-35-23-704.jpg?v=1731699583&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-35-23-704.jpg?v=1731699583&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-35-23-704.jpg?v=1731699583&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-35-23-704.jpg?v=1731699583&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-35-23-704.jpg?v=1731699583&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-35-23-704.jpg?v=1731699583&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">
<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">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-54-757.jpg?v=1750108818&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-54-757.jpg?v=1750108818&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-54-757.jpg?v=1750108818&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-54-757.jpg?v=1750108818&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-54-757.jpg?v=1750108818&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-54-757.jpg?v=1750108818&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-28-54-757.jpg?v=1750108818&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-34-10-336.jpg?v=1750108818&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-34-10-336.jpg?v=1750108818&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-34-10-336.jpg?v=1750108818&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-34-10-336.jpg?v=1750108818&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-34-10-336.jpg?v=1750108818&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-34-10-336.jpg?v=1750108818&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-34-10-336.jpg?v=1750108818&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">
<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">
<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>
</svg></div>
</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">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="Sexy Vanilla Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-37-57-454.jpg?v=1731955079&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-37-57-454.jpg?v=1731955079&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-37-57-454.jpg?v=1731955079&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-37-57-454.jpg?v=1731955079&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-37-57-454.jpg?v=1731955079&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-37-57-454.jpg?v=1731955079&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-37-57-454.jpg?v=1731955079&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-37-57-454.jpg?v=1731955079&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&width=1080" alt="Sexy Vanilla Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-53-08-074.jpg?v=1731955079&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-53-08-074.jpg?v=1731955079&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-53-08-074.jpg?v=1731955079&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-53-08-074.jpg?v=1731955079&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-53-08-074.jpg?v=1731955079&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-53-08-074.jpg?v=1731955079&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-53-08-074.jpg?v=1731955079&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-53-08-074.jpg?v=1731955079&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">
<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">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_12-30-54-213.jpg?v=1732034747&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_12-30-54-213.jpg?v=1732034747&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_12-30-54-213.jpg?v=1732034747&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_12-30-54-213.jpg?v=1732034747&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_12-30-54-213.jpg?v=1732034747&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_12-30-54-213.jpg?v=1732034747&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_12-30-54-213.jpg?v=1732034747&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_13-01-41-852.jpg?v=1732034747&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_13-01-41-852.jpg?v=1732034747&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_13-01-41-852.jpg?v=1732034747&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_13-01-41-852.jpg?v=1732034747&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_13-01-41-852.jpg?v=1732034747&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_13-01-41-852.jpg?v=1732034747&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_13-01-41-852.jpg?v=1732034747&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_13-01-41-852.jpg?v=1732034747&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_13-01-41-852.jpg?v=1732034747&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_13-01-41-852.jpg?v=1732034747&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-07_13-01-41-852.jpg?v=1732034747&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">
<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">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="28 Vanillie Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_14-25-44-206.jpg?v=1731696202&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_14-25-44-206.jpg?v=1731696202&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_14-25-44-206.jpg?v=1731696202&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_14-25-44-206.jpg?v=1731696202&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_14-25-44-206.jpg?v=1731696202&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_14-25-44-206.jpg?v=1731696202&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_14-25-44-206.jpg?v=1731696202&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_14-25-44-206.jpg?v=1731696202&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&width=1080" alt="28 Vanillie Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-54-58-435.jpg?v=1731696202&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-54-58-435.jpg?v=1731696202&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-54-58-435.jpg?v=1731696202&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-54-58-435.jpg?v=1731696202&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-54-58-435.jpg?v=1731696202&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-54-58-435.jpg?v=1731696202&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-54-58-435.jpg?v=1731696202&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-54-58-435.jpg?v=1731696202&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">
<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">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-32-25-053.jpg?v=1724701114&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-32-25-053.jpg?v=1724701114&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-32-25-053.jpg?v=1724701114&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-32-25-053.jpg?v=1724701114&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-32-25-053.jpg?v=1724701114&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-32-25-053.jpg?v=1724701114&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-32-25-053.jpg?v=1724701114&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-31-08-129.jpg?v=1724701113&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-31-08-129.jpg?v=1724701113&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-31-08-129.jpg?v=1724701113&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-31-08-129.jpg?v=1724701113&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-31-08-129.jpg?v=1724701113&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-31-08-129.jpg?v=1724701113&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_15-31-08-129.jpg?v=1724701113&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">
<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">
<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>
</svg></div>
</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">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-25-58-835.jpg?v=1743713182&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-25-58-835.jpg?v=1743713182&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-25-58-835.jpg?v=1743713182&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-25-58-835.jpg?v=1743713182&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-25-58-835.jpg?v=1743713182&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-25-58-835.jpg?v=1743713182&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-25-58-835.jpg?v=1743713182&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-58-05-274.jpg?v=1743713182&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-58-05-274.jpg?v=1743713182&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-58-05-274.jpg?v=1743713182&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-58-05-274.jpg?v=1743713182&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-58-05-274.jpg?v=1743713182&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-58-05-274.jpg?v=1743713182&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-58-05-274.jpg?v=1743713182&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">
<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">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-52-09-610.jpg?v=1750009017&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-52-09-610.jpg?v=1750009017&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-52-09-610.jpg?v=1750009017&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-52-09-610.jpg?v=1750009017&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-52-09-610.jpg?v=1750009017&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-52-09-610.jpg?v=1750009017&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-52-09-610.jpg?v=1750009017&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-54-57-428.jpg?v=1750009017&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-54-57-428.jpg?v=1750009017&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-54-57-428.jpg?v=1750009017&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-54-57-428.jpg?v=1750009017&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-54-57-428.jpg?v=1750009017&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-54-57-428.jpg?v=1750009017&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-54-57-428.jpg?v=1750009017&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">
<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">
<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>
</svg></div>
</a></div><p style="background-color:#F4F4F4;"> Inspired By Symphony</p><price-list class="price-list " ><sale-price class="text-subdued">
<span class="sr-only">Sale price</span>$20.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-56-928.jpg?v=1731956096&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-56-928.jpg?v=1731956096&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-56-928.jpg?v=1731956096&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-56-928.jpg?v=1731956096&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-56-928.jpg?v=1731956096&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-56-928.jpg?v=1731956096&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-39-56-928.jpg?v=1731956096&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-14-06-487.jpg?v=1731956097&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-14-06-487.jpg?v=1731956097&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-14-06-487.jpg?v=1731956097&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-14-06-487.jpg?v=1731956097&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-14-06-487.jpg?v=1731956097&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-14-06-487.jpg?v=1731956097&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_14-14-06-487.jpg?v=1731956097&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">
<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">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="Greenish Village Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-23-490.jpg?v=1731700029&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-23-490.jpg?v=1731700029&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-23-490.jpg?v=1731700029&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-23-490.jpg?v=1731700029&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-23-490.jpg?v=1731700029&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-23-490.jpg?v=1731700029&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-23-490.jpg?v=1731700029&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-23-490.jpg?v=1731700029&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&width=1080" alt="Greenish Village Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-41-45-080.jpg?v=1731700029&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-41-45-080.jpg?v=1731700029&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-41-45-080.jpg?v=1731700029&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-41-45-080.jpg?v=1731700029&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-41-45-080.jpg?v=1731700029&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-41-45-080.jpg?v=1731700029&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-41-45-080.jpg?v=1731700029&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-41-45-080.jpg?v=1731700029&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">
<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">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="Guide Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-37-325.jpg?v=1731700332&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-37-325.jpg?v=1731700332&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-37-325.jpg?v=1731700332&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-37-325.jpg?v=1731700332&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-37-325.jpg?v=1731700332&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-37-325.jpg?v=1731700332&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-37-325.jpg?v=1731700332&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-37-325.jpg?v=1731700332&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&width=1080" alt="Guide Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-43-45-662.jpg?v=1731700332&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-43-45-662.jpg?v=1731700332&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-43-45-662.jpg?v=1731700332&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-43-45-662.jpg?v=1731700332&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-43-45-662.jpg?v=1731700332&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-43-45-662.jpg?v=1731700332&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-43-45-662.jpg?v=1731700332&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-43-45-662.jpg?v=1731700332&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">
<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">
<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>
</svg></div>
</a></div><p style="background-color:#F4F4F4;">Inspired By Amouage Guidance</p><price-list class="price-list " ><sale-price class="text-subdued">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-37-201.jpg?v=1745938338&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-37-201.jpg?v=1745938338&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-37-201.jpg?v=1745938338&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-37-201.jpg?v=1745938338&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-37-201.jpg?v=1745938338&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-37-201.jpg?v=1745938338&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-37-201.jpg?v=1745938338&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&width=1080" alt="Immensity Body Lotion Inspired By L'Immensite" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-47-27-457.jpg?v=1745938339&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-47-27-457.jpg?v=1745938339&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-47-27-457.jpg?v=1745938339&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-47-27-457.jpg?v=1745938339&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-47-27-457.jpg?v=1745938339&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-47-27-457.jpg?v=1745938339&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-47-27-457.jpg?v=1745938339&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-47-27-457.jpg?v=1745938339&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">
<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">
<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>
</svg></div>
</a></div><p style="background-color:#F4F4F4;">Inspired By L'Immensite</p><price-list class="price-list " ><sale-price class="text-subdued">
<span class="sr-only">Sale price</span>$20.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="Hibiscus Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-49-136.jpg?v=1731700491&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-49-136.jpg?v=1731700491&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-49-136.jpg?v=1731700491&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-49-136.jpg?v=1731700491&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-49-136.jpg?v=1731700491&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-49-136.jpg?v=1731700491&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-49-136.jpg?v=1731700491&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-30-49-136.jpg?v=1731700491&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&width=1080" alt="Hibiscus Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-44-54-891.jpg?v=1731700492&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-44-54-891.jpg?v=1731700492&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-44-54-891.jpg?v=1731700492&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-44-54-891.jpg?v=1731700492&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-44-54-891.jpg?v=1731700492&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-44-54-891.jpg?v=1731700492&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-44-54-891.jpg?v=1731700492&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-44-54-891.jpg?v=1731700492&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">
<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">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="Intensely Body Lotion - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-57-013.jpg?v=1731700943&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-57-013.jpg?v=1731700943&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-57-013.jpg?v=1731700943&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-57-013.jpg?v=1731700943&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-57-013.jpg?v=1731700943&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-57-013.jpg?v=1731700943&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-57-013.jpg?v=1731700943&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-31-57-013.jpg?v=1731700943&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-48-31-367_b389a4b2-ad81-4517-a472-d152ef3cdba8.jpg?v=1731700944&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-48-31-367_b389a4b2-ad81-4517-a472-d152ef3cdba8.jpg?v=1731700944&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-48-31-367_b389a4b2-ad81-4517-a472-d152ef3cdba8.jpg?v=1731700944&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-48-31-367_b389a4b2-ad81-4517-a472-d152ef3cdba8.jpg?v=1731700944&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-48-31-367_b389a4b2-ad81-4517-a472-d152ef3cdba8.jpg?v=1731700944&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-48-31-367_b389a4b2-ad81-4517-a472-d152ef3cdba8.jpg?v=1731700944&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-14_15-48-31-367_b389a4b2-ad81-4517-a472-d152ef3cdba8.jpg?v=1731700944&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">
<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">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="Blue Charm Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-11-158.jpg?v=1731698763&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-11-158.jpg?v=1731698763&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-11-158.jpg?v=1731698763&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-11-158.jpg?v=1731698763&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-11-158.jpg?v=1731698763&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-11-158.jpg?v=1731698763&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-11-158.jpg?v=1731698763&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-27-11-158.jpg?v=1731698763&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&width=1080" alt="Blue Charm Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-10-46-434.jpg?v=1731698764&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-10-46-434.jpg?v=1731698764&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-10-46-434.jpg?v=1731698764&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-10-46-434.jpg?v=1731698764&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-10-46-434.jpg?v=1731698764&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-10-46-434.jpg?v=1731698764&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-10-46-434.jpg?v=1731698764&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-10-46-434.jpg?v=1731698764&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">
<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">
<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>
</svg></div>
</a></div><p style="background-color:#F4F4F4;">Inspired By Ex Nihilo Blue Talisman</p><price-list class="price-list " ><sale-price class="text-subdued">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="Sole Blank Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-38-29-808.jpg?v=1731955368&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-38-29-808.jpg?v=1731955368&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-38-29-808.jpg?v=1731955368&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-38-29-808.jpg?v=1731955368&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-38-29-808.jpg?v=1731955368&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-38-29-808.jpg?v=1731955368&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-38-29-808.jpg?v=1731955368&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-38-29-808.jpg?v=1731955368&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&width=1080" alt="Sole Blank Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-56-27-469.jpg?v=1731955369&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-56-27-469.jpg?v=1731955369&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-56-27-469.jpg?v=1731955369&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-56-27-469.jpg?v=1731955369&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-56-27-469.jpg?v=1731955369&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-56-27-469.jpg?v=1731955369&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-56-27-469.jpg?v=1731955369&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-15_13-56-27-469.jpg?v=1731955369&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">
<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">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="Ariana Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-27-330.jpg?v=1731698504&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-27-330.jpg?v=1731698504&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-27-330.jpg?v=1731698504&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-27-330.jpg?v=1731698504&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-27-330.jpg?v=1731698504&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-27-330.jpg?v=1731698504&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-27-330.jpg?v=1731698504&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-11_15-26-27-330.jpg?v=1731698504&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&width=1080" alt="Ariana Body Lotion" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-00-59-356.jpg?v=1731698504&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-00-59-356.jpg?v=1731698504&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-00-59-356.jpg?v=1731698504&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-00-59-356.jpg?v=1731698504&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-00-59-356.jpg?v=1731698504&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-00-59-356.jpg?v=1731698504&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-00-59-356.jpg?v=1731698504&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_16-00-59-356.jpg?v=1731698504&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">
<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">
<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>
</svg></div>
</a></div><p style="background-color:#F4F4F4;"> Inspired By PDM Oriana</p><price-list class="price-list " ><sale-price class="text-subdued">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-20-34-424.jpg?v=1745938109&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-20-34-424.jpg?v=1745938109&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-20-34-424.jpg?v=1745938109&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-20-34-424.jpg?v=1745938109&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-20-34-424.jpg?v=1745938109&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-20-34-424.jpg?v=1745938109&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-20-34-424.jpg?v=1745938109&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-19-02-871.jpg?v=1745938109&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-19-02-871.jpg?v=1745938109&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-19-02-871.jpg?v=1745938109&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-19-02-871.jpg?v=1745938109&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-19-02-871.jpg?v=1745938109&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-19-02-871.jpg?v=1745938109&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-19-02-871.jpg?v=1745938109&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-19-02-871.jpg?v=1745938109&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-19-02-871.jpg?v=1745938109&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-19-02-871.jpg?v=1745938109&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-19-02-871.jpg?v=1745938109&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">
<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">
<span class="sr-only">Sale price</span>$20.00</sale-price></price-list></div></div>
</product-card></product-list>
</reveal-items>
</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>
<span class="sr-only">Previous</span>
<span class="animated-arrow animated-arrow--reverse"></span>
</button>
<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">
<span class="sr-only">Next</span>
<span class="animated-arrow"></span>
</button></div>
</div>
</div>
</section><section id="shopify-section-template--18347438506258__image_with_text_overlay_NCBkD6" class="shopify-section shopify-section--image-with-text-overlay"><style>
#shopify-section-template--18347438506258__image_with_text_overlay_NCBkD6 {--section-outer-spacing-block: 0;--content-over-media-overlay: 0 0 0 / 0.0;}
</style>
<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&width=1600" alt="" srcset="//houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&width=900 900w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&width=1000 1000w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&width=1200 1200w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&width=1400 1400w, //houseofmonac.com/cdn/shop/files/WhatsApp_Image_2025-05-28_at_4.26.20_PM.jpg?v=1748557814&width=1600 1600w" width="1600" height="899" loading="lazy" sizes="100vw" class=""></image-banner>
</div>
</section><section id="shopify-section-template--18347438506258__featured_product_xrXWnx" class="shopify-section shopify-section--featured-product"><style>
#shopify-section-template--18347438506258__featured_product_xrXWnx {
--section-background-hash: 0;
}
#shopify-section-template--18347438506258__featured_product_xrXWnx + * {
--previous-section-background-hash: 0;
}</style><style>
#shopify-section-template--18347438506258__featured_product_xrXWnx {
--product-grid: auto / minmax(0, 1fr);
--product-gallery-media-list-grid: auto / auto-flow 100%;
--product-gallery-media-list-gap: var(--spacing-0-5);
}
@media screen and (max-width: 999px) {
#shopify-section-template--18347438506258__featured_product_xrXWnx {
--section-spacing-block-start: 0px;
}
}
@media screen and (min-width: 1000px) {
#shopify-section-template--18347438506258__featured_product_xrXWnx {--product-grid: auto / minmax(0, 0.9fr) minmax(0, 1.1fr);
--product-gallery-media-list-grid: auto / auto-flow 100%;
--product-gallery-media-list-gap: calc(var(--grid-gutter) / 2);
}}
@media screen and (min-width: 1400px) {
#shopify-section-template--18347438506258__featured_product_xrXWnx {
--product-gallery-media-list-gap: var(--grid-gutter);
}
}
</style>
<div class="section section--tight section-blends section-full">
<div class="product">
<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">
<div class="product-gallery__media-list-wrapper"><custom-cursor class="product-gallery__cursor" >
<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">
<path d="m1 9 4-4-4-4" fill="none" stroke="currentColor" stroke-width="2"></path>
</svg></div>
</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&width=2048" alt="Sample Set 10 pcs" srcset="//houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&width=200 200w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&width=300 300w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&width=400 400w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&width=500 500w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&width=600 600w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&width=700 700w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&width=800 800w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&width=1000 1000w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&width=1200 1200w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&width=1400 1400w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&width=1600 1600w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&width=1800 1800w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&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&width=3464" alt="Sample Set 10 pcs" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&width=1800 1800w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&width=2000 2000w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&width=2200 2200w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&width=2400 2400w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&width=2600 2600w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&width=2800 2800w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&width=3000 3000w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&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&width=3464" alt="Sample Set 10 pcs" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&width=1800 1800w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&width=2000 2000w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&width=2200 2200w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&width=2400 2400w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&width=2600 2600w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&width=2800 2800w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&width=3000 3000w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&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&width=3464" alt="Sample Set 10 pcs" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&width=1800 1800w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&width=2000 2000w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&width=2200 2200w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&width=2400 2400w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&width=2600 2600w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&width=2800 2800w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&width=3000 3000w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&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&width=1080" alt="Sample Set 10 pcs" srcset="//houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&width=200 200w, //houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&width=300 300w, //houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&width=400 400w, //houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&width=500 500w, //houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&width=600 600w, //houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&width=700 700w, //houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&width=800 800w, //houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&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 ">
<button type="button" is="product-zoom-button" class="circle-button circle-button--fill ring">
<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">
<circle cx="7.067" cy="7.067" r="6.067" stroke="currentColor"></circle>
<path d="M11.4 11.4 14 14" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M7 4v6M4 7h6" stroke="currentColor"></path>
</svg></button>
</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">
<span class="sr-only">Go to item 1</span>
</button><button type="button" class="tap-area" aria-current="false">
<span class="sr-only">Go to item 2</span>
</button><button type="button" class="tap-area" aria-current="false">
<span class="sr-only">Go to item 3</span>
</button><button type="button" class="tap-area" aria-current="false">
<span class="sr-only">Go to item 4</span>
</button><button type="button" class="tap-area" aria-current="false">
<span class="sr-only">Go to item 5</span>
</button></page-dots></div></div><scroll-shadow class="product-gallery__thumbnail-list-wrapper">
<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&width=2048" alt="Sample Set 10 pcs" srcset="//houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&width=56 56w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&width=64 64w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&width=112 112w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&width=128 128w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&width=168 168w, //houseofmonac.com/cdn/shop/files/IMG-20250511-WA0000.jpg?v=1750107751&width=192 192w" width="2048" height="2048" loading="lazy" sizes="(max-width: 699px) 56px, 64px" class="object-contain rounded-sm">
</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&width=3464" alt="Sample Set 10 pcs" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&width=56 56w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&width=64 64w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&width=112 112w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&width=128 128w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&width=168 168w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-15_16-23-03-148.jpg?v=1750107752&width=192 192w" width="3464" height="3464" loading="lazy" sizes="(max-width: 699px) 56px, 64px" class="object-contain rounded-sm">
</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&width=3464" alt="Sample Set 10 pcs" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&width=56 56w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&width=64 64w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&width=112 112w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&width=128 128w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&width=168 168w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-16_14-21-28-572.jpg?v=1750107764&width=192 192w" width="3464" height="3464" loading="lazy" sizes="(max-width: 699px) 56px, 64px" class="object-contain rounded-sm">
</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&width=3464" alt="Sample Set 10 pcs" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&width=56 56w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&width=64 64w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&width=112 112w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&width=128 128w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&width=168 168w, //houseofmonac.com/cdn/shop/files/Picsart_25-05-13_09-17-35-477.jpg?v=1750107750&width=192 192w" width="3464" height="3464" loading="lazy" sizes="(max-width: 699px) 56px, 64px" class="object-contain rounded-sm">
</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&width=1080" alt="Sample Set 10 pcs" srcset="//houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&width=56 56w, //houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&width=64 64w, //houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&width=112 112w, //houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&width=128 128w, //houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&width=168 168w, //houseofmonac.com/cdn/shop/files/Packaging_1_1.jpg?v=1750107749&width=192 192w" width="1080" height="1080" loading="lazy" sizes="(max-width: 699px) 56px, 64px" class="object-contain rounded-sm">
</button></page-dots>
</scroll-shadow></product-gallery><style>
p.metafields-option {
background: #f4f4f4;
width: 100%;
max-width: 50%;
padding: 0px 5px 0px 5px;
text-align: center;
display: flex;
flex-wrap: wrap;
align-content: center;
justify-content: center;
align-items: center;
}
@media screen and (min-width: 480px) {
p.metafields-option {
background: #f4f4f4;
width: 100%;
max-width: 60%;
}
}
</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" >
<a href="/products/sample-set-10-pcs">Sample Set (10 pcs)</a>
</h2><p class="metafields-option"></p><div class="product-info__price">
<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">
<span class="sr-only">Sale price</span>$9.99</sale-price>
<compare-at-price form="product-form-10143161155858-template--18347438506258__featured_product_xrXWnx" hidden class="text-subdued line-through">
<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">(/)
</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">
<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>
</svg></div>
</a></div></div><div class="product-info__variant-picker" ><noscript>
<input type="hidden" name="id" form="product-form-10143161155858-template--18347438506258__featured_product_xrXWnx" value="51294225694994">
</noscript></div><div class="product-info__quantity-selector ">
<div class="form-control">
<label for="product-form-10143161155858-template--18347438506258__featured_product_xrXWnx-quantity" class="block-label text-subdued">Quantity:</label>
<quantity-selector class="quantity-selector">
<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">
<path d="M0 0H10V2H0V0Z" fill="currentColor"></path>
</svg></button>
<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">
<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">
<path d="M6 0V12" fill="none" stroke="currentColor"></path>
<path d="M0 6L12 6" fill="none" stroke="currentColor"></path>
</svg></button>
</quantity-selector>
</div>
</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">
<button type="submit" class="button button--xl button--secondary"
is="custom-button"
>Add to cart</button><div data-shopify="payment-button" class="shopify-payment-button"> <shopify-accelerated-checkout recommended="{"name":"shop_pay","wallet_params":{"shopId":71899971858,"merchantName":"Monac Attar"}}" fallback="{"name":"buy_it_now","wallet_params":{}}" access-token="0e829a237eaa9a51bb114f386e51b471" buyer-country="US" buyer-locale="en" buyer-currency="USD" variant-params="[{"id":51294225694994,"requiresShipping":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"> </div> </div> <div class="shopify-payment-button__more-options shopify-payment-button__skeleton" role="button" disabled aria-hidden="true"> </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>
#shopify-section-template--18347438506258__featured_product_xrXWnx .shopify-payment-button {}
</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>
</div>
<!-- GPO installed --></section><section id="shopify-section-template--18347438506258__c8c5e819-cfb9-44c5-a134-0e95727b176b" class="shopify-section shopify-section--featured-collection"><style>
#shopify-section-template--18347438506258__c8c5e819-cfb9-44c5-a134-0e95727b176b {
--section-background-hash: 0;
}
#shopify-section-template--18347438506258__c8c5e819-cfb9-44c5-a134-0e95727b176b + * {
--previous-section-background-hash: 0;
}</style><style>#shopify-section-template--18347438506258__c8c5e819-cfb9-44c5-a134-0e95727b176b .product-list {
--product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
--product-list-items-per-row: 1;
--product-list-carousel-item-width: 74vw;
--product-list-grid: auto / auto-flow var(--product-list-carousel-item-width);
}
@media screen and (min-width: 700px) {
#shopify-section-template--18347438506258__c8c5e819-cfb9-44c5-a134-0e95727b176b .product-list {
--product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
--product-list-items-per-row: 2;
--product-list-carousel-item-width: 36vw;
}
}
@media screen and (min-width: 1000px) {
#shopify-section-template--18347438506258__c8c5e819-cfb9-44c5-a134-0e95727b176b .product-list {
--product-list-items-per-row: 5;
--product-list-carousel-item-width: calc(var(--container-inner-width) / 5 - (var(--product-list-column-gap) / 5 * 4));
}
}
</style>
<div class="section section-blends section-full">
<div class="section-stack">
<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">
<span class="reversed-link">View All</span>
<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">
<path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
</svg></span>
</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">
<reveal-items selector=".product-list > *">
<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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-01-14_10-21-30-087.png?v=1747751026&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&width=1080" alt="Imagine Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-06-17_15-48-42-946.jpg?v=1750189788&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-17_15-48-42-946.jpg?v=1750189788&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-17_15-48-42-946.jpg?v=1750189788&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-17_15-48-42-946.jpg?v=1750189788&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-17_15-48-42-946.jpg?v=1750189788&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-17_15-48-42-946.jpg?v=1750189788&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-17_15-48-42-946.jpg?v=1750189788&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-17_15-48-42-946.jpg?v=1750189788&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">
<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">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="540 Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-37-33-761.jpg?v=1750549085&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-37-33-761.jpg?v=1750549085&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-37-33-761.jpg?v=1750549085&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-37-33-761.jpg?v=1750549085&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-37-33-761.jpg?v=1750549085&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-37-33-761.jpg?v=1750549085&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-37-33-761.jpg?v=1750549085&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-21_19-37-33-761.jpg?v=1750549085&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-57-12-199.jpg?v=1750549085&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-57-12-199.jpg?v=1750549085&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-57-12-199.jpg?v=1750549085&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-57-12-199.jpg?v=1750549085&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-57-12-199.jpg?v=1750549085&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-57-12-199.jpg?v=1750549085&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-12_15-57-12-199.jpg?v=1750549085&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">
<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">
<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>
</svg></div>
</a></div><p style="background-color:#F4F4F4;"> Inspired By Baccarat Rouge 540</p><price-list class="price-list " ><sale-price class="text-subdued">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="Aventor Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-48-35-586.jpg?v=1750283400&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-48-35-586.jpg?v=1750283400&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-48-35-586.jpg?v=1750283400&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-48-35-586.jpg?v=1750283400&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-48-35-586.jpg?v=1750283400&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-48-35-586.jpg?v=1750283400&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-48-35-586.jpg?v=1750283400&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-48-35-586.jpg?v=1750283400&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&width=1084" alt="Aventor Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-49-25-553.jpg?v=1750283400&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-49-25-553.jpg?v=1750283400&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-49-25-553.jpg?v=1750283400&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-49-25-553.jpg?v=1750283400&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-49-25-553.jpg?v=1750283400&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-49-25-553.jpg?v=1750283400&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-49-25-553.jpg?v=1750283400&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-06-18_17-49-25-553.jpg?v=1750283400&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">
<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">
<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>
</svg></div>
</a></div><p style="background-color:#F4F4F4;"> Inspired By Creed Aventus</p><price-list class="price-list " ><sale-price class="text-subdued">
<span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-31-099.jpg?v=1743711608&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-31-099.jpg?v=1743711608&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-31-099.jpg?v=1743711608&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-31-099.jpg?v=1743711608&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-31-099.jpg?v=1743711608&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-31-099.jpg?v=1743711608&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-31-099.jpg?v=1743711608&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-47-42-956.jpg?v=1743711608&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-47-42-956.jpg?v=1743711608&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-47-42-956.jpg?v=1743711608&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-47-42-956.jpg?v=1743711608&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-47-42-956.jpg?v=1743711608&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-47-42-956.jpg?v=1743711608&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-47-42-956.jpg?v=1743711608&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">
<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">
<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>
</svg></div>
</a></div><p style="background-color:#F4F4F4;">Inspired By Acqua di Gio Profondo</p><price-list class="price-list " ><sale-price class="text-subdued">
<span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-24-14-687.jpg?v=1743705439&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-24-14-687.jpg?v=1743705439&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-24-14-687.jpg?v=1743705439&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-24-14-687.jpg?v=1743705439&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-24-14-687.jpg?v=1743705439&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-24-14-687.jpg?v=1743705439&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-24-14-687.jpg?v=1743705439&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-29-24-105.jpg?v=1743705439&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-29-24-105.jpg?v=1743705439&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-29-24-105.jpg?v=1743705439&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-29-24-105.jpg?v=1743705439&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-29-24-105.jpg?v=1743705439&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-29-24-105.jpg?v=1743705439&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-04-01_10-29-24-105.jpg?v=1743705439&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">
<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">
<span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-53-975.jpg?v=1750109358&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-53-975.jpg?v=1750109358&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-53-975.jpg?v=1750109358&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-53-975.jpg?v=1750109358&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-53-975.jpg?v=1750109358&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-53-975.jpg?v=1750109358&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-53-975.jpg?v=1750109358&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-14-24-043.jpg?v=1750109358&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-14-24-043.jpg?v=1750109358&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-14-24-043.jpg?v=1750109358&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-14-24-043.jpg?v=1750109358&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-14-24-043.jpg?v=1750109358&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-14-24-043.jpg?v=1750109358&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-14-24-043.jpg?v=1750109358&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">
<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">
<span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-27-094.jpg?v=1743712665&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-27-094.jpg?v=1743712665&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-27-094.jpg?v=1743712665&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-27-094.jpg?v=1743712665&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-27-094.jpg?v=1743712665&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-27-094.jpg?v=1743712665&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-27-094.jpg?v=1743712665&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-00-062.jpg?v=1743712665&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-00-062.jpg?v=1743712665&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-00-062.jpg?v=1743712665&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-00-062.jpg?v=1743712665&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-00-062.jpg?v=1743712665&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-00-062.jpg?v=1743712665&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-00-062.jpg?v=1743712665&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">
<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">
<span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-49-08-648.jpg?v=1743705247&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-49-08-648.jpg?v=1743705247&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-49-08-648.jpg?v=1743705247&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-49-08-648.jpg?v=1743705247&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-49-08-648.jpg?v=1743705247&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-49-08-648.jpg?v=1743705247&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-49-08-648.jpg?v=1743705247&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-54-35-623.jpg?v=1743705247&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-54-35-623.jpg?v=1743705247&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-54-35-623.jpg?v=1743705247&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-54-35-623.jpg?v=1743705247&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-54-35-623.jpg?v=1743705247&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-54-35-623.jpg?v=1743705247&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-54-35-623.jpg?v=1743705247&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">
<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">
<span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-30-538.jpg?v=1743711868&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-30-538.jpg?v=1743711868&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-30-538.jpg?v=1743711868&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-30-538.jpg?v=1743711868&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-30-538.jpg?v=1743711868&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-30-538.jpg?v=1743711868&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-30-538.jpg?v=1743711868&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-13-35-702.jpg?v=1743711868&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-13-35-702.jpg?v=1743711868&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-13-35-702.jpg?v=1743711868&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-13-35-702.jpg?v=1743711868&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-13-35-702.jpg?v=1743711868&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-13-35-702.jpg?v=1743711868&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-13-35-702.jpg?v=1743711868&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">
<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">
<span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="Sweet Love Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-45-59-040.jpg?v=1732216428&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-45-59-040.jpg?v=1732216428&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-45-59-040.jpg?v=1732216428&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-45-59-040.jpg?v=1732216428&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-45-59-040.jpg?v=1732216428&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-45-59-040.jpg?v=1732216428&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-45-59-040.jpg?v=1732216428&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-45-59-040.jpg?v=1732216428&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&width=1080" alt="Sweet Love Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-34-26-740.jpg?v=1732216428&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-34-26-740.jpg?v=1732216428&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-34-26-740.jpg?v=1732216428&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-34-26-740.jpg?v=1732216428&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-34-26-740.jpg?v=1732216428&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-34-26-740.jpg?v=1732216428&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-34-26-740.jpg?v=1732216428&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-34-26-740.jpg?v=1732216428&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">
<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">
<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>
</svg></div>
</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">
<span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-18-635.jpg?v=1750108872&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-18-635.jpg?v=1750108872&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-18-635.jpg?v=1750108872&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-18-635.jpg?v=1750108872&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-18-635.jpg?v=1750108872&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-18-635.jpg?v=1750108872&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-18-635.jpg?v=1750108872&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-17-06-189.jpg?v=1750108872&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-17-06-189.jpg?v=1750108872&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-17-06-189.jpg?v=1750108872&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-17-06-189.jpg?v=1750108872&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-17-06-189.jpg?v=1750108872&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-17-06-189.jpg?v=1750108872&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-17-06-189.jpg?v=1750108872&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">
<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">
<span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="Blue Charm Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-52-625.jpg?v=1732203079&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-52-625.jpg?v=1732203079&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-52-625.jpg?v=1732203079&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-52-625.jpg?v=1732203079&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-52-625.jpg?v=1732203079&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-52-625.jpg?v=1732203079&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-52-625.jpg?v=1732203079&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-05-52-625.jpg?v=1732203079&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&width=1080" alt="Blue Charm Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-49-161.jpg?v=1732203079&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-49-161.jpg?v=1732203079&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-49-161.jpg?v=1732203079&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-49-161.jpg?v=1732203079&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-49-161.jpg?v=1732203079&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-49-161.jpg?v=1732203079&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-49-161.jpg?v=1732203079&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-09-49-161.jpg?v=1732203079&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">
<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">
<span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="Forest Street Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-36-932.jpg?v=1732204962&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-36-932.jpg?v=1732204962&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-36-932.jpg?v=1732204962&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-36-932.jpg?v=1732204962&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-36-932.jpg?v=1732204962&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-36-932.jpg?v=1732204962&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-36-932.jpg?v=1732204962&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-36-932.jpg?v=1732204962&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&width=1080" alt="Forest Street Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-44-46-633.jpg?v=1732204963&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-44-46-633.jpg?v=1732204963&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-44-46-633.jpg?v=1732204963&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-44-46-633.jpg?v=1732204963&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-44-46-633.jpg?v=1732204963&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-44-46-633.jpg?v=1732204963&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-44-46-633.jpg?v=1732204963&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-44-46-633.jpg?v=1732204963&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">
<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">
<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>
</svg></div>
</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">
<span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-13-19-419.jpg?v=1743706078&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-13-19-419.jpg?v=1743706078&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-13-19-419.jpg?v=1743706078&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-13-19-419.jpg?v=1743706078&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-13-19-419.jpg?v=1743706078&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-13-19-419.jpg?v=1743706078&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-13-19-419.jpg?v=1743706078&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-16-35-828.jpg?v=1743706079&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-16-35-828.jpg?v=1743706079&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-16-35-828.jpg?v=1743706079&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-16-35-828.jpg?v=1743706079&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-16-35-828.jpg?v=1743706079&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-16-35-828.jpg?v=1743706079&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-16-35-828.jpg?v=1743706079&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">
<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">
<span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-00-130.jpg?v=1743712005&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-00-130.jpg?v=1743712005&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-00-130.jpg?v=1743712005&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-00-130.jpg?v=1743712005&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-00-130.jpg?v=1743712005&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-00-130.jpg?v=1743712005&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-07-00-130.jpg?v=1743712005&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-12-03-166.jpg?v=1743712005&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-12-03-166.jpg?v=1743712005&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-12-03-166.jpg?v=1743712005&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-12-03-166.jpg?v=1743712005&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-12-03-166.jpg?v=1743712005&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-12-03-166.jpg?v=1743712005&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-12-03-166.jpg?v=1743712005&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">
<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">
<span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-51-818.jpg?v=1743626132&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-51-818.jpg?v=1743626132&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-51-818.jpg?v=1743626132&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-51-818.jpg?v=1743626132&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-51-818.jpg?v=1743626132&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-51-818.jpg?v=1743626132&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-09-51-818.jpg?v=1743626132&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-48-27-906.jpg?v=1744898947&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-48-27-906.jpg?v=1744898947&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-48-27-906.jpg?v=1744898947&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-48-27-906.jpg?v=1744898947&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-48-27-906.jpg?v=1744898947&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-48-27-906.jpg?v=1744898947&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-48-27-906.jpg?v=1744898947&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">
<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">
<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>
</svg></div>
</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">
<span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="Intensely Body Wash - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-00-789.jpg?v=1745038439&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-00-789.jpg?v=1745038439&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-00-789.jpg?v=1745038439&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-00-789.jpg?v=1745038439&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-00-789.jpg?v=1745038439&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-00-789.jpg?v=1745038439&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-00-789.jpg?v=1745038439&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-12-00-789.jpg?v=1745038439&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&width=1080" alt="Intensely Body Wash - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-53-55-220.jpg?v=1745038427&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-53-55-220.jpg?v=1745038427&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-53-55-220.jpg?v=1745038427&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-53-55-220.jpg?v=1745038427&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-53-55-220.jpg?v=1745038427&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-53-55-220.jpg?v=1745038427&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-53-55-220.jpg?v=1745038427&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-53-55-220.jpg?v=1745038427&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">
<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">
<span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="Uomo Intense Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-47-26-524.jpg?v=1732216718&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-47-26-524.jpg?v=1732216718&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-47-26-524.jpg?v=1732216718&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-47-26-524.jpg?v=1732216718&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-47-26-524.jpg?v=1732216718&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-47-26-524.jpg?v=1732216718&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-47-26-524.jpg?v=1732216718&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-47-26-524.jpg?v=1732216718&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&width=1080" alt="Uomo Intense Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-48-36-573.jpg?v=1732216718&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-48-36-573.jpg?v=1732216718&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-48-36-573.jpg?v=1732216718&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-48-36-573.jpg?v=1732216718&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-48-36-573.jpg?v=1732216718&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-48-36-573.jpg?v=1732216718&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-48-36-573.jpg?v=1732216718&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-21_10-48-36-573.jpg?v=1732216718&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">
<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">
<span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_13-11-55-339.jpg?v=1743017200&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_13-11-55-339.jpg?v=1743017200&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_13-11-55-339.jpg?v=1743017200&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_13-11-55-339.jpg?v=1743017200&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_13-11-55-339.jpg?v=1743017200&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_13-11-55-339.jpg?v=1743017200&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-24_13-11-55-339.jpg?v=1743017200&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-53-32-845.jpg?v=1743017201&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-53-32-845.jpg?v=1743017201&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-53-32-845.jpg?v=1743017201&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-53-32-845.jpg?v=1743017201&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-53-32-845.jpg?v=1743017201&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-53-32-845.jpg?v=1743017201&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-53-32-845.jpg?v=1743017201&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-53-32-845.jpg?v=1743017201&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-53-32-845.jpg?v=1743017201&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-53-32-845.jpg?v=1743017201&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-20_12-53-32-845.jpg?v=1743017201&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">
<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">
<span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="Sexy Vanilla Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-19-838.jpg?v=1732215561&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-19-838.jpg?v=1732215561&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-19-838.jpg?v=1732215561&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-19-838.jpg?v=1732215561&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-19-838.jpg?v=1732215561&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-19-838.jpg?v=1732215561&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-19-838.jpg?v=1732215561&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-19-838.jpg?v=1732215561&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&width=1080" alt="Sexy Vanilla Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-29-41-463.jpg?v=1732215561&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-29-41-463.jpg?v=1732215561&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-29-41-463.jpg?v=1732215561&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-29-41-463.jpg?v=1732215561&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-29-41-463.jpg?v=1732215561&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-29-41-463.jpg?v=1732215561&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-29-41-463.jpg?v=1732215561&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-29-41-463.jpg?v=1732215561&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">
<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">
<span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-58-26-967.jpg?v=1750008978&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-58-26-967.jpg?v=1750008978&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-58-26-967.jpg?v=1750008978&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-58-26-967.jpg?v=1750008978&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-58-26-967.jpg?v=1750008978&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-58-26-967.jpg?v=1750008978&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_15-58-26-967.jpg?v=1750008978&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_16-00-02-694.jpg?v=1750008978&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_16-00-02-694.jpg?v=1750008978&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_16-00-02-694.jpg?v=1750008978&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_16-00-02-694.jpg?v=1750008978&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_16-00-02-694.jpg?v=1750008978&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_16-00-02-694.jpg?v=1750008978&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-02-17_16-00-02-694.jpg?v=1750008978&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">
<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">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="Effective Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-03-429.jpg?v=1732204494&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-03-429.jpg?v=1732204494&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-03-429.jpg?v=1732204494&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-03-429.jpg?v=1732204494&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-03-429.jpg?v=1732204494&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-03-429.jpg?v=1732204494&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-03-429.jpg?v=1732204494&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-08-03-429.jpg?v=1732204494&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&width=1080" alt="Effective Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-16-02-049.jpg?v=1732204495&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-16-02-049.jpg?v=1732204495&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-16-02-049.jpg?v=1732204495&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-16-02-049.jpg?v=1732204495&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-16-02-049.jpg?v=1732204495&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-16-02-049.jpg?v=1732204495&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-16-02-049.jpg?v=1732204495&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-16-02-049.jpg?v=1732204495&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">
<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">
<span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="28 Vanillie Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-01-43-508.jpg?v=1732202039&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-01-43-508.jpg?v=1732202039&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-01-43-508.jpg?v=1732202039&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-01-43-508.jpg?v=1732202039&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-01-43-508.jpg?v=1732202039&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-01-43-508.jpg?v=1732202039&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-01-43-508.jpg?v=1732202039&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-01-43-508.jpg?v=1732202039&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&width=1080" alt="28 Vanillie Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-43-55-799.jpg?v=1732202039&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-43-55-799.jpg?v=1732202039&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-43-55-799.jpg?v=1732202039&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-43-55-799.jpg?v=1732202039&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-43-55-799.jpg?v=1732202039&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-43-55-799.jpg?v=1732202039&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-43-55-799.jpg?v=1732202039&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-43-55-799.jpg?v=1732202039&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">
<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">
<span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="Hibiscus Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-10-25-539.jpg?v=1732212048&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-10-25-539.jpg?v=1732212048&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-10-25-539.jpg?v=1732212048&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-10-25-539.jpg?v=1732212048&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-10-25-539.jpg?v=1732212048&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-10-25-539.jpg?v=1732212048&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-10-25-539.jpg?v=1732212048&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-10-25-539.jpg?v=1732212048&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&width=1080" alt="Hibiscus Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-50-26-993.jpg?v=1732212048&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-50-26-993.jpg?v=1732212048&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-50-26-993.jpg?v=1732212048&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-50-26-993.jpg?v=1732212048&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-50-26-993.jpg?v=1732212048&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-50-26-993.jpg?v=1732212048&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-50-26-993.jpg?v=1732212048&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-50-26-993.jpg?v=1732212048&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">
<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">
<span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-03-54-945.jpg?v=1743712852&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-03-54-945.jpg?v=1743712852&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-03-54-945.jpg?v=1743712852&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-03-54-945.jpg?v=1743712852&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-03-54-945.jpg?v=1743712852&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-03-54-945.jpg?v=1743712852&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-03-54-945.jpg?v=1743712852&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-47-05-999.jpg?v=1743712852&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-47-05-999.jpg?v=1743712852&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-47-05-999.jpg?v=1743712852&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-47-05-999.jpg?v=1743712852&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-47-05-999.jpg?v=1743712852&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-47-05-999.jpg?v=1743712852&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_14-47-05-999.jpg?v=1743712852&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">
<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">
<span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
</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">
<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&width=1080" alt="Sole Blank Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-56-121.jpg?v=1732216160&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-56-121.jpg?v=1732216160&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-56-121.jpg?v=1732216160&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-56-121.jpg?v=1732216160&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-56-121.jpg?v=1732216160&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-56-121.jpg?v=1732216160&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-56-121.jpg?v=1732216160&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-44-56-121.jpg?v=1732216160&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&width=1080" alt="Sole Blank Body Wash" srcset="//houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-31-23-013.jpg?v=1732216160&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-31-23-013.jpg?v=1732216160&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-31-23-013.jpg?v=1732216160&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-31-23-013.jpg?v=1732216160&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-31-23-013.jpg?v=1732216160&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-31-23-013.jpg?v=1732216160&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-31-23-013.jpg?v=1732216160&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_18-31-23-013.jpg?v=1732216160&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">
<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">
<span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-11-46-894.jpg?v=1745938423&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-11-46-894.jpg?v=1745938423&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-11-46-894.jpg?v=1745938423&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-11-46-894.jpg?v=1745938423&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-11-46-894.jpg?v=1745938423&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-11-46-894.jpg?v=1745938423&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-19_14-11-46-894.jpg?v=1745938423&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-52-19-074.jpg?v=1745938423&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-52-19-074.jpg?v=1745938423&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-52-19-074.jpg?v=1745938423&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-52-19-074.jpg?v=1745938423&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-52-19-074.jpg?v=1745938423&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-52-19-074.jpg?v=1745938423&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-11-20_15-52-19-074.jpg?v=1745938423&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">
<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">
<span class="sr-only">Sale price</span>$18.00</sale-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_16-43-29-146.jpg?v=1724697955&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_16-43-29-146.jpg?v=1724697955&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_16-43-29-146.jpg?v=1724697955&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_16-43-29-146.jpg?v=1724697955&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_16-43-29-146.jpg?v=1724697955&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_16-43-29-146.jpg?v=1724697955&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_16-43-29-146.jpg?v=1724697955&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_17-17-26-013.jpg?v=1724697954&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_17-17-26-013.jpg?v=1724697954&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_17-17-26-013.jpg?v=1724697954&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_17-17-26-013.jpg?v=1724697954&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_17-17-26-013.jpg?v=1724697954&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_17-17-26-013.jpg?v=1724697954&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-21_17-17-26-013.jpg?v=1724697954&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">
<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">
<span class="sr-only">Sale price</span>$16.00</sale-price></price-list></div></div>
</product-card></product-list>
</reveal-items>
</scroll-carousel><div class="scrollbar peer-not-scrollable:hidden">
<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">
<button is="prev-button" class="circle-button ring group" aria-controls="scroll-area-template--18347438506258__c8c5e819-cfb9-44c5-a134-0e95727b176b" disabled>
<span class="sr-only">Previous</span>
<span class="animated-arrow animated-arrow--reverse"></span>
</button>
<button is="next-button" class="circle-button ring group" aria-controls="scroll-area-template--18347438506258__c8c5e819-cfb9-44c5-a134-0e95727b176b">
<span class="sr-only">Next</span>
<span class="animated-arrow"></span>
</button>
</div></div></div>
</div>
</div>
</section><section id="shopify-section-template--18347438506258__featured_collection_DVnM9K" class="shopify-section shopify-section--featured-collection"><style>
#shopify-section-template--18347438506258__featured_collection_DVnM9K {
--section-background-hash: 0;
}
#shopify-section-template--18347438506258__featured_collection_DVnM9K + * {
--previous-section-background-hash: 0;
}</style><style>#shopify-section-template--18347438506258__featured_collection_DVnM9K .product-list {
--product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
--product-list-items-per-row: 2;
--product-list-carousel-item-width: 74vw;
--product-list-grid: auto / auto-flow var(--product-list-carousel-item-width);
}
@media screen and (min-width: 700px) {
#shopify-section-template--18347438506258__featured_collection_DVnM9K .product-list {
--product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
--product-list-items-per-row: 2;
--product-list-carousel-item-width: 36vw;
}
}
@media screen and (min-width: 1000px) {
#shopify-section-template--18347438506258__featured_collection_DVnM9K .product-list {
--product-list-items-per-row: 3;
--product-list-carousel-item-width: calc(var(--container-inner-width) / 3 - (var(--product-list-column-gap) / 3 * 2));
}
}
</style>
<div class="section section-blends section-full">
<div class="section-stack">
<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">
<span class="reversed-link">View all</span>
<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">
<path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
</svg></span>
</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">
<reveal-items selector=".product-list > *">
<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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-06-54-447.jpg?v=1724779600&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-06-54-447.jpg?v=1724779600&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-06-54-447.jpg?v=1724779600&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-06-54-447.jpg?v=1724779600&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-06-54-447.jpg?v=1724779600&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-06-54-447.jpg?v=1724779600&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-06-54-447.jpg?v=1724779600&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-06-54-447.jpg?v=1724779600&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-06-54-447.jpg?v=1724779600&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-06-54-447.jpg?v=1724779600&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-06-54-447.jpg?v=1724779600&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-00-32-007.jpg?v=1724779598&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-00-32-007.jpg?v=1724779598&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-00-32-007.jpg?v=1724779598&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-00-32-007.jpg?v=1724779598&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-00-32-007.jpg?v=1724779598&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-00-32-007.jpg?v=1724779598&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-00-32-007.jpg?v=1724779598&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">
<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">
<span class="sr-only">Sale price</span>$20.00</sale-price>
<compare-at-price class="text-subdued line-through">
<span class="sr-only">Regular price</span>$35.00</compare-at-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_15-10-43-814.jpg?v=1724773400&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_15-10-43-814.jpg?v=1724773400&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_15-10-43-814.jpg?v=1724773400&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_15-10-43-814.jpg?v=1724773400&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_15-10-43-814.jpg?v=1724773400&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_15-10-43-814.jpg?v=1724773400&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_15-10-43-814.jpg?v=1724773400&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_15-10-43-814.jpg?v=1724773400&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_15-10-43-814.jpg?v=1724773400&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_15-10-43-814.jpg?v=1724773400&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_15-10-43-814.jpg?v=1724773400&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-06-09-864.jpg?v=1724773401&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-06-09-864.jpg?v=1724773401&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-06-09-864.jpg?v=1724773401&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-06-09-864.jpg?v=1724773401&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-06-09-864.jpg?v=1724773401&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-06-09-864.jpg?v=1724773401&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-06-09-864.jpg?v=1724773401&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">
<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">
<span class="sr-only">Sale price</span>$20.00</sale-price>
<compare-at-price class="text-subdued line-through">
<span class="sr-only">Regular price</span>$25.00</compare-at-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-07-41-647.jpg?v=1724778908&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-07-41-647.jpg?v=1724778908&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-07-41-647.jpg?v=1724778908&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-07-41-647.jpg?v=1724778908&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-07-41-647.jpg?v=1724778908&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-07-41-647.jpg?v=1724778908&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-07-41-647.jpg?v=1724778908&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-07-41-647.jpg?v=1724778908&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-07-41-647.jpg?v=1724778908&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-07-41-647.jpg?v=1724778908&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-07-41-647.jpg?v=1724778908&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-11-05-685.jpg?v=1724778907&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-11-05-685.jpg?v=1724778907&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-11-05-685.jpg?v=1724778907&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-11-05-685.jpg?v=1724778907&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-11-05-685.jpg?v=1724778907&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-11-05-685.jpg?v=1724778907&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-01_22-11-05-685.jpg?v=1724778907&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">
<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">
<span class="sr-only">Sale price</span>$20.00</sale-price>
<compare-at-price class="text-subdued line-through">
<span class="sr-only">Regular price</span>$25.00</compare-at-price></price-list></div></div>
</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">
<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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-08-22-315.jpg?v=1724777728&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-08-22-315.jpg?v=1724777728&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-08-22-315.jpg?v=1724777728&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-08-22-315.jpg?v=1724777728&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-08-22-315.jpg?v=1724777728&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-08-22-315.jpg?v=1724777728&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-08-22-315.jpg?v=1724777728&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-08-22-315.jpg?v=1724777728&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-08-22-315.jpg?v=1724777728&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-08-22-315.jpg?v=1724777728&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_16-08-22-315.jpg?v=1724777728&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_14-45-59-842.jpg?v=1724777729&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_14-45-59-842.jpg?v=1724777729&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_14-45-59-842.jpg?v=1724777729&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_14-45-59-842.jpg?v=1724777729&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_14-45-59-842.jpg?v=1724777729&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_14-45-59-842.jpg?v=1724777729&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_24-08-12_14-45-59-842.jpg?v=1724777729&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">
<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">
<span class="sr-only">Sale price</span>$20.00</sale-price>
<compare-at-price class="text-subdued line-through">
<span class="sr-only">Regular price</span>$25.00</compare-at-price></price-list></div></div>
</product-card></product-list>
</reveal-items>
</scroll-carousel><div class="scrollbar peer-not-scrollable:hidden">
<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">
<button is="prev-button" class="circle-button ring group" aria-controls="scroll-area-template--18347438506258__featured_collection_DVnM9K" disabled>
<span class="sr-only">Previous</span>
<span class="animated-arrow animated-arrow--reverse"></span>
</button>
<button is="next-button" class="circle-button ring group" aria-controls="scroll-area-template--18347438506258__featured_collection_DVnM9K">
<span class="sr-only">Next</span>
<span class="animated-arrow"></span>
</button>
</div></div></div>
</div>
</div>
</section><section id="shopify-section-template--18347438506258__1000f563-3f67-4fa4-ac75-f269b12a15e1" class="shopify-section shopify-section--rich-text"><style>
#shopify-section-template--18347438506258__1000f563-3f67-4fa4-ac75-f269b12a15e1 {
--section-background-hash: 0;
}
#shopify-section-template--18347438506258__1000f563-3f67-4fa4-ac75-f269b12a15e1 + * {
--previous-section-background-hash: 0;
}</style><style>
#shopify-section-template--18347438506258__1000f563-3f67-4fa4-ac75-f269b12a15e1 {
--rich-text-max-width: 650px
}
</style>
<div class="section section-blends section-full"><div class="rich-text justify-center ">
<div class="rich-text__wrapper">
<div class="prose justify-items-center text-center"></div>
</div>
</div>
</div></section><section id="shopify-section-template--18347438506258__blog_posts_GDqpHN" class="shopify-section shopify-section--blog-posts"><style>
#shopify-section-template--18347438506258__blog_posts_GDqpHN {
--section-background-hash: 0;
}
#shopify-section-template--18347438506258__blog_posts_GDqpHN + * {
--previous-section-background-hash: 0;
}</style><style>
#shopify-section-template--18347438506258__blog_posts_GDqpHN {
--blog-posts-per-row: 3;
--blog-posts-grid: auto / auto-flow 74vw;
}
@media screen and (min-width: 700px) {
#shopify-section-template--18347438506258__blog_posts_GDqpHN {
--blog-posts-grid: auto / auto-flow 52vw;
}
}
@media screen and (min-width: 1000px) {
#shopify-section-template--18347438506258__blog_posts_GDqpHN {
--blog-posts-grid: auto / repeat(var(--blog-posts-per-row), minmax(0, 1fr));
}
}
</style>
<div class="section section-blends section-full">
<div class="section-stack">
<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">
<span class="reversed-link">View all</span>
<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">
<path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
</svg></span>
</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&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&width=300 300w, //houseofmonac.com/cdn/shop/articles/2147c97d-f755-44d6-8506-5c67f6c1c4aa.jpg?v=1746696703&width=400 400w, //houseofmonac.com/cdn/shop/articles/2147c97d-f755-44d6-8506-5c67f6c1c4aa.jpg?v=1746696703&width=500 500w, //houseofmonac.com/cdn/shop/articles/2147c97d-f755-44d6-8506-5c67f6c1c4aa.jpg?v=1746696703&width=600 600w, //houseofmonac.com/cdn/shop/articles/2147c97d-f755-44d6-8506-5c67f6c1c4aa.jpg?v=1746696703&width=800 800w, //houseofmonac.com/cdn/shop/articles/2147c97d-f755-44d6-8506-5c67f6c1c4aa.jpg?v=1746696703&width=1000 1000w, //houseofmonac.com/cdn/shop/articles/2147c97d-f755-44d6-8506-5c67f6c1c4aa.jpg?v=1746696703&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">
<div class="v-stack gap-4 sm:gap-5">
<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">
<path d="M5.372 1v2.877M10.455 1v2.877" stroke="currentColor" stroke-linecap="round"/>
<path d="M14.338 7.632H1.497l.179-4.57 6.164-.448 6.497.448v4.57Z" fill="currentColor" fill-opacity=".12"/>
<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" />
</svg><span class="text-sm">Apr 12, 2025</span>
</div></div></div>
</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&width=1344" alt="Maison Crivelli'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&width=300 300w, //houseofmonac.com/cdn/shop/articles/0993a5a2-dddd-4686-88d1-55b9d53e911e_e0f6cfde-8d9c-4e9a-9bf7-687f3cdb08d4.jpg?v=1749670214&width=400 400w, //houseofmonac.com/cdn/shop/articles/0993a5a2-dddd-4686-88d1-55b9d53e911e_e0f6cfde-8d9c-4e9a-9bf7-687f3cdb08d4.jpg?v=1749670214&width=500 500w, //houseofmonac.com/cdn/shop/articles/0993a5a2-dddd-4686-88d1-55b9d53e911e_e0f6cfde-8d9c-4e9a-9bf7-687f3cdb08d4.jpg?v=1749670214&width=600 600w, //houseofmonac.com/cdn/shop/articles/0993a5a2-dddd-4686-88d1-55b9d53e911e_e0f6cfde-8d9c-4e9a-9bf7-687f3cdb08d4.jpg?v=1749670214&width=800 800w, //houseofmonac.com/cdn/shop/articles/0993a5a2-dddd-4686-88d1-55b9d53e911e_e0f6cfde-8d9c-4e9a-9bf7-687f3cdb08d4.jpg?v=1749670214&width=1000 1000w, //houseofmonac.com/cdn/shop/articles/0993a5a2-dddd-4686-88d1-55b9d53e911e_e0f6cfde-8d9c-4e9a-9bf7-687f3cdb08d4.jpg?v=1749670214&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">
<div class="v-stack gap-4 sm:gap-5">
<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">
<path d="M5.372 1v2.877M10.455 1v2.877" stroke="currentColor" stroke-linecap="round"/>
<path d="M14.338 7.632H1.497l.179-4.57 6.164-.448 6.497.448v4.57Z" fill="currentColor" fill-opacity=".12"/>
<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" />
</svg><span class="text-sm">Apr 11, 2025</span>
</div></div></div>
</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&width=1344" alt="Maison Francis Kurkdjian'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&width=300 300w, //houseofmonac.com/cdn/shop/articles/c7ec9555-6fe9-4bb9-aad6-6cf9d7990310_f892bc21-2826-487b-aeee-27b963e6e6da.jpg?v=1749669398&width=400 400w, //houseofmonac.com/cdn/shop/articles/c7ec9555-6fe9-4bb9-aad6-6cf9d7990310_f892bc21-2826-487b-aeee-27b963e6e6da.jpg?v=1749669398&width=500 500w, //houseofmonac.com/cdn/shop/articles/c7ec9555-6fe9-4bb9-aad6-6cf9d7990310_f892bc21-2826-487b-aeee-27b963e6e6da.jpg?v=1749669398&width=600 600w, //houseofmonac.com/cdn/shop/articles/c7ec9555-6fe9-4bb9-aad6-6cf9d7990310_f892bc21-2826-487b-aeee-27b963e6e6da.jpg?v=1749669398&width=800 800w, //houseofmonac.com/cdn/shop/articles/c7ec9555-6fe9-4bb9-aad6-6cf9d7990310_f892bc21-2826-487b-aeee-27b963e6e6da.jpg?v=1749669398&width=1000 1000w, //houseofmonac.com/cdn/shop/articles/c7ec9555-6fe9-4bb9-aad6-6cf9d7990310_f892bc21-2826-487b-aeee-27b963e6e6da.jpg?v=1749669398&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">
<div class="v-stack gap-4 sm:gap-5">
<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">
<path d="M5.372 1v2.877M10.455 1v2.877" stroke="currentColor" stroke-linecap="round"/>
<path d="M14.338 7.632H1.497l.179-4.57 6.164-.448 6.497.448v4.57Z" fill="currentColor" fill-opacity=".12"/>
<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" />
</svg><span class="text-sm">Apr 10, 2025</span>
</div></div></div>
</div></blog-post-card></div>
</div>
</div>
</section><section id="shopify-section-template--18347438506258__featured_collection_GgCpjX" class="shopify-section shopify-section--featured-collection"><style>
#shopify-section-template--18347438506258__featured_collection_GgCpjX {
--section-background-hash: 0;
}
#shopify-section-template--18347438506258__featured_collection_GgCpjX + * {
--previous-section-background-hash: 0;
}</style><style>#shopify-section-template--18347438506258__featured_collection_GgCpjX .product-list {
--product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
--product-list-items-per-row: 2;
--product-list-carousel-item-width: 74vw;
--product-list-grid: auto / auto-flow var(--product-list-carousel-item-width);
}
@media screen and (min-width: 700px) {
#shopify-section-template--18347438506258__featured_collection_GgCpjX .product-list {
--product-list-gap: var(--product-list-row-gap) var(--product-list-column-gap);
--product-list-items-per-row: 2;
--product-list-carousel-item-width: 36vw;
}
}
@media screen and (min-width: 1000px) {
#shopify-section-template--18347438506258__featured_collection_GgCpjX .product-list {
--product-list-items-per-row: 4;
--product-list-carousel-item-width: calc(var(--container-inner-width) / 4 - (var(--product-list-column-gap) / 4 * 3));
}
}
</style>
<div class="section section-blends section-full">
<div class="section-stack">
<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">
<span class="reversed-link">View all</span>
<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">
<path d="m.75 7 3-3-3-3" fill="none" stroke="currentColor" stroke-width="1.5"></path>
</svg></span>
</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">
<reveal-items selector=".product-list > *">
<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">
<a href="/products/butterscotch-brulee" data-instant><img src="//houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&width=2560" alt="Butterscotch Brulee - Monac" srcset="//houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&width=200 200w, //houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&width=300 300w, //houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&width=400 400w, //houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&width=500 500w, //houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&width=600 600w, //houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&width=700 700w, //houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&width=800 800w, //houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Butterscotch_Brulee.jpg?v=1742312090&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM_2.jpg?v=1742312090&width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM_2.jpg?v=1742312090&width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM_2.jpg?v=1742312090&width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM_2.jpg?v=1742312090&width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM_2.jpg?v=1742312090&width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM_2.jpg?v=1742312090&width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.55PM_2.jpg?v=1742312090&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">
<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">
<span class="sr-only">Sale price</span>From $19.99
</sale-price></price-list></div></div>
</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">
<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&width=3464" alt="Divine - Monac" srcset="//houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&width=200 200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&width=300 300w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&width=400 400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&width=500 500w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&width=600 600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&width=700 700w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&width=800 800w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Picsart_25-03-07_14-46-44-663.jpg?v=1741807314&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&width=1080" alt="Killian Angels' Share Dupe, clone, amber, vanilla, luxury scent notes" srcset="//houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-28at4.03.29PM_3.jpg?v=1741807314&width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-28at4.03.29PM_3.jpg?v=1741807314&width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-28at4.03.29PM_3.jpg?v=1741807314&width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-28at4.03.29PM_3.jpg?v=1741807314&width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-28at4.03.29PM_3.jpg?v=1741807314&width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-28at4.03.29PM_3.jpg?v=1741807314&width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-28at4.03.29PM_3.jpg?v=1741807314&width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-02-28at4.03.29PM_3.jpg?v=1741807314&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">
<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">
<span class="sr-only">Sale price</span>From $29.00
</sale-price></price-list></div></div>
</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">
<a href="/products/divine-cherry-pie" data-instant><img src="//houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&width=2560" alt="Divine Cherry Pie - Monac" srcset="//houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&width=200 200w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&width=300 300w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&width=400 400w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&width=500 500w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&width=600 600w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&width=700 700w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&width=800 800w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Divine_Cherry_Pie.jpg?v=1742311919&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-02at9.19.19AM_2.jpg?v=1742311919&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">
<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">
<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>
</svg></div>
</a></div><p style="background-color:#F4F4F4;"></p><price-list class="price-list " ><sale-price class="text-subdued">
<span class="sr-only">Sale price</span>From $19.99
</sale-price></price-list></div></div>
</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">
<a href="/products/strawberry-shortcake" data-instant><img src="//houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&width=2560" alt="Strawberry Shortcake - Monac" srcset="//houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&width=200 200w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&width=300 300w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&width=400 400w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&width=500 500w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&width=600 600w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&width=700 700w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&width=800 800w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&width=1000 1000w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&width=1200 1200w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&width=1400 1400w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&width=1600 1600w, //houseofmonac.com/cdn/shop/files/Strawberry_Shortcake.jpg?v=1742311719&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at12.29.54PM.jpg?v=1742311719&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">
<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">
<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>
</svg></div>
</a></div><p style="background-color:#F4F4F4;"></p><price-list class="price-list " ><sale-price class="text-subdued">
<span class="sr-only">Sale price</span>From $19.99
</sale-price></price-list></div></div>
</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">
<a href="/products/sugar-cookie" data-instant><img src="//houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&width=2560" alt="Sugar Cookie - Monac" srcset="//houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&width=200 200w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&width=300 300w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&width=400 400w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&width=500 500w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&width=600 600w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&width=700 700w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&width=800 800w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&width=1000 1000w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&width=1200 1200w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&width=1400 1400w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&width=1600 1600w, //houseofmonac.com/cdn/shop/files/sugar_cookie.jpg?v=1742311771&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&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&width=200 200w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&width=300 300w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&width=400 400w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&width=500 500w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&width=600 600w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&width=700 700w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&width=800 800w, //houseofmonac.com/cdn/shop/files/WhatsAppImage2024-03-06at11.48.35AM.jpg?v=1742311771&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">
<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">
<span class="sr-only">Sale price</span>From $19.99
</sale-price></price-list></div></div>
</product-card></product-list>
</reveal-items>
</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>
<span class="sr-only">Previous</span>
<span class="animated-arrow animated-arrow--reverse"></span>
</button>
<button is="next-button" class="circle-button circle-button--lg circle-button--fill border group" aria-controls="scroll-area-template--18347438506258__featured_collection_GgCpjX">
<span class="sr-only">Next</span>
<span class="animated-arrow"></span>
</button></div>
</div>
</div>
</section><section id="shopify-section-template--18347438506258__1694399916869e05b3" class="shopify-section shopify-section--apps"><style>
#shopify-section-template--18347438506258__1694399916869e05b3 {
--section-background-hash: 0;
}
#shopify-section-template--18347438506258__1694399916869e05b3 + * {
--previous-section-background-hash: 0;
}</style><style>
#shopify-section-template--18347438506258__1694399916869e05b3 {
}
</style>
<div class="section section-blends section-full"><div id="shopify-block-AU2Ztamt6Y1dEMHRxT__junip_junip_reviews_9R3ARV" class="shopify-block shopify-app-block"><span
class="junip-review-section "
data-layout=list
data-reviews-type=all
data-show-summary=true
data-reviews-count=10
>
</span>
</div></div>
</section>
<!-- BEGIN sections: footer-group -->
<footer id="shopify-section-sections--18347439456530__footer" class="shopify-section shopify-section-group-footer-group shopify-section--footer"><div class="footer">
<div class="container">
<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>
<a href="/policies/privacy-policy" class="inline-block link-faded break-all">Privacy Policy</a>
</li><li>
<a href="/policies/refund-policy" class="inline-block link-faded break-all">Refund Policy</a>
</li><li>
<a href="/policies/terms-of-service" class="inline-block link-faded break-all">Terms of Service</a>
</li><li>
<a href="/policies/shipping-policy" class="inline-block link-faded break-all">Shipping Policy</a>
</li><li>
<a href="/pages/payment-policy" class="inline-block link-faded break-all">Payment Policy</a>
</li></ul>
</div><div class="footer__block footer__block--menu" ><p class="bold">Customer Area</p><ul class="v-stack gap-3" role="list"><li>
<a href="/" class="inline-block link-faded break-all">Home</a>
</li><li>
<a href="/collections" class="inline-block link-faded break-all">Shop Now</a>
</li><li>
<a href="/account/login" class="inline-block link-faded break-all">Login</a>
</li><li>
<a href="/account/register" class="inline-block link-faded break-all">Signup</a>
</li><li>
<a href="/cart" class="inline-block link-faded break-all">Cart</a>
</li></ul>
</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>
<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">
<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"/>
</svg></a>
</li><li>
<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">
<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"/>
</svg></a>
</li><li>
<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">
<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"/>
</svg></a>
</li><li>
<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">
<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"/>
</svg></a>
</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>
<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>
<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>
<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>
<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>
<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>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- END sections: footer-group --></main>
<script src="//reginapps.com/limitsify/javascripts/limitsify.min.js" type="text/javascript"></script>
<script>
if (typeof limitsifyTheme === 'undefined') {
var limitsifyTheme = new Limitsify.DefaultAdapter();
var limitsifyClient = new Limitsify({
apiToken: '419cdb0929022e8facc6be444624c3',
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},
theme: limitsifyTheme,
rememberButtonLabels: false,
settings: 'color=black&dots=yes&extended=0&space=0'
});
}
</script>
<div id="shopify-block-AYU1uNGdwRjVma1l1U__16017602894386113438" class="shopify-block shopify-app-block"><!-- BEGIN app snippet: junip-store-key --><span
class="junip-store-key"
data-supports-theme-extensions="true"
data-shopify-preview-mode="true"
data-store-key="FFAaheFBF9QYGVgLZ1ZpMpPa"
data-onsite-enabled="true"
data-review-count-enabled="true"
data-star-color="#FDB600"
data-star-template-url="https://api.juniphq.com/images/star_options/1/template">
</span>
<!-- END app snippet -->
</div><div id="shopify-block-Aajk0TllTV2lJZTdoT__15683396631634586217" class="shopify-block shopify-app-block"><script
id="chat-button-container"
data-horizontal-position=bottom_right
data-vertical-position=lowest
data-icon=chat_bubble
data-text=no_text
data-color=#202a36
data-secondary-color=#FFFFFF
data-ternary-color=#6A6A6A
data-greeting-message=%F0%9F%91%8B+Hi%2C+message+us+with+any+questions.+We%27re+happy+to+help%21
data-domain=houseofmonac.com
data-shop-domain=houseofmonac.com
data-external-identifier=UON-sAMuqMWAWR5b-alyBIRixvI2I2XLqv1Y3jaLFOo
>
</script>
</div><div id="shopify-block-AaUY3TDlOK3J2UVAyQ__4015264832934714879" class="shopify-block shopify-app-block">
<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'">
<script>
function createEcomSendMainStyleEle() {
const ele = document.createElement("link")
ele.rel = "stylesheet"
ele.href = 'https://cdn.shopify.com/extensions/08536f02-4ff7-4828-94b5-f5f1c7a8035a/ecomsend-popups-41/assets/style.css'
ele.dataset.ecomsendTag = "load-alternate-css"
return ele
}
if (window.EcomSendApps?.enableAlternateCSSLoading ?? false) {
document.head.appendChild(createEcomSendMainStyleEle())
}
// 标记是否已经初始化,防止重复执行
let isEcomSendInitialized = false;
function createEcomSendMainJSEle() {
if (isEcomSendInitialized) return;
const ele = document.createElement("script")
ele.defer = true
ele.id = "ecomsend-main-js"
ele.src = 'https://cdn.shopify.com/extensions/08536f02-4ff7-4828-94b5-f5f1c7a8035a/ecomsend-popups-41/assets/ecomsend.js'
if (null === document.getElementById(ele.id)) {
document.head.appendChild(ele)
isEcomSendInitialized = true;
}
}
// onload 回调函数
function EcomsendOnMobxLoaded() {
createEcomSendMainJSEle();
}
// 备用检查方案
let checkCount = 0;
const maxChecks = 15; // 最多检查15秒
function EcomsendBackupCheck() {
if (isEcomSendInitialized) return; // 已经初始化过了
checkCount++;
// 检查 React 和相关依赖是否已加载
if (window.React && window.ReactDOM) {
createEcomSendMainJSEle();
return;
}
// 继续检查
if (checkCount < maxChecks) {
setTimeout(EcomsendBackupCheck, 1000);
} else {
createEcomSendMainJSEle();
}
}
// 启动备用检查(延迟1秒开始,给onload机会先执行)
setTimeout(EcomsendBackupCheck, 1000);
</script>
<style id="ecomsend-custom-style"></style>
<div id="ecomsend-widget"></div>
<!-- BEGIN app snippet: ecomsend-app --><script type="text/javascript">
//EcomSend APPS COMMON JS CODE
window.EcomSendApps = window.EcomSendApps || {}
window.EcomSendApps.design_mode = false
window.EcomSendApps.common = window.EcomSendApps.common || {}
window.EcomSendApps.common.shop = {
permanent_domain: 'the-white-market-2718.myshopify.com',
currency: "USD",
money_format: "${{amount}}",
id: 71899971858,
}
window.EcomSendApps.common.template = 'index'
</script>
<!-- END app snippet -->
<script>window.shopLocale = 'en'</script>
<script defer="defer" src="https://cdn.shopify.com/extensions/08536f02-4ff7-4828-94b5-f5f1c7a8035a/ecomsend-popups-41/assets/react_react-dom.min.js"></script>
<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>
</div></body>
</html>