you are in

Home Delivery

18 Assorted Macarons

18 Assorted Macarons

£29.90

    Choose Card Type
    Custom Message
May contain nuts
ALMONDS, EGGS, Cream (MILK), MILK Powder, MILK Chocolate, Butter (MILK), NUTS

Please note that the Delivery Fee for any order up to a basket value of £60.00 is £7.50

FREE DELIVERY for orders above £ 60.00

We deliver to most UK Mainland Postcodes but with some exclusions: Northern Ireland, Channel Isles, Isle of Man, Isle of Wight, the Highlands & some specific postcodes in Scotland

Your flavours will be selected by the Chef from:

Choose any macarons from our classical range including Vanilla, Caramel Chocolate, Raspberry, Salted Butter Caramel, Pistachio, Mojito (Lime & Mint), Passion Fruit & Milk Chocolate, Yuzu Tarragon, Praline Cinnamon, Chocolate, Rum Raisin, Basil Raspberry, Orange Cointreau, Lemon & Lime, Exotic Fruits and Peruvian Coffee.

Our Seasonal range, where flavours will depend on Florian’s inspiration. Visit our News page or follow us on Facebook or Instagram to see the current seasonal flavour.

If you would like to choose your flavours, please visit “Create your Macaron box” page accessible from the Home Delivery menu.

If your order is a gift,  “Thank you”, “Happy Birthday” and “Congratulation” cards are available here. Your original gift card will be added to your order with your handwritten message.

Please keep our Macarons refrigerated and consume within 5 days of receipt.

Never miss an update

Add your email to receive our newsletters.

Subscription Form
My cart
🎁 Only £60.00 away from free shipping to GB 🇬🇧
Your cart is empty.

Looks like you haven't made a choice yet.

document.addEventListener("cartpops.afterOpen", function () { const btn = document.querySelector(".cpops-checkout-secondary.cpops-custom-btn"); if (!btn) return; // Default URL let targetURL = "https://florianpoirot.com/#shop"; // Get all product rows in CartPops const items = document.querySelectorAll(".cpops-cart-line-items .bis_check_checked"); if (!items.length) { btn.href = targetURL; return; } let foundHomeDelivery = false; let foundClickCollect = false; let processed = 0; items.forEach(item => { // Find the hidden WC cart key input const cartKeyInput = item.querySelector("input[name='cart_item_key']"); if (!cartKeyInput) return; const cartItemKey = cartKeyInput.value; // Get cart data from WooCommerce endpoint fetch("/?wc-ajax=get_cart_contents") .then(res => res.json()) .then(cart => { const cartItem = cart.find(i => i.key === cartItemKey); if (!cartItem) return; const productID = cartItem.product_id; // Fetch product categories return fetch(`/wp-json/wc/v3/products/${productID}?per_page=1`, { headers: { "Accept": "application/json" } }).then(res => res.json()) .then(product => { if (!product.categories) return; product.categories.forEach(cat => { const slug = cat.slug.toLowerCase(); if (slug === "home-delivery") foundHomeDelivery = true; if (slug === "click-collect") foundClickCollect = true; }); }); }) .finally(() => { processed++; // After all products are processed if (processed === items.length) { if (foundHomeDelivery) { targetURL = "https://florianpoirot.com/home-delivery/"; } else if (foundClickCollect) { targetURL = "https://florianpoirot.com/click-and-collect/"; } btn.href = targetURL; } }); }); });