Catering Cost Calculator

Help your catering business convert more leads with an interactive quote calculator. This template lets event planners configure guest count, service style (buffet, plated, stations), beverages, and additional services to see instant estimates. Pricing adjusts for event type, day of week, and dietary requirements. Perfect for caterers, event companies, and venue coordinators. Capture event details and contact info from planners ready to book.

Events & EntertainmentPopular

Try the Calculator

Catering Quote Calculator
๐Ÿ“… Event Details
 
๐Ÿฝ๏ธ Menu & Service Style
 
๐Ÿฅ‚ Beverages
โœจ Additional Services
 

๐Ÿ’ฐ Quote Summary
$ 1,750.00
$ 250.00
$ 300.00
$ 0.00

$ 2,300.00
+
$ 262.00
$ 2,563.00
$ 51.00
๐Ÿงพ Summary
$ 2,563.00
Final pricing based on menu and venue details.
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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
export function cateringCostCalculator(form: FormTs) {
const mealStyles: Record<string, number> = {
'boxed': 15,
'buffet': 35,
'family': 40,
'plated': 55,
'stations': 65,
'premium': 85
};
 
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'Catering Quote Calculator',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Event Details Section
const eventSection = form.addSubform('eventDetails', { title: '๐Ÿ“… Event Details' });
 
eventSection.addRow(row => {
row.addInteger('guestCount', {
label: 'Number of Guests',
min: 10,
max: 1000,
defaultValue: 50,
isRequired: true
}, '1fr');
row.addDropdown('eventType', {
label: 'Event Type',
options: [
{ id: 'corporate', name: 'Corporate Event' },
{ id: 'wedding', name: 'Wedding Reception' },
{ id: 'social', name: 'Social Gathering' },
{ id: 'holiday', name: 'Holiday Party' },
{ id: 'fundraiser', name: 'Fundraiser/Gala' },
{ id: 'birthday', name: 'Birthday/Anniversary' }
],
defaultValue: 'corporate',
isRequired: true
}, '1fr');
});
 
eventSection.addRow(row => {
row.addDropdown('mealTime', {
label: 'Meal Time',
options: [
{ id: 'breakfast', name: 'Breakfast (-20%)' },
{ id: 'brunch', name: 'Brunch' },
{ id: 'lunch', name: 'Lunch (-10%)' },
{ id: 'dinner', name: 'Dinner' },
{ id: 'reception', name: 'Reception/Appetizers Only (-30%)' }
],
defaultValue: 'dinner',
isRequired: true
}, '1fr');
row.addDropdown('serviceDay', {
label: 'Day of Event',
options: [
{ id: 'weekday', name: 'Weekday' },
{ id: 'friday', name: 'Friday (+10%)' },
{ id: 'saturday', name: 'Saturday (+15%)' },
{ id: 'sunday', name: 'Sunday (+10%)' },
{ id: 'holiday', name: 'Holiday (+25%)' }
],
defaultValue: 'saturday'
}, '1fr');
});
 
// Menu Selection Section
const menuSection = form.addSubform('menuSelection', { title: '๐Ÿฝ๏ธ Menu & Service Style' });
 
menuSection.addRow(row => {
row.addRadioButton('mealStyle', {
label: 'Service Style',
options: [
{ id: 'boxed', name: 'Boxed Meals ($15/person) - Individual packaged meals' },
{ id: 'buffet', name: 'Buffet ($35/person) - Self-service stations' },
{ id: 'family', name: 'Family Style ($40/person) - Shared platters at tables' },
{ id: 'plated', name: 'Plated ($55/person) - Individual courses served' },
{ id: 'stations', name: 'Action Stations ($65/person) - Chef-attended stations' },
{ id: 'premium', name: 'Premium Plated ($85/person) - Multi-course fine dining' }
],
defaultValue: 'buffet',
orientation: 'vertical',
isRequired: true
});
});
 
menuSection.addRow(row => {
row.addDropdown('cuisineStyle', {
label: 'Cuisine Style',
options: [
{ id: 'american', name: 'American Classic' },
{ id: 'italian', name: 'Italian' },
{ id: 'mexican', name: 'Mexican/Southwest' },
{ id: 'asian', name: 'Asian Fusion' },
{ id: 'mediterranean', name: 'Mediterranean' },
{ id: 'bbq', name: 'BBQ' },
{ id: 'mixed', name: 'Mixed/Custom Menu' }
],
defaultValue: 'american'
}, '1fr');
row.addDropdown('dietaryNeeds', {
label: 'Special Dietary Needs',
options: [
{ id: 'none', name: 'Standard Menu' },
{ id: 'some', name: 'Some Dietary Options (+5%)' },
{ id: 'extensive', name: 'Extensive Options (+10%)' },
{ id: 'custom', name: 'Fully Custom Menu (+15%)' }
],
defaultValue: 'none'
}, '1fr');
});
 
// Beverages Section
const beverageSection = form.addSubform('beverages', { title: '๐Ÿฅ‚ Beverages' });
 
beverageSection.addRow(row => {
row.addDropdown('nonAlcoholic', {
label: 'Non-Alcoholic',
options: [
{ id: 'none', name: 'None' },
{ id: 'basic', name: 'Basic (Water, Soda) - $3/person' },
{ id: 'standard', name: 'Standard (+ Coffee, Tea) - $5/person' },
{ id: 'premium', name: 'Premium (+ Juices, Specialty) - $10/person' }
],
defaultValue: 'standard'
}, '1fr');
row.addDropdown('alcohol', {
label: 'Alcoholic Beverages',
options: [
{ id: 'none', name: 'None' },
{ id: 'beer-wine', name: 'Beer & Wine - $15/person' },
{ id: 'limited', name: 'Limited Bar - $25/person' },
{ id: 'full', name: 'Full Open Bar - $40/person' },
{ id: 'premium', name: 'Premium Open Bar - $60/person' }
],
defaultValue: 'none'
}, '1fr');
});
 
// Add-ons Section
const addonsSection = form.addSubform('addons', { title: 'โœจ Additional Services' });
 
addonsSection.addRow(row => {
row.addCheckbox('appetizers', {
label: 'Passed Appetizers (+$8/person)',
defaultValue: false
}, '1fr');
row.addCheckbox('dessert', {
label: 'Dessert Station (+$10/person)',
defaultValue: false
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('lateNight', {
label: 'Late Night Snacks (+$8/person)',
defaultValue: false
}, '1fr');
row.addCheckbox('cake', {
label: 'Custom Cake/Dessert (+$5/person)',
defaultValue: false
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('servers', {
label: 'Wait Staff (+$150/server)',
defaultValue: true
}, '1fr');
row.addCheckbox('bartender', {
label: 'Bartender (+$200/bartender)',
defaultValue: false
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addInteger('serverCount', {
label: 'Number of Servers',
min: 1,
max: 20,
defaultValue: 2,
isVisible: () => addonsSection.checkbox('servers')?.value() === true
}, '1fr');
row.addInteger('bartenderCount', {
label: 'Number of Bartenders',
min: 1,
max: 5,
defaultValue: 1,
isVisible: () => addonsSection.checkbox('bartender')?.value() === true
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('rentals', {
label: 'Equipment Rentals (Tables, Linens, etc.)',
defaultValue: false
}, '1fr');
row.addDecimal('rentalBudget', {
label: 'Rental Budget ($)',
min: 0,
max: 10000,
defaultValue: 500,
decimalPlaces: 0,
isVisible: () => addonsSection.checkbox('rentals')?.value() === true
}, '1fr');
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Results Section
const resultsSection = form.addSubform('results', { title: '๐Ÿ’ฐ Quote Summary', isCollapsible: false });
 
const getMealTimeMultiplier = () => {
const mealTime = eventSection.dropdown('mealTime')?.value() || 'dinner';
const multipliers: Record<string, number> = {
'breakfast': 0.8,
'brunch': 1.0,
'lunch': 0.9,
'dinner': 1.0,
'reception': 0.7
};
return multipliers[mealTime] || 1;
};
 
const getDayMultiplier = () => {
const day = eventSection.dropdown('serviceDay')?.value() || 'saturday';
const multipliers: Record<string, number> = {
'weekday': 1.0,
'friday': 1.1,
'saturday': 1.15,
'sunday': 1.1,
'holiday': 1.25
};
return multipliers[day] || 1;
};
 
const getDietaryMultiplier = () => {
const dietary = menuSection.dropdown('dietaryNeeds')?.value() || 'none';
const multipliers: Record<string, number> = {
'none': 1.0,
'some': 1.05,
'extensive': 1.1,
'custom': 1.15
};
return multipliers[dietary] || 1;
};
 
resultsSection.addRow(row => {
row.addPriceDisplay('foodCost', {
label: 'Food Cost',
computedValue: () => {
const guests = eventSection.integer('guestCount')?.value() || 50;
const style = menuSection.radioButton('mealStyle')?.value() || 'buffet';
const baseRate = mealStyles[style] || 35;
 
let cost = guests * baseRate * getMealTimeMultiplier() * getDietaryMultiplier();
 
if (addonsSection.checkbox('appetizers')?.value()) cost += guests * 8;
if (addonsSection.checkbox('dessert')?.value()) cost += guests * 10;
if (addonsSection.checkbox('lateNight')?.value()) cost += guests * 8;
if (addonsSection.checkbox('cake')?.value()) cost += guests * 5;
 
return Math.round(cost);
},
variant: 'default'
}, '1fr');
row.addPriceDisplay('beverageCost', {
label: 'Beverage Cost',
computedValue: () => {
const guests = eventSection.integer('guestCount')?.value() || 50;
 
const nonAlcPrices: Record<string, number> = {
'none': 0, 'basic': 3, 'standard': 5, 'premium': 10
};
const alcPrices: Record<string, number> = {
'none': 0, 'beer-wine': 15, 'limited': 25, 'full': 40, 'premium': 60
};
 
const nonAlc = beverageSection.dropdown('nonAlcoholic')?.value() || 'standard';
const alc = beverageSection.dropdown('alcohol')?.value() || 'none';
 
return Math.round(guests * ((nonAlcPrices[nonAlc] || 0) + (alcPrices[alc] || 0)));
},
variant: 'default'
}, '1fr');
});
 
resultsSection.addRow(row => {
row.addPriceDisplay('staffCost', {
label: 'Staff & Service',
computedValue: () => {
let total = 0;
if (addonsSection.checkbox('servers')?.value()) {
total += (addonsSection.integer('serverCount')?.value() || 2) * 150;
}
if (addonsSection.checkbox('bartender')?.value()) {
total += (addonsSection.integer('bartenderCount')?.value() || 1) * 200;
}
return total;
},
variant: 'default'
}, '1fr');
row.addPriceDisplay('rentalCost', {
label: 'Rentals',
computedValue: () => {
if (addonsSection.checkbox('rentals')?.value()) {
return addonsSection.decimal('rentalBudget')?.value() || 500;
}
return 0;
},
variant: 'default'
}, '1fr');
});
 
resultsSection.addSpacer({ showLine: true, lineStyle: 'solid', lineColor: '#e2e8f0' });
 
resultsSection.addRow(row => {
row.addPriceDisplay('subtotal', {
label: 'Subtotal',
computedValue: () => {
const guests = eventSection.integer('guestCount')?.value() || 50;
const style = menuSection.radioButton('mealStyle')?.value() || 'buffet';
const baseRate = mealStyles[style] || 35;
 
let food = guests * baseRate * getMealTimeMultiplier() * getDietaryMultiplier();
if (addonsSection.checkbox('appetizers')?.value()) food += guests * 8;
if (addonsSection.checkbox('dessert')?.value()) food += guests * 10;
if (addonsSection.checkbox('lateNight')?.value()) food += guests * 8;
if (addonsSection.checkbox('cake')?.value()) food += guests * 5;
 
const nonAlcPrices: Record<string, number> = {
'none': 0, 'basic': 3, 'standard': 5, 'premium': 10
};
const alcPrices: Record<string, number> = {
'none': 0, 'beer-wine': 15, 'limited': 25, 'full': 40, 'premium': 60
};
const nonAlc = beverageSection.dropdown('nonAlcoholic')?.value() || 'standard';
const alc = beverageSection.dropdown('alcohol')?.value() || 'none';
const beverages = guests * ((nonAlcPrices[nonAlc] || 0) + (alcPrices[alc] || 0));
 
let staff = 0;
if (addonsSection.checkbox('servers')?.value()) {
staff += (addonsSection.integer('serverCount')?.value() || 2) * 150;
}
if (addonsSection.checkbox('bartender')?.value()) {
staff += (addonsSection.integer('bartenderCount')?.value() || 1) * 200;
}
 
let rentals = 0;
if (addonsSection.checkbox('rentals')?.value()) {
rentals = addonsSection.decimal('rentalBudget')?.value() || 500;
}
 
return Math.round(food + beverages + staff + rentals);
},
variant: 'default'
}, '1fr');
row.addPriceDisplay('dayAdjustment', {
label: 'Day-of-Week Adjustment',
computedValue: () => {
const guests = eventSection.integer('guestCount')?.value() || 50;
const style = menuSection.radioButton('mealStyle')?.value() || 'buffet';
const baseRate = mealStyles[style] || 35;
const food = guests * baseRate * getMealTimeMultiplier() * getDietaryMultiplier();
const dayMult = getDayMultiplier();
return Math.round(food * (dayMult - 1));
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
resultsSection.addRow(row => {
row.addPriceDisplay('totalPrice', {
label: 'Total Estimate',
computedValue: () => {
const guests = eventSection.integer('guestCount')?.value() || 50;
const style = menuSection.radioButton('mealStyle')?.value() || 'buffet';
const baseRate = mealStyles[style] || 35;
 
let food = guests * baseRate * getMealTimeMultiplier() * getDietaryMultiplier() * getDayMultiplier();
if (addonsSection.checkbox('appetizers')?.value()) food += guests * 8;
if (addonsSection.checkbox('dessert')?.value()) food += guests * 10;
if (addonsSection.checkbox('lateNight')?.value()) food += guests * 8;
if (addonsSection.checkbox('cake')?.value()) food += guests * 5;
 
const nonAlcPrices: Record<string, number> = {
'none': 0, 'basic': 3, 'standard': 5, 'premium': 10
};
const alcPrices: Record<string, number> = {
'none': 0, 'beer-wine': 15, 'limited': 25, 'full': 40, 'premium': 60
};
const nonAlc = beverageSection.dropdown('nonAlcoholic')?.value() || 'standard';
const alc = beverageSection.dropdown('alcohol')?.value() || 'none';
const beverages = guests * ((nonAlcPrices[nonAlc] || 0) + (alcPrices[alc] || 0));
 
let staff = 0;
if (addonsSection.checkbox('servers')?.value()) {
staff += (addonsSection.integer('serverCount')?.value() || 2) * 150;
}
if (addonsSection.checkbox('bartender')?.value()) {
staff += (addonsSection.integer('bartenderCount')?.value() || 1) * 200;
}
 
let rentals = 0;
if (addonsSection.checkbox('rentals')?.value()) {
rentals = addonsSection.decimal('rentalBudget')?.value() || 500;
}
 
return Math.round(food + beverages + staff + rentals);
},
variant: 'large'
});
});
 
resultsSection.addRow(row => {
row.addPriceDisplay('perPerson', {
label: 'Per Person Cost',
computedValue: () => {
const guests = eventSection.integer('guestCount')?.value() || 50;
const total = resultsSection.priceDisplay('totalPrice')?.value() || 0;
return Math.round(total / guests);
},
variant: 'default'
});
});
 
const finalSection = form.addSubform('final', {
title: '๐Ÿงพ Summary',
isCollapsible: false,
sticky: 'bottom'
});
 
finalSection.addRow(row => {
row.addPriceDisplay('totalPrice', {
label: 'Total Estimate',
computedValue: () => {
const guests = eventSection.integer('guestCount')?.value() || 50;
const style = menuSection.radioButton('mealStyle')?.value() || 'buffet';
const baseRate = mealStyles[style] || 35;
 
let food = guests * baseRate * getMealTimeMultiplier() * getDietaryMultiplier() * getDayMultiplier();
if (addonsSection.checkbox('appetizers')?.value()) food += guests * 8;
if (addonsSection.checkbox('dessert')?.value()) food += guests * 10;
if (addonsSection.checkbox('lateNight')?.value()) food += guests * 8;
if (addonsSection.checkbox('cake')?.value()) food += guests * 5;
 
const nonAlcPrices: Record<string, number> = {
'none': 0, 'basic': 3, 'standard': 5, 'premium': 10
};
const alcPrices: Record<string, number> = {
'none': 0, 'beer-wine': 15, 'limited': 25, 'full': 40, 'premium': 60
};
const nonAlc = beverageSection.dropdown('nonAlcoholic')?.value() || 'standard';
const alc = beverageSection.dropdown('alcohol')?.value() || 'none';
const beverages = guests * ((nonAlcPrices[nonAlc] || 0) + (alcPrices[alc] || 0));
 
let staff = 0;
if (addonsSection.checkbox('servers')?.value()) {
staff += (addonsSection.integer('serverCount')?.value() || 2) * 150;
}
if (addonsSection.checkbox('bartender')?.value()) {
staff += (addonsSection.integer('bartenderCount')?.value() || 1) * 200;
}
 
let rentals = 0;
if (addonsSection.checkbox('rentals')?.value()) {
rentals = addonsSection.decimal('rentalBudget')?.value() || 500;
}
 
return Math.round(food + beverages + staff + rentals);
},
variant: 'large'
});
});
 
finalSection.addRow(row => {
row.addTextPanel('disclaimer', {
computedValue: () => 'Final pricing based on menu and venue details.',
customStyles: { 'font-size': '0.85rem', 'color': '#94a3b8', 'font-style': 'italic' }
});
});
 
form.configureSubmitButton({
label: 'Request Custom Proposal'
});
}
 

Frequently Asked Questions

Can I customize the menu options?

Yes. Replace the generic cuisine styles with your specific menu packages. You can create named packages with detailed descriptions and fixed pricing.

How do I handle minimum guest counts?

Add minimum guest requirements or minimum charges for small events. You can also set different pricing tiers based on guest count ranges.

Can I show sample menus alongside the calculator?

Yes. Add text panels with menu highlights or link to your full menu. Many caterers embed the calculator alongside menu PDFs or galleries.

How do I handle venue kitchen fees?

Add a venue type option that includes kitchen rental or equipment fees. This is common for off-premise catering where you bring everything.

Can I capture detailed event requirements?

The submit button can collect event date, venue, dietary restrictions, and special requests. You receive everything needed to prepare a custom proposal.