Bakery Order Calculator

Give your bakery an edge with an interactive order calculator. Customers can build their perfect cake by selecting size, flavor, filling, and frosting style, then add decorations and extras like cupcakes and macarons. The calculator shows real-time pricing and required deposits. Perfect for custom cakes, wedding cakes, and party orders. Capture more orders by making pricing transparent and the ordering process easy.

Events & Entertainment

Try the Calculator

Custom Bakery Order
๐ŸŽ‚ Cake Selection
 
๐ŸŽจ Decoration
 
 
๐Ÿง Additional Items
 
 
 
 
๐Ÿš— Pickup & Delivery
 

๐Ÿ’ฐ Order Summary
$ 75.00
+
$ 0.00
+
$ 0.00
+
$ 0.00
๐Ÿงพ Total
$ 75.00
$ 38.00
50% deposit required to confirm order. Please order at least 1 week in advance for custom cakes.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
export function bakeryOrderCalculator(form: FormTs) {
// Cake base prices by size (number of servings)
const cakePrices: Record<string, number> = {
'small': 45, // 8-12 servings
'medium': 75, // 16-24 servings
'large': 120, // 30-40 servings
'xlarge': 180, // 50-60 servings
'tiered-2': 250, // 2-tier
'tiered-3': 400 // 3-tier
};
 
// Flavor premiums
const flavorPremiums: Record<string, number> = {
'vanilla': 0,
'chocolate': 0,
'red-velvet': 15,
'carrot': 15,
'lemon': 10,
'marble': 10,
'custom': 25
};
 
// Filling prices
const fillingPrices: Record<string, number> = {
'buttercream': 0,
'cream-cheese': 10,
'fruit': 15,
'mousse': 20,
'ganache': 15,
'custard': 15
};
 
// Frosting style multipliers
const frostingMultipliers: Record<string, number> = {
'buttercream-smooth': 1.0,
'buttercream-textured': 1.0,
'fondant': 1.4,
'naked': 0.85,
'semi-naked': 0.9
};
 
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'Custom Bakery Order',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Cake Selection Section
const cakeSection = form.addSubform('cakeSelection', { title: '๐ŸŽ‚ Cake Selection' });
 
cakeSection.addRow(row => {
row.addRadioButton('cakeSize', {
label: 'Cake Size',
options: [
{ id: 'small', name: 'Small (8-12 servings) - $45' },
{ id: 'medium', name: 'Medium (16-24 servings) - $75' },
{ id: 'large', name: 'Large (30-40 servings) - $120' },
{ id: 'xlarge', name: 'Extra Large (50-60 servings) - $180' },
{ id: 'tiered-2', name: '2-Tier (40-50 servings) - $250' },
{ id: 'tiered-3', name: '3-Tier (70-100 servings) - $400' }
],
defaultValue: 'medium',
orientation: 'vertical',
isRequired: true
});
});
 
cakeSection.addRow(row => {
row.addDropdown('flavor', {
label: 'Cake Flavor',
options: [
{ id: 'vanilla', name: 'Classic Vanilla' },
{ id: 'chocolate', name: 'Rich Chocolate' },
{ id: 'red-velvet', name: 'Red Velvet (+$15)' },
{ id: 'carrot', name: 'Carrot Cake (+$15)' },
{ id: 'lemon', name: 'Lemon (+$10)' },
{ id: 'marble', name: 'Marble (+$10)' },
{ id: 'custom', name: 'Custom Flavor (+$25)' }
],
defaultValue: 'vanilla',
isRequired: true
}, '1fr');
row.addDropdown('filling', {
label: 'Filling',
options: [
{ id: 'buttercream', name: 'Buttercream' },
{ id: 'cream-cheese', name: 'Cream Cheese (+$10)' },
{ id: 'fruit', name: 'Fresh Fruit (+$15)' },
{ id: 'mousse', name: 'Chocolate Mousse (+$20)' },
{ id: 'ganache', name: 'Ganache (+$15)' },
{ id: 'custard', name: 'Vanilla Custard (+$15)' }
],
defaultValue: 'buttercream',
isRequired: true
}, '1fr');
});
 
// Decoration Section
const decorSection = form.addSubform('decoration', { title: '๐ŸŽจ Decoration' });
 
decorSection.addRow(row => {
row.addRadioButton('frostingStyle', {
label: 'Frosting Style',
options: [
{ id: 'buttercream-smooth', name: 'Smooth Buttercream' },
{ id: 'buttercream-textured', name: 'Textured Buttercream' },
{ id: 'fondant', name: 'Fondant (+40%)' },
{ id: 'naked', name: 'Naked Cake (-15%)' },
{ id: 'semi-naked', name: 'Semi-Naked (-10%)' }
],
defaultValue: 'buttercream-smooth',
orientation: 'vertical',
isRequired: true
});
});
 
decorSection.addRow(row => {
row.addCheckbox('customColors', {
label: 'Custom Colors (+$15)',
defaultValue: false
}, '1fr');
row.addCheckbox('goldAccents', {
label: 'Gold/Silver Accents (+$25)',
defaultValue: false
}, '1fr');
});
 
decorSection.addRow(row => {
row.addCheckbox('freshFlowers', {
label: 'Fresh Flowers (+$35)',
defaultValue: false
}, '1fr');
row.addCheckbox('cakeTopper', {
label: 'Custom Cake Topper (+$20)',
defaultValue: false
}, '1fr');
});
 
decorSection.addRow(row => {
row.addCheckbox('fondantFigures', {
label: 'Fondant Figures/Decorations (+$50)',
defaultValue: false
}, '1fr');
row.addCheckbox('edibleImage', {
label: 'Edible Image Print (+$15)',
defaultValue: false
}, '1fr');
});
 
decorSection.addRow(row => {
row.addTextarea('specialInstructions', {
label: 'Special Instructions or Theme',
placeholder: 'Describe any special requests, theme, colors, or message for the cake...',
rows: 3
});
});
 
// Additional Items Section
const extrasSection = form.addSubform('extras', { title: '๐Ÿง Additional Items' });
 
extrasSection.addRow(row => {
row.addInteger('cupcakeDozen', {
label: 'Cupcakes (per dozen)',
min: 0,
max: 20,
defaultValue: 0,
placeholder: '0'
}, '1fr');
row.addInteger('cakePops', {
label: 'Cake Pops (per dozen)',
min: 0,
max: 20,
defaultValue: 0,
placeholder: '0'
}, '1fr');
});
 
extrasSection.addRow(row => {
row.addInteger('cookies', {
label: 'Decorated Cookies (per dozen)',
min: 0,
max: 20,
defaultValue: 0,
placeholder: '0'
}, '1fr');
row.addInteger('macarons', {
label: 'Macarons (per dozen)',
min: 0,
max: 20,
defaultValue: 0,
placeholder: '0'
}, '1fr');
});
 
// Delivery Section
const deliverySection = form.addSubform('delivery', { title: '๐Ÿš— Pickup & Delivery' });
 
deliverySection.addRow(row => {
row.addRadioButton('deliveryOption', {
label: 'Delivery Option',
options: [
{ id: 'pickup', name: 'Store Pickup (Free)' },
{ id: 'local', name: 'Local Delivery (within 10 miles) - $25' },
{ id: 'extended', name: 'Extended Delivery (10-25 miles) - $45' },
{ id: 'setup', name: 'Delivery + Setup - $75' }
],
defaultValue: 'pickup',
orientation: 'vertical',
isRequired: true
});
});
 
deliverySection.addRow(row => {
row.addCheckbox('rush', {
label: 'Rush Order (less than 48 hours) (+50%)',
defaultValue: false
});
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Price Summary Section
const summarySection = form.addSubform('summary', { title: '๐Ÿ’ฐ Order Summary', isCollapsible: false });
 
summarySection.addRow(row => {
row.addPriceDisplay('cakeBase', {
label: 'Cake Base Price',
computedValue: () => {
const size = cakeSection.radioButton('cakeSize')?.value() || 'medium';
const flavor = cakeSection.dropdown('flavor')?.value() || 'vanilla';
const filling = cakeSection.dropdown('filling')?.value() || 'buttercream';
const frostingStyle = decorSection.radioButton('frostingStyle')?.value() || 'buttercream-smooth';
 
const basePrice = cakePrices[size] || 75;
const flavorPremium = flavorPremiums[flavor] || 0;
const fillingPrice = fillingPrices[filling] || 0;
const frostingMultiplier = frostingMultipliers[frostingStyle] || 1.0;
 
return Math.round((basePrice + flavorPremium + fillingPrice) * frostingMultiplier);
},
variant: 'default'
}, '1fr');
row.addPriceDisplay('decorations', {
label: 'Decorations',
computedValue: () => {
let total = 0;
if (decorSection.checkbox('customColors')?.value()) total += 15;
if (decorSection.checkbox('goldAccents')?.value()) total += 25;
if (decorSection.checkbox('freshFlowers')?.value()) total += 35;
if (decorSection.checkbox('cakeTopper')?.value()) total += 20;
if (decorSection.checkbox('fondantFigures')?.value()) total += 50;
if (decorSection.checkbox('edibleImage')?.value()) total += 15;
return total;
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('additionalItems', {
label: 'Additional Items',
computedValue: () => {
const cupcakes = extrasSection.integer('cupcakeDozen')?.value() || 0;
const cakePops = extrasSection.integer('cakePops')?.value() || 0;
const cookies = extrasSection.integer('cookies')?.value() || 0;
const macarons = extrasSection.integer('macarons')?.value() || 0;
 
return (cupcakes * 36) + (cakePops * 30) + (cookies * 42) + (macarons * 48);
},
variant: 'default',
prefix: '+'
}, '1fr');
row.addPriceDisplay('delivery', {
label: 'Delivery',
computedValue: () => {
const option = deliverySection.radioButton('deliveryOption')?.value() || 'pickup';
const deliveryPrices: Record<string, number> = {
'pickup': 0,
'local': 25,
'extended': 45,
'setup': 75
};
return deliveryPrices[option] || 0;
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('rushFee', {
label: 'Rush Order Fee',
computedValue: () => {
const rush = deliverySection.checkbox('rush')?.value();
if (!rush) return 0;
 
const size = cakeSection.radioButton('cakeSize')?.value() || 'medium';
const flavor = cakeSection.dropdown('flavor')?.value() || 'vanilla';
const filling = cakeSection.dropdown('filling')?.value() || 'buttercream';
const frostingStyle = decorSection.radioButton('frostingStyle')?.value() || 'buttercream-smooth';
 
const basePrice = cakePrices[size] || 75;
const flavorPremium = flavorPremiums[flavor] || 0;
const fillingPrice = fillingPrices[filling] || 0;
const frostingMultiplier = frostingMultipliers[frostingStyle] || 1.0;
 
const cakeTotal = (basePrice + flavorPremium + fillingPrice) * frostingMultiplier;
return Math.round(cakeTotal * 0.5);
},
variant: 'default',
prefix: '+',
isVisible: () => deliverySection.checkbox('rush')?.value() === true
});
});
 
const finalSection = form.addSubform('final', {
title: '๐Ÿงพ Total',
isCollapsible: false,
sticky: 'bottom'
});
 
finalSection.addRow(row => {
row.addPriceDisplay('totalPrice', {
label: 'Order Total',
computedValue: () => {
const size = cakeSection.radioButton('cakeSize')?.value() || 'medium';
const flavor = cakeSection.dropdown('flavor')?.value() || 'vanilla';
const filling = cakeSection.dropdown('filling')?.value() || 'buttercream';
const frostingStyle = decorSection.radioButton('frostingStyle')?.value() || 'buttercream-smooth';
const rush = deliverySection.checkbox('rush')?.value();
 
// Cake price
const basePrice = cakePrices[size] || 75;
const flavorPremium = flavorPremiums[flavor] || 0;
const fillingPrice = fillingPrices[filling] || 0;
const frostingMultiplier = frostingMultipliers[frostingStyle] || 1.0;
let cakeTotal = (basePrice + flavorPremium + fillingPrice) * frostingMultiplier;
 
// Decorations
let decorTotal = 0;
if (decorSection.checkbox('customColors')?.value()) decorTotal += 15;
if (decorSection.checkbox('goldAccents')?.value()) decorTotal += 25;
if (decorSection.checkbox('freshFlowers')?.value()) decorTotal += 35;
if (decorSection.checkbox('cakeTopper')?.value()) decorTotal += 20;
if (decorSection.checkbox('fondantFigures')?.value()) decorTotal += 50;
if (decorSection.checkbox('edibleImage')?.value()) decorTotal += 15;
 
// Additional items
const cupcakes = extrasSection.integer('cupcakeDozen')?.value() || 0;
const cakePops = extrasSection.integer('cakePops')?.value() || 0;
const cookies = extrasSection.integer('cookies')?.value() || 0;
const macarons = extrasSection.integer('macarons')?.value() || 0;
const extrasTotal = (cupcakes * 36) + (cakePops * 30) + (cookies * 42) + (macarons * 48);
 
// Delivery
const deliveryOption = deliverySection.radioButton('deliveryOption')?.value() || 'pickup';
const deliveryPrices: Record<string, number> = {
'pickup': 0,
'local': 25,
'extended': 45,
'setup': 75
};
const deliveryTotal = deliveryPrices[deliveryOption] || 0;
 
// Rush fee
const rushFee = rush ? cakeTotal * 0.5 : 0;
 
return Math.round(cakeTotal + decorTotal + extrasTotal + deliveryTotal + rushFee);
},
variant: 'large'
}, '1fr');
row.addPriceDisplay('deposit', {
label: 'Deposit Required (50%)',
computedValue: () => {
const size = cakeSection.radioButton('cakeSize')?.value() || 'medium';
const flavor = cakeSection.dropdown('flavor')?.value() || 'vanilla';
const filling = cakeSection.dropdown('filling')?.value() || 'buttercream';
const frostingStyle = decorSection.radioButton('frostingStyle')?.value() || 'buttercream-smooth';
const rush = deliverySection.checkbox('rush')?.value();
 
const basePrice = cakePrices[size] || 75;
const flavorPremium = flavorPremiums[flavor] || 0;
const fillingPrice = fillingPrices[filling] || 0;
const frostingMultiplier = frostingMultipliers[frostingStyle] || 1.0;
let cakeTotal = (basePrice + flavorPremium + fillingPrice) * frostingMultiplier;
 
let decorTotal = 0;
if (decorSection.checkbox('customColors')?.value()) decorTotal += 15;
if (decorSection.checkbox('goldAccents')?.value()) decorTotal += 25;
if (decorSection.checkbox('freshFlowers')?.value()) decorTotal += 35;
if (decorSection.checkbox('cakeTopper')?.value()) decorTotal += 20;
if (decorSection.checkbox('fondantFigures')?.value()) decorTotal += 50;
if (decorSection.checkbox('edibleImage')?.value()) decorTotal += 15;
 
const cupcakes = extrasSection.integer('cupcakeDozen')?.value() || 0;
const cakePops = extrasSection.integer('cakePops')?.value() || 0;
const cookies = extrasSection.integer('cookies')?.value() || 0;
const macarons = extrasSection.integer('macarons')?.value() || 0;
const extrasTotal = (cupcakes * 36) + (cakePops * 30) + (cookies * 42) + (macarons * 48);
 
const deliveryOption = deliverySection.radioButton('deliveryOption')?.value() || 'pickup';
const deliveryPrices: Record<string, number> = {
'pickup': 0,
'local': 25,
'extended': 45,
'setup': 75
};
const deliveryTotal = deliveryPrices[deliveryOption] || 0;
 
const rushFee = rush ? cakeTotal * 0.5 : 0;
 
const total = cakeTotal + decorTotal + extrasTotal + deliveryTotal + rushFee;
return Math.round(total * 0.5);
},
variant: 'default'
}, '1fr');
});
 
finalSection.addRow(row => {
row.addTextPanel('disclaimer', {
computedValue: () => '50% deposit required to confirm order. Please order at least 1 week in advance for custom cakes.',
customStyles: { 'font-size': '0.85rem', 'color': '#64748b', 'font-style': 'italic' }
});
});
 
form.configureSubmitButton({
label: 'Place Order'
});
}
 

Frequently Asked Questions

Can I add my own cake sizes and flavors?

Yes. You can customize all sizes, flavors, fillings, and frostings to match your menu. Add specialty items, seasonal flavors, or signature cakes unique to your bakery.

How do I handle wedding cake consultations?

You can set tiered cakes to require a consultation, or use the calculator to give couples a starting estimate before their in-person meeting.

Can customers upload inspiration photos?

You can add a file upload field to let customers share photos of cake designs they like, making it easier to understand their vision.

How does the deposit system work?

The calculator shows the 50% deposit required. You can adjust this percentage or connect to a payment system to collect deposits online.

Can I set minimum order requirements?

Yes. You can add minimum order amounts or required lead times for custom orders and display warnings when orders don't meet your requirements.