top of page

Transform your cakes into stunning creations with these edible cosmetics decorations. Printed on high-quality icing sheets and cut to shape, this set of mini makeup-themed designs adds a fun, stylish, and unique touch to any cake. Perfect for birthdays, parties, or special occasions 🎂💄.

✅ Edible cosmetics printed on premium icing sheets
✅ Pre-cut shapes for easy cake decorating
✅ Fun and stylish makeup-themed designs
✅ Ideal for birthdays, parties, and celebrations
✅ Safe to eat and 100% edible
✅ Adds a creative, personalized look to your desserts

Make your cakes unforgettable with these edible decorations that are as beautiful as they are delicious.

edible cosmetics cake, edible makeup decorations, mini cosmetics cake toppers, printed icing sheet toppers, edible makeup cake theme, cut to shape cake toppers, edible cake decorating set, makeup party cake decor, icing sheet edible prints, edible cosmetics party decor, beauty theme cake toppers, edible birthday cake decorations, makeup edible cake designs

Edible Mini Makeup Cake Decorations: Printed Icing Sheet Toppers

$9.00Price
Quantity
Choose File
bottom of page
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import java.util.*; @RestController public class CheckoutController { @GetMapping("/checkout") public Map checkout( @RequestParam String products, @RequestParam(required = false) String coupon) { // Parse products Map productQuantities = new HashMap<>(); for (String productEntry : products.split(",")) { String[] parts = productEntry.split(":"); productQuantities.put( parts[0], // Product ID Integer.parseInt(parts[1]) // Quantity ); } // Build result Map result = new HashMap<>(); result.put("products", productQuantities); result.put("coupon", coupon != null ? coupon : "No coupon applied"); return result; } }