Dog Grooming Cost Calculator

Help your dog grooming business book more appointments with an interactive quote calculator. This template lets pet owners see pricing based on their dog's size, coat type, and condition. They can choose service packages from basic baths to full spa treatments and add extras like de-shedding or teeth brushing. Transparent pricing builds trust and reduces phone inquiries. Capture dog details and owner contact info to fill your grooming schedule with qualified appointments.

Pets & AnimalsPopular

Try the Calculator

Dog Grooming Quote
๐Ÿ“ Service Location
 
๐Ÿ• Your Dog
โœ‚๏ธ Grooming Package
 
โœจ Additional Services

๐Ÿ’ฐ Quote Summary
$ 55.00
+
$ 0.00
+
$ 0.00

$ 55.00
Estimated time: 1 hour 30 minutes
๐Ÿงพ Summary
$ 55.00
Final price confirmed after assessment.
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
export function dogGroomingCalculator(form: FormTs) {
const sizeRates: Record<string, number> = {
'small': 40, // Under 15 lbs
'medium': 55, // 15-40 lbs
'large': 70, // 40-70 lbs
'xlarge': 90, // 70+ lbs
'giant': 110 // 100+ lbs
};
 
const coatMultipliers: Record<string, number> = {
'smooth': 1.0,
'short': 1.0,
'medium': 1.2,
'long': 1.4,
'double': 1.5,
'curly': 1.6,
'wire': 1.3
};
 
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'Dog Grooming Quote',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Service Location Section
const locationSection = form.addSubform('serviceLocation', { title: '๐Ÿ“ Service Location' });
 
locationSection.addRow(row => {
row.addRadioButton('serviceType', {
label: 'Service Type',
options: [
{ id: 'salon', name: 'Salon Visit (Drop off at our location)' },
{ id: 'mobile', name: 'Mobile Grooming (We come to you)' }
],
defaultValue: 'salon',
orientation: 'vertical'
});
});
 
locationSection.addRow(row => {
row.addAddress('homeAddress', {
label: 'Your Address',
placeholder: 'Enter your address...',
showMap: true,
showDistance: true,
referenceAddress: {
formattedAddress: 'Service Center, Denver, CO',
coordinates: { lat: 39.7392, lng: -104.9903 }
},
restrictToCountries: ['US', 'CA'],
distanceUnit: 'miles',
isRequired: true,
isVisible: () => locationSection.radioButton('serviceType')?.value() === 'mobile'
});
});
 
locationSection.addRow(row => {
row.addTextPanel('mobileServiceInfo', {
computedValue: () => {
const addressField = locationSection.address('homeAddress');
const miles = addressField?.distance();
if (miles == null) return '๐Ÿ“ Enter address for mobile grooming fee';
if (miles <= 10) return '๐Ÿ“ Within service area - $25 mobile fee';
if (miles <= 20) return '๐Ÿ“ Extended area - $40 mobile fee';
if (miles <= 30) return '๐Ÿ“ Remote area - $55 mobile fee';
return '๐Ÿ“ Outside service area - Please contact us';
},
customStyles: { 'font-size': '0.9rem', 'color': '#db2777', 'background': '#fdf2f8', 'padding': '10px', 'border-radius': '6px' },
isVisible: () => locationSection.radioButton('serviceType')?.value() === 'mobile'
});
});
 
// Dog Details Section
const dogSection = form.addSubform('dogDetails', { title: '๐Ÿ• Your Dog' });
 
dogSection.addRow(row => {
row.addDropdown('dogSize', {
label: 'Dog Size',
options: [
{ id: 'small', name: 'Small (Under 15 lbs) - $40 base' },
{ id: 'medium', name: 'Medium (15-40 lbs) - $55 base' },
{ id: 'large', name: 'Large (40-70 lbs) - $70 base' },
{ id: 'xlarge', name: 'X-Large (70-100 lbs) - $90 base' },
{ id: 'giant', name: 'Giant (100+ lbs) - $110 base' }
],
defaultValue: 'medium',
isRequired: true
}, '1fr');
row.addDropdown('coatType', {
label: 'Coat Type',
options: [
{ id: 'smooth', name: 'Smooth (Beagle, Boxer)' },
{ id: 'short', name: 'Short (Lab, Pit Bull)' },
{ id: 'medium', name: 'Medium (Golden, Border Collie)' },
{ id: 'long', name: 'Long (Shih Tzu, Afghan)' },
{ id: 'double', name: 'Double Coat (Husky, Shepherd)' },
{ id: 'curly', name: 'Curly (Poodle, Doodle)' },
{ id: 'wire', name: 'Wire (Terrier, Schnauzer)' }
],
defaultValue: 'short',
isRequired: true
}, '1fr');
});
 
dogSection.addRow(row => {
row.addDropdown('coatCondition', {
label: 'Coat Condition',
options: [
{ id: 'excellent', name: 'Excellent - Recently groomed' },
{ id: 'good', name: 'Good - Regular brushing' },
{ id: 'fair', name: 'Fair - Some tangles' },
{ id: 'matted', name: 'Matted - Needs dematting (+$20-50)' }
],
defaultValue: 'good'
}, '1fr');
row.addDropdown('temperament', {
label: 'Temperament',
options: [
{ id: 'calm', name: 'Calm & Cooperative' },
{ id: 'nervous', name: 'Nervous/Anxious (+$10)' },
{ id: 'difficult', name: 'Difficult/Aggressive (+$20)' }
],
defaultValue: 'calm'
}, '1fr');
});
 
// Service Package Section
const packageSection = form.addSubform('servicePackage', { title: 'โœ‚๏ธ Grooming Package' });
 
packageSection.addRow(row => {
row.addRadioButton('package', {
label: 'Select Service',
options: [
{ id: 'bath', name: 'Bath & Brush - Bath, blow dry, brush out, ear cleaning, nail trim' },
{ id: 'full', name: 'Full Groom - Bath & Brush + haircut/styling' },
{ id: 'deluxe', name: 'Deluxe Spa - Full Groom + teeth brushing, paw treatment, cologne' },
{ id: 'puppy', name: 'Puppy Package - Gentle intro grooming for puppies under 6 months' }
],
defaultValue: 'full',
orientation: 'vertical',
isRequired: true
});
});
 
// Add-ons Section
const addonsSection = form.addSubform('addons', { title: 'โœจ Additional Services' });
 
addonsSection.addRow(row => {
row.addCheckbox('nailGrind', {
label: 'Nail Grinding (+$10)',
defaultValue: false
}, '1fr');
row.addCheckbox('teethBrushing', {
label: 'Teeth Brushing (+$10)',
defaultValue: false
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('deShed', {
label: 'De-shedding Treatment (+$20-40)',
defaultValue: false
}, '1fr');
row.addCheckbox('fleaTick', {
label: 'Flea & Tick Treatment (+$15)',
defaultValue: false
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('pawTreatment', {
label: 'Paw Pad Treatment (+$8)',
defaultValue: false
}, '1fr');
row.addCheckbox('facialScrub', {
label: 'Facial Scrub (+$10)',
defaultValue: false
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('cologne', {
label: 'Finishing Cologne (+$5)',
defaultValue: false
}, '1fr');
row.addCheckbox('bandana', {
label: 'Bandana or Bow (+$3)',
defaultValue: false
}, '1fr');
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Helper to calculate mobile grooming fee
const getMobileGroomingFee = () => {
if (locationSection.radioButton('serviceType')?.value() !== 'mobile') return 0;
const addressField = locationSection.address('homeAddress');
const miles = addressField?.distance();
if (miles == null || miles <= 10) return 25;
if (miles <= 20) return 40;
if (miles <= 30) return 55;
return 70;
};
 
// Results Section
const resultsSection = form.addSubform('results', { title: '๐Ÿ’ฐ Quote Summary', isCollapsible: false });
 
const getPackageMultiplier = () => {
const pkg = packageSection.radioButton('package')?.value() || 'full';
const multipliers: Record<string, number> = {
'bath': 0.7,
'full': 1.0,
'deluxe': 1.4,
'puppy': 0.6
};
return multipliers[pkg] || 1;
};
 
const getConditionExtra = () => {
const condition = dogSection.dropdown('coatCondition')?.value() || 'good';
const extras: Record<string, number> = {
'excellent': 0,
'good': 0,
'fair': 10,
'matted': 35
};
return extras[condition] || 0;
};
 
const getTemperamentExtra = () => {
const temperament = dogSection.dropdown('temperament')?.value() || 'calm';
const extras: Record<string, number> = {
'calm': 0,
'nervous': 10,
'difficult': 20
};
return extras[temperament] || 0;
};
 
resultsSection.addRow(row => {
row.addPriceDisplay('basePrice', {
label: 'Base Service Price',
computedValue: () => {
const size = dogSection.dropdown('dogSize')?.value() || 'medium';
const coat = dogSection.dropdown('coatType')?.value() || 'short';
 
const baseRate = sizeRates[size] || 55;
const coatMult = coatMultipliers[coat] || 1;
const packageMult = getPackageMultiplier();
 
return Math.round(baseRate * coatMult * packageMult);
},
variant: 'default'
}, '1fr');
row.addPriceDisplay('adjustments', {
label: 'Condition & Temperament',
computedValue: () => {
return getConditionExtra() + getTemperamentExtra();
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
resultsSection.addRow(row => {
row.addPriceDisplay('addonsTotal', {
label: 'Add-ons',
computedValue: () => {
let total = 0;
if (addonsSection.checkbox('nailGrind')?.value()) total += 10;
if (addonsSection.checkbox('teethBrushing')?.value()) total += 10;
if (addonsSection.checkbox('deShed')?.value()) {
const size = dogSection.dropdown('dogSize')?.value() || 'medium';
total += size === 'xlarge' || size === 'giant' ? 40 : size === 'large' ? 30 : 20;
}
if (addonsSection.checkbox('fleaTick')?.value()) total += 15;
if (addonsSection.checkbox('pawTreatment')?.value()) total += 8;
if (addonsSection.checkbox('facialScrub')?.value()) total += 10;
if (addonsSection.checkbox('cologne')?.value()) total += 5;
if (addonsSection.checkbox('bandana')?.value()) total += 3;
return total;
},
variant: 'default',
prefix: '+'
});
});
 
resultsSection.addRow(row => {
row.addPriceDisplay('mobileFee', {
label: 'Mobile Grooming Fee',
computedValue: () => getMobileGroomingFee(),
variant: 'default',
prefix: '+',
isVisible: () => locationSection.radioButton('serviceType')?.value() === 'mobile'
});
});
 
resultsSection.addSpacer({ showLine: true, lineStyle: 'solid', lineColor: '#e2e8f0' });
 
resultsSection.addRow(row => {
row.addPriceDisplay('totalPrice', {
label: 'Total Grooming Price',
computedValue: () => {
const size = dogSection.dropdown('dogSize')?.value() || 'medium';
const coat = dogSection.dropdown('coatType')?.value() || 'short';
 
const baseRate = sizeRates[size] || 55;
const coatMult = coatMultipliers[coat] || 1;
const packageMult = getPackageMultiplier();
 
let total = baseRate * coatMult * packageMult;
total += getConditionExtra();
total += getTemperamentExtra();
 
// Add-ons
if (addonsSection.checkbox('nailGrind')?.value()) total += 10;
if (addonsSection.checkbox('teethBrushing')?.value()) total += 10;
if (addonsSection.checkbox('deShed')?.value()) {
total += size === 'xlarge' || size === 'giant' ? 40 : size === 'large' ? 30 : 20;
}
if (addonsSection.checkbox('fleaTick')?.value()) total += 15;
if (addonsSection.checkbox('pawTreatment')?.value()) total += 8;
if (addonsSection.checkbox('facialScrub')?.value()) total += 10;
if (addonsSection.checkbox('cologne')?.value()) total += 5;
if (addonsSection.checkbox('bandana')?.value()) total += 3;
 
// Mobile grooming fee
total += getMobileGroomingFee();
 
return Math.round(total);
},
variant: 'large'
});
});
 
resultsSection.addRow(row => {
row.addTextPanel('timeEstimate', {
computedValue: () => {
const size = dogSection.dropdown('dogSize')?.value() || 'medium';
const pkg = packageSection.radioButton('package')?.value() || 'full';
const condition = dogSection.dropdown('coatCondition')?.value() || 'good';
 
let baseTime = size === 'small' ? 60 : size === 'medium' ? 90 : size === 'large' ? 120 : 150;
if (pkg === 'bath') baseTime *= 0.6;
if (pkg === 'deluxe') baseTime *= 1.3;
if (condition === 'matted') baseTime += 30;
 
const hours = Math.floor(baseTime / 60);
const mins = baseTime % 60;
return `Estimated time: ${hours > 0 ? hours + ' hour' + (hours > 1 ? 's ' : ' ') : ''}${mins > 0 ? mins + ' minutes' : ''}`;
},
customStyles: { 'font-size': '0.9rem', 'color': '#475569' }
});
});
 
const finalSection = form.addSubform('final', {
title: '๐Ÿงพ Summary',
isCollapsible: false,
sticky: 'bottom'
});
 
finalSection.addRow(row => {
row.addPriceDisplay('totalPrice', {
label: 'Total Grooming Price',
computedValue: () => {
const size = dogSection.dropdown('dogSize')?.value() || 'medium';
const coat = dogSection.dropdown('coatType')?.value() || 'short';
 
const baseRate = sizeRates[size] || 55;
const coatMult = coatMultipliers[coat] || 1;
const packageMult = getPackageMultiplier();
 
let total = baseRate * coatMult * packageMult;
total += getConditionExtra();
total += getTemperamentExtra();
 
if (addonsSection.checkbox('nailGrind')?.value()) total += 10;
if (addonsSection.checkbox('teethBrushing')?.value()) total += 10;
if (addonsSection.checkbox('deShed')?.value()) {
total += size === 'xlarge' || size === 'giant' ? 40 : size === 'large' ? 30 : 20;
}
if (addonsSection.checkbox('fleaTick')?.value()) total += 15;
if (addonsSection.checkbox('pawTreatment')?.value()) total += 8;
if (addonsSection.checkbox('facialScrub')?.value()) total += 10;
if (addonsSection.checkbox('cologne')?.value()) total += 5;
if (addonsSection.checkbox('bandana')?.value()) total += 3;
 
// Mobile grooming fee
total += getMobileGroomingFee();
 
return Math.round(total);
},
variant: 'large'
});
});
 
finalSection.addRow(row => {
row.addTextPanel('disclaimer', {
computedValue: () => 'Final price confirmed after assessment.',
customStyles: { 'font-size': '0.85rem', 'color': '#94a3b8', 'font-style': 'italic' }
});
});
 
form.configureSubmitButton({
label: 'Book Appointment'
});
}
 

Frequently Asked Questions

Can I add breed-specific pricing?

Yes. You can add a breed dropdown and set specific pricing for breeds that require extra work (like Poodles, Doodles, or double-coated breeds).

How do I handle severely matted dogs?

The coat condition option includes a matting surcharge. You can also add a note that severely matted dogs may require additional assessment.

Can I offer package subscriptions?

Yes. Add recurring grooming packages (every 4, 6, or 8 weeks) with subscription discounts. This encourages regular bookings and improves client retention.

Does this work for mobile grooming?

Absolutely. Add a mobile service fee based on location or distance. Mobile groomers can use this to provide instant quotes while on the road.

Can I integrate with my booking calendar?

The submit button can connect to booking systems via webhooks. Capture pet info and preferred times to streamline your appointment scheduling.