Flower Arrangement Calculator

Create beautiful floral quotes with this comprehensive calculator. Whether you're a florist pricing arrangements or an event planner budgeting for flowers, factor in arrangement style (bouquets, centerpieces, installations), flower types (standard to luxury), seasonal availability, and delivery needs. Perfect for weddings, corporate events, and special occasions.

Events & Entertainment

Try the Calculator

Flower Arrangement Calculator
🎉 Event Details
💐 Arrangement Types
 
 
 
 
 
 
 
 
🌸 Flower Style & Quality
 
✨ Additional Services

📊 Price Breakdown
$ 1,182.00
$ 3,300.00
$ 0.00
$ 225.00
💰 Your Quote
$ 4,707.00
🌷 Summary
Wedding florals with premium quality flowers
Prices are estimates. Final quote may vary based on flower availability and specific design requirements.
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
export function flowerArrangementCalculator(form: FormTs) {
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'Flower Arrangement Calculator',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Event Type Section
const eventSection = form.addSubform('event', { title: '🎉 Event Details' });
 
eventSection.addRow(row => {
row.addDropdown('eventType', {
label: 'Event Type',
options: [
{ id: 'wedding', name: 'Wedding' },
{ id: 'corporate', name: 'Corporate Event' },
{ id: 'birthday', name: 'Birthday Party' },
{ id: 'memorial', name: 'Memorial / Funeral' },
{ id: 'holiday', name: 'Holiday Event' },
{ id: 'personal', name: 'Personal Gift' },
{ id: 'other', name: 'Other Event' }
],
defaultValue: 'wedding',
isRequired: true
}, '1fr');
row.addDropdown('season', {
label: 'Event Season',
options: [
{ id: 'spring', name: 'Spring (Mar-May)' },
{ id: 'summer', name: 'Summer (Jun-Aug)' },
{ id: 'fall', name: 'Fall (Sep-Nov)' },
{ id: 'winter', name: 'Winter (Dec-Feb)' }
],
defaultValue: 'spring',
tooltip: 'Season affects flower availability and pricing'
}, '1fr');
});
 
// Arrangement Types Section
const arrangementsSection = form.addSubform('arrangements', { title: '💐 Arrangement Types' });
 
arrangementsSection.addRow(row => {
row.addInteger('bridesBouquet', {
label: "Bride's Bouquet",
min: 0,
max: 5,
defaultValue: 1,
isVisible: () => eventSection.dropdown('eventType')?.value() === 'wedding'
}, '1fr');
row.addInteger('bridesmaidBouquets', {
label: 'Bridesmaid Bouquets',
min: 0,
max: 20,
defaultValue: 4,
isVisible: () => eventSection.dropdown('eventType')?.value() === 'wedding'
}, '1fr');
});
 
arrangementsSection.addRow(row => {
row.addInteger('boutonnieres', {
label: 'Boutonnieres',
min: 0,
max: 50,
defaultValue: 6,
isVisible: () => eventSection.dropdown('eventType')?.value() === 'wedding'
}, '1fr');
row.addInteger('corsages', {
label: 'Corsages',
min: 0,
max: 50,
defaultValue: 4,
isVisible: () => eventSection.dropdown('eventType')?.value() === 'wedding'
}, '1fr');
});
 
arrangementsSection.addRow(row => {
row.addInteger('centerpieces', {
label: 'Centerpieces',
min: 0,
max: 100,
defaultValue: 15,
tooltip: 'Table centerpieces'
}, '1fr');
row.addInteger('largearrangements', {
label: 'Large Arrangements',
min: 0,
max: 50,
defaultValue: 2,
tooltip: 'Ceremony/entrance arrangements'
}, '1fr');
});
 
arrangementsSection.addRow(row => {
row.addInteger('smallArrangements', {
label: 'Small Arrangements',
min: 0,
max: 100,
defaultValue: 5,
tooltip: 'Accent pieces, cocktail tables'
}, '1fr');
row.addInteger('loosePetals', {
label: 'Petal Packages',
min: 0,
max: 20,
defaultValue: 0,
tooltip: 'Loose petals for aisles, tables'
}, '1fr');
});
 
// Flower Style Section
const styleSection = form.addSubform('style', { title: '🌸 Flower Style & Quality' });
 
styleSection.addRow(row => {
row.addRadioButton('quality', {
label: 'Flower Quality',
options: [
{ id: 'standard', name: 'Standard - Fresh quality flowers' },
{ id: 'premium', name: 'Premium - Higher-end varieties' },
{ id: 'luxury', name: 'Luxury - Rare & exotic blooms' }
],
defaultValue: 'premium',
isRequired: true
});
});
 
styleSection.addRow(row => {
row.addDropdown('style', {
label: 'Design Style',
options: [
{ id: 'classic', name: 'Classic / Traditional' },
{ id: 'romantic', name: 'Romantic / Garden' },
{ id: 'modern', name: 'Modern / Minimalist' },
{ id: 'bohemian', name: 'Bohemian / Wild' },
{ id: 'tropical', name: 'Tropical' },
{ id: 'rustic', name: 'Rustic / Country' }
],
defaultValue: 'romantic'
}, '1fr');
row.addDropdown('size', {
label: 'Arrangement Fullness',
options: [
{ id: 'petite', name: 'Petite / Minimal' },
{ id: 'standard', name: 'Standard' },
{ id: 'lush', name: 'Lush / Full' },
{ id: 'overflowing', name: 'Overflowing / Dramatic' }
],
defaultValue: 'standard',
tooltip: 'Affects amount of flowers used'
}, '1fr');
});
 
// Additional Services Section
const servicesSection = form.addSubform('services', { title: '✨ Additional Services' });
 
servicesSection.addRow(row => {
row.addCheckbox('delivery', {
label: 'Delivery',
defaultValue: true
}, '1fr');
row.addCheckbox('setup', {
label: 'On-site Setup',
defaultValue: true,
tooltip: 'Professional arrangement setup'
}, '1fr');
});
 
servicesSection.addRow(row => {
row.addCheckbox('breakdown', {
label: 'Breakdown / Removal',
defaultValue: false,
tooltip: 'Post-event flower removal'
}, '1fr');
row.addCheckbox('consultation', {
label: 'Design Consultation',
defaultValue: false,
tooltip: 'In-person design meeting'
}, '1fr');
});
 
servicesSection.addRow(row => {
row.addCheckbox('rentals', {
label: 'Vase/Container Rentals',
defaultValue: false,
tooltip: 'Premium containers included'
}, '1fr');
row.addCheckbox('preservation', {
label: 'Bouquet Preservation',
defaultValue: false,
tooltip: 'Dry and preserve bouquet',
isVisible: () => eventSection.dropdown('eventType')?.value() === 'wedding'
}, '1fr');
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Pricing Breakdown
const breakdownSection = form.addSubform('breakdown', { title: '📊 Price Breakdown', isCollapsible: true });
 
breakdownSection.addRow(row => {
row.addPriceDisplay('personalFlowers', {
label: 'Personal Flowers',
computedValue: () => {
const quality = styleSection.radioButton('quality')?.value() || 'premium';
const size = styleSection.dropdown('size')?.value() || 'standard';
 
const qualityMultipliers: Record<string, number> = { 'standard': 1, 'premium': 1.5, 'luxury': 2.5 };
const sizeMultipliers: Record<string, number> = { 'petite': 0.7, 'standard': 1, 'lush': 1.4, 'overflowing': 1.8 };
const mult = (qualityMultipliers[quality] || 1) * (sizeMultipliers[size] || 1);
 
const bridesBouquet = (eventSection.dropdown('eventType')?.value() === 'wedding' ? arrangementsSection.integer('bridesBouquet')?.value() || 0 : 0) * 200 * mult;
const bridesmaidBouquets = (eventSection.dropdown('eventType')?.value() === 'wedding' ? arrangementsSection.integer('bridesmaidBouquets')?.value() || 0 : 0) * 85 * mult;
const boutonnieres = (eventSection.dropdown('eventType')?.value() === 'wedding' ? arrangementsSection.integer('boutonnieres')?.value() || 0 : 0) * 18 * mult;
const corsages = (eventSection.dropdown('eventType')?.value() === 'wedding' ? arrangementsSection.integer('corsages')?.value() || 0 : 0) * 35 * mult;
 
return Math.round((bridesBouquet + bridesmaidBouquets + boutonnieres + corsages) * 100) / 100;
},
variant: 'default',
isVisible: () => eventSection.dropdown('eventType')?.value() === 'wedding'
}, '1fr');
row.addPriceDisplay('arrangements', {
label: 'Arrangements',
computedValue: () => {
const quality = styleSection.radioButton('quality')?.value() || 'premium';
const size = styleSection.dropdown('size')?.value() || 'standard';
 
const qualityMultipliers: Record<string, number> = { 'standard': 1, 'premium': 1.5, 'luxury': 2.5 };
const sizeMultipliers: Record<string, number> = { 'petite': 0.7, 'standard': 1, 'lush': 1.4, 'overflowing': 1.8 };
const mult = (qualityMultipliers[quality] || 1) * (sizeMultipliers[size] || 1);
 
const centerpieces = (arrangementsSection.integer('centerpieces')?.value() || 0) * 95 * mult;
const large = (arrangementsSection.integer('largearrangements')?.value() || 0) * 275 * mult;
const small = (arrangementsSection.integer('smallArrangements')?.value() || 0) * 45 * mult;
const petals = (arrangementsSection.integer('loosePetals')?.value() || 0) * 50;
 
return Math.round((centerpieces + large + small + petals) * 100) / 100;
},
variant: 'default'
}, '1fr');
});
 
breakdownSection.addRow(row => {
row.addPriceDisplay('seasonalAdjustment', {
label: 'Seasonal Adjustment',
computedValue: () => {
const season = eventSection.dropdown('season')?.value() || 'spring';
const quality = styleSection.radioButton('quality')?.value() || 'premium';
const size = styleSection.dropdown('size')?.value() || 'standard';
 
const qualityMultipliers: Record<string, number> = { 'standard': 1, 'premium': 1.5, 'luxury': 2.5 };
const sizeMultipliers: Record<string, number> = { 'petite': 0.7, 'standard': 1, 'lush': 1.4, 'overflowing': 1.8 };
const mult = (qualityMultipliers[quality] || 1) * (sizeMultipliers[size] || 1);
 
// Calculate base total first
const centerpieces = (arrangementsSection.integer('centerpieces')?.value() || 0) * 95 * mult;
const large = (arrangementsSection.integer('largearrangements')?.value() || 0) * 275 * mult;
const small = (arrangementsSection.integer('smallArrangements')?.value() || 0) * 45 * mult;
let baseTotal = centerpieces + large + small;
 
if (eventSection.dropdown('eventType')?.value() === 'wedding') {
baseTotal += (arrangementsSection.integer('bridesBouquet')?.value() || 0) * 200 * mult;
baseTotal += (arrangementsSection.integer('bridesmaidBouquets')?.value() || 0) * 85 * mult;
baseTotal += (arrangementsSection.integer('boutonnieres')?.value() || 0) * 18 * mult;
baseTotal += (arrangementsSection.integer('corsages')?.value() || 0) * 35 * mult;
}
 
const seasonalMultipliers: Record<string, number> = { 'spring': 0, 'summer': 0.05, 'fall': 0.1, 'winter': 0.15 };
return Math.round(baseTotal * (seasonalMultipliers[season] || 0) * 100) / 100;
},
variant: 'default'
}, '1fr');
row.addPriceDisplay('services', {
label: 'Services',
computedValue: () => {
let services = 0;
if (servicesSection.checkbox('delivery')?.value()) services += 75;
if (servicesSection.checkbox('setup')?.value()) services += 150;
if (servicesSection.checkbox('breakdown')?.value()) services += 100;
if (servicesSection.checkbox('consultation')?.value()) services += 75;
if (servicesSection.checkbox('rentals')?.value()) services += 200;
if (servicesSection.checkbox('preservation')?.value()) services += 350;
return services;
},
variant: 'default'
}, '1fr');
});
 
// Quote Section
const quoteSection = form.addSubform('quote', { title: '💰 Your Quote', isCollapsible: false });
 
quoteSection.addRow(row => {
row.addPriceDisplay('totalQuote', {
label: 'Total Floral Package',
computedValue: () => {
const quality = styleSection.radioButton('quality')?.value() || 'premium';
const size = styleSection.dropdown('size')?.value() || 'standard';
const season = eventSection.dropdown('season')?.value() || 'spring';
 
const qualityMultipliers: Record<string, number> = { 'standard': 1, 'premium': 1.5, 'luxury': 2.5 };
const sizeMultipliers: Record<string, number> = { 'petite': 0.7, 'standard': 1, 'lush': 1.4, 'overflowing': 1.8 };
const seasonalMultipliers: Record<string, number> = { 'spring': 1, 'summer': 1.05, 'fall': 1.1, 'winter': 1.15 };
const mult = (qualityMultipliers[quality] || 1) * (sizeMultipliers[size] || 1) * (seasonalMultipliers[season] || 1);
 
let total = 0;
 
// Personal flowers (wedding only)
if (eventSection.dropdown('eventType')?.value() === 'wedding') {
total += (arrangementsSection.integer('bridesBouquet')?.value() || 0) * 200 * mult;
total += (arrangementsSection.integer('bridesmaidBouquets')?.value() || 0) * 85 * mult;
total += (arrangementsSection.integer('boutonnieres')?.value() || 0) * 18 * mult;
total += (arrangementsSection.integer('corsages')?.value() || 0) * 35 * mult;
}
 
// Arrangements
total += (arrangementsSection.integer('centerpieces')?.value() || 0) * 95 * mult;
total += (arrangementsSection.integer('largearrangements')?.value() || 0) * 275 * mult;
total += (arrangementsSection.integer('smallArrangements')?.value() || 0) * 45 * mult;
total += (arrangementsSection.integer('loosePetals')?.value() || 0) * 50;
 
// Services
if (servicesSection.checkbox('delivery')?.value()) total += 75;
if (servicesSection.checkbox('setup')?.value()) total += 150;
if (servicesSection.checkbox('breakdown')?.value()) total += 100;
if (servicesSection.checkbox('consultation')?.value()) total += 75;
if (servicesSection.checkbox('rentals')?.value()) total += 200;
if (servicesSection.checkbox('preservation')?.value()) total += 350;
 
return Math.round(total * 100) / 100;
},
variant: 'large'
});
});
 
// Summary Section
const summarySection = form.addSubform('summary', {
title: '🌷 Summary',
isCollapsible: false,
sticky: 'bottom'
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryText', {
computedValue: () => {
const eventType = eventSection.dropdown('eventType')?.value() || 'wedding';
const quality = styleSection.radioButton('quality')?.value() || 'premium';
const eventLabels: Record<string, string> = {
'wedding': 'Wedding', 'corporate': 'Corporate Event', 'birthday': 'Birthday',
'memorial': 'Memorial', 'holiday': 'Holiday', 'personal': 'Personal', 'other': 'Event'
};
const qualityLabels: Record<string, string> = { 'standard': 'standard', 'premium': 'premium', 'luxury': 'luxury' };
return `${eventLabels[eventType]} florals with ${qualityLabels[quality]} quality flowers`;
},
customStyles: { 'font-size': '0.95rem', 'font-weight': '500', 'text-align': 'center', 'color': '#1e293b' }
});
});
 
summarySection.addRow(row => {
row.addTextPanel('disclaimer', {
computedValue: () => 'Prices are estimates. Final quote may vary based on flower availability and specific design requirements.',
customStyles: { 'font-size': '0.8rem', 'color': '#64748b', 'text-align': 'center' }
});
});
 
form.configureSubmitButton({
label: 'Request Consultation'
});
}
 

Frequently Asked Questions

How much do flower arrangements cost?

Prices vary widely: simple arrangements start at $35-75, wedding bouquets $150-350+, centerpieces $75-200+, and large installations can be $500-5,000+. Flower type, season, and complexity all affect pricing.

What flowers are most expensive?

Peonies, garden roses, orchids, and ranunculus are premium flowers. Out-of-season flowers also cost more. Standard roses, carnations, and mums are more budget-friendly options.

How many centerpieces do I need?

Plan one centerpiece per table. For weddings and events, you'll also need personal flowers (bouquets, boutonnieres), ceremony arrangements, and possibly reception decor.

Should I use seasonal flowers?

Yes! Seasonal flowers are fresher, more affordable, and often more beautiful. A good florist can create stunning arrangements using in-season blooms.