you are in

Click & collect

Macaron Cake – C&C

Macaron Cake – C&C

Our famous macaron dough transformed into a show‑stopping cake for every occasion.

Price range: £30.00 through £150.00

Handwritten on our Chocolate plaque
    Choose Card Type
    Custom Message
  • *Flavours

    *Size

    Reset options
May contain nuts
NUTS, MILK, SOY Lecithin, EGGS

Our shop is open for collections Tuesdays to Saturdays 10:00am to 4:00pm

If there is any issue with your product availability we will contact you before your chosen collection date, or please feel free to contact us on 07947 587 382.

Crafted with our famous macaron dough, this cake is filled with your choice of:
• Passion Fruit & Raspberry cream
• Apple & Caramel cream

Each cake is freshly handmade and very fragile, which makes them truly unforgettable.

✨ Sizes
• One tier – serves 6 to 8 people
• Two tiers – serves 10 to 16 people
• Three tiers or more – serves 20+ people

🎀 Personalisation
We can add a white chocolate plaque with up to three words, free of charge.

🕒 Storage & Freshness
• Keep refrigerated and remove 15 minutes before serving.
• Best enjoyed within 36 hours of collection.
Refreshing, elegant, and very tasty — the perfect finale to a celebration meal.

📞 Ordering
Please contact us at least 3 working days prior to your collection date on 07947 587 382 to confirm your order.
• Cake orders are non‑cancellable and non‑refundable.
• In exceptional circumstances, we may offer to reschedule the collection date after discussion.

🚖 Delivery Option
If you are unable to collect, you are welcome to organise taxi delivery at your own cost.

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; } }); }); });