For Pet Businesses

Stop Answering
"How Much for Grooming?"
Let a Calculator Do It

Free pricing calculator for your pet services website. Pet owners build custom packages instantly. You get qualified leads. Setup in 5 minutes.

No credit card required
Free forever for calculators
Works on Squarespace, WordPress, any site
๐Ÿพ Pet Grooming Quote Calculator
๐Ÿ• Pet Details
 
โœ‚๏ธ Grooming Package
 
โœจ Add-On Services
 
 
 
 
๐Ÿ’ฐ Your Grooming Quote
$ 103.00
๐Ÿพ Includes: Full Grooming package with professional care
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
export function petGroomingForm(form: FormTs) {
form.setTitle(() => '๐Ÿพ Pet Grooming Quote Calculator');
 
form.configureCompletionScreen({
type: 'text',
title: () => '๐ŸŽ‰ Quote Ready!',
message: () => 'Your custom grooming quote has been generated. Download your PDF to save the details.'
});
 
// Pricing data
const sizePrices: Record<string, number> = {
'small': 45,
'medium': 65,
'large': 85,
'xlarge': 110
};
 
const coatMultipliers: Record<string, number> = {
'short': 1.0,
'medium': 1.2,
'long': 1.4,
'double': 1.6,
'curly': 1.5
};
 
const groomingPackages: Record<string, number> = {
'bath': 0,
'full': 25,
'deluxe': 50
};
 
const addonPrices: Record<string, number> = {
'nailTrim': 15,
'nailGrind': 20,
'teethBrushing': 15,
'earCleaning': 12,
'analGlands': 18,
'fleaTreatment': 25,
'deShedding': 30,
'pawTrim': 10,
'faceTrim': 15,
'cologne': 8
};
 
// Pet Details
const petDetails = form.addSubform('petDetails', {
title: () => '๐Ÿ• Pet Details',
mobileBreakpoint: 0
});
 
petDetails.addRow(row => {
row.addDropdown('petType', {
label: 'Pet Type',
defaultValue: 'dog',
isRequired: true,
options: [
{ id: 'dog', name: '๐Ÿ• Dog' },
{ id: 'cat', name: '๐Ÿฑ Cat' }
]
}, '1fr');
 
row.addDropdown('size', {
label: 'Size',
defaultValue: 'medium',
isRequired: true,
options: [
{ id: 'small', name: '๐Ÿฉ Small (under 15 lbs)' },
{ id: 'medium', name: '๐Ÿ• Medium (15-40 lbs)' },
{ id: 'large', name: '๐Ÿฆฎ Large (40-70 lbs)' },
{ id: 'xlarge', name: '๐Ÿ•โ€๐Ÿฆบ X-Large (70+ lbs)' }
]
}, '1fr');
});
 
petDetails.addRow(row => {
row.addDropdown('coatType', {
label: 'Coat Type',
defaultValue: 'medium',
isRequired: true,
options: [
{ id: 'short', name: 'โœจ Short/Smooth' },
{ id: 'medium', name: '๐ŸŒŠ Medium' },
{ id: 'long', name: '๐Ÿ’‡ Long' },
{ id: 'double', name: '๐Ÿงฅ Double Coat' },
{ id: 'curly', name: '๐ŸŒ€ Curly/Poodle-type' }
]
}, '1fr');
 
row.addTextbox('breed', {
label: 'Breed (optional)',
placeholder: 'e.g., Golden Retriever, Shih Tzu'
}, '1fr');
});
 
// Grooming Package
const packageSection = form.addSubform('package', {
title: () => 'โœ‚๏ธ Grooming Package',
mobileBreakpoint: 0
});
 
packageSection.addRow(row => {
row.addRadioButton('groomingType', {
label: 'Select Package',
defaultValue: 'full',
isRequired: true,
orientation: 'vertical',
options: [
{ id: 'bath', name: '๐Ÿ› Bath & Brush - Shampoo, blow dry, brush out' },
{ id: 'full', name: 'โœ‚๏ธ Full Groom (+$25) - Bath + haircut, styling' },
{ id: 'deluxe', name: '๐Ÿ‘‘ Deluxe Spa (+$50) - Full groom + premium treatments' }
]
});
});
 
// Add-ons
const addonsSection = form.addSubform('addons', {
title: () => 'โœจ Add-On Services',
mobileBreakpoint: 500
});
 
addonsSection.addRow(row => {
row.addCheckboxList('nailServices', {
label: 'Nail Services',
orientation: 'vertical',
options: [
{ id: 'nailTrim', name: 'โœ‚๏ธ Nail Trim (+$15)' },
{ id: 'nailGrind', name: '๐Ÿ’… Nail Grinding (+$20)' },
{ id: 'pawTrim', name: '๐Ÿพ Paw Pad Trim (+$10)' }
]
}, '1fr');
 
row.addCheckboxList('hygieneServices', {
label: 'Hygiene Services',
orientation: 'vertical',
options: [
{ id: 'teethBrushing', name: '๐Ÿฆท Teeth Brushing (+$15)' },
{ id: 'earCleaning', name: '๐Ÿ‘‚ Ear Cleaning (+$12)' },
{ id: 'analGlands', name: '๐Ÿ’Š Anal Glands (+$18)' }
]
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckboxList('coatServices', {
label: 'Coat Services',
orientation: 'vertical',
options: [
{ id: 'deShedding', name: '๐Ÿงน De-shedding Treatment (+$30)' },
{ id: 'fleaTreatment', name: '๐Ÿœ Flea Treatment (+$25)' },
{ id: 'faceTrim', name: '๐Ÿ˜Š Face Trim (+$15)' }
]
}, '1fr');
 
row.addCheckboxList('extras', {
label: 'Finishing Touches',
orientation: 'vertical',
options: [
{ id: 'cologne', name: 'โœจ Cologne/Perfume (+$8)' }
]
}, '1fr');
});
 
// Calculate functions
const getBasePrice = () => {
const size = petDetails.dropdown('size')?.value() || 'medium';
return sizePrices[size] ?? 65;
};
 
const getCoatMultiplier = () => {
const coatType = petDetails.dropdown('coatType')?.value() || 'medium';
return coatMultipliers[coatType] ?? 1.2;
};
 
const getPackagePrice = () => {
const groomingType = packageSection.radioButton('groomingType')?.value() || 'full';
return groomingPackages[groomingType] ?? 25;
};
 
const getAddonsTotal = () => {
let total = 0;
const nailServices = addonsSection.checkboxList('nailServices')?.value() || [];
const hygieneServices = addonsSection.checkboxList('hygieneServices')?.value() || [];
const coatServices = addonsSection.checkboxList('coatServices')?.value() || [];
const extras = addonsSection.checkboxList('extras')?.value() || [];
 
const allSelected = [...nailServices, ...hygieneServices, ...coatServices, ...extras];
 
for (const addonId of allSelected) {
total += addonPrices[addonId] ?? 0;
}
 
return total;
};
 
const getSelectedAddons = () => {
const nailServices = addonsSection.checkboxList('nailServices')?.value() || [];
const hygieneServices = addonsSection.checkboxList('hygieneServices')?.value() || [];
const coatServices = addonsSection.checkboxList('coatServices')?.value() || [];
const extras = addonsSection.checkboxList('extras')?.value() || [];
return [...nailServices, ...hygieneServices, ...coatServices, ...extras];
};
 
const getTotalPrice = () => {
const baseWithCoat = Math.round(getBasePrice() * getCoatMultiplier());
return baseWithCoat + getPackagePrice() + getAddonsTotal();
};
 
// Quote Summary
const summary = form.addSubform('summary', {
title: () => '๐Ÿ’ฐ Your Grooming Quote',
isCollapsible: false,
});
 
summary.addRow(row => {
row.addPriceDisplay('totalPrice', {
label: 'Total Price',
computedValue: () => getTotalPrice(),
alignment: 'center',
variant: 'large'
});
});
 
summary.addRow(row => {
row.addTextPanel('includes', {
computedValue: () => {
const groomingType = packageSection.radioButton('groomingType')?.value() || 'full';
const packageNames: Record<string, string> = {
'bath': 'Bath & Brush package',
'full': 'Full Grooming package',
'deluxe': 'Deluxe Spa package'
};
return `๐Ÿพ Includes: ${packageNames[groomingType] ?? 'Full Grooming package'} with professional care`;
},
customStyles: {
fontSize: '0.9rem',
color: '#6b7280',
textAlign: 'center'
}
});
});
 
form.configureSubmitButton({
label: () => 'Book This Grooming'
});
 
// Configure PDF
form.configurePdf('quoteDocument', (pdf) => {
pdf.configure({
filename: 'pet-grooming-quote.pdf',
pageSize: 'A4',
allowUserDownload: true,
downloadButtonLabel: 'Download Your Quote',
header: {
title: 'Pet Grooming Quote',
subtitle: 'Custom Service Package'
},
footer: {
text: 'Thank you for choosing us for your pet grooming needs!',
showPageNumbers: true
}
});
 
pdf.addSection('Pet Details', (section) => {
section.addRow((row) => {
const petType = petDetails.dropdown('petType')?.value() || 'dog';
row.addField('Pet Type', petType === 'dog' ? 'Dog' : 'Cat');
 
const size = petDetails.dropdown('size')?.value() || 'medium';
const sizeLabels: Record<string, string> = {
'small': 'Small (under 15 lbs)',
'medium': 'Medium (15-40 lbs)',
'large': 'Large (40-70 lbs)',
'xlarge': 'X-Large (70+ lbs)'
};
row.addField('Size', sizeLabels[size] ?? size);
});
section.addRow((row) => {
const coatType = petDetails.dropdown('coatType')?.value() || 'medium';
const coatLabels: Record<string, string> = {
'short': 'Short/Smooth',
'medium': 'Medium',
'long': 'Long',
'double': 'Double Coat',
'curly': 'Curly/Poodle-type'
};
row.addField('Coat Type', coatLabels[coatType] ?? coatType);
 
const breed = petDetails.textbox('breed')?.value() || '';
if (breed) {
row.addField('Breed', breed);
}
});
});
 
pdf.addSection('Grooming Package', (section) => {
section.addRow((row) => {
const groomingType = packageSection.radioButton('groomingType')?.value() || 'full';
const packageLabels: Record<string, string> = {
'bath': 'Bath & Brush',
'full': 'Full Groom',
'deluxe': 'Deluxe Spa'
};
row.addField('Package', packageLabels[groomingType] ?? groomingType);
row.addField('Package Price', `$${getPackagePrice()}`);
});
});
 
const selectedAddons = getSelectedAddons();
if (selectedAddons.length > 0) {
pdf.addSection('Add-On Services', (section) => {
const addonLabels: Record<string, string> = {
'nailTrim': 'Nail Trim',
'nailGrind': 'Nail Grinding',
'teethBrushing': 'Teeth Brushing',
'earCleaning': 'Ear Cleaning',
'analGlands': 'Anal Glands',
'fleaTreatment': 'Flea Treatment',
'deShedding': 'De-shedding Treatment',
'pawTrim': 'Paw Pad Trim',
'faceTrim': 'Face Trim',
'cologne': 'Cologne/Perfume'
};
 
const tableRows = selectedAddons.map(addonId => [
addonLabels[addonId] ?? addonId,
`$${addonPrices[addonId] ?? 0}`
]);
 
section.addTable(['Service', 'Price'], tableRows);
});
}
 
pdf.addSection('Quote Summary', (section) => {
section.addRow((row) => {
const baseWithCoat = Math.round(getBasePrice() * getCoatMultiplier());
row.addField('Base Grooming (size + coat)', `$${baseWithCoat}`);
});
 
const packagePrice = getPackagePrice();
if (packagePrice > 0) {
section.addRow((row) => {
row.addField('Package Upgrade', `$${packagePrice}`);
});
}
 
if (selectedAddons.length > 0) {
section.addRow((row) => {
row.addField('Add-ons', `$${getAddonsTotal()}`);
});
}
 
section.addDivider();
section.addSpacer(10);
section.addRow((row) => {
row.addField('TOTAL', `$${getTotalPrice()}`);
});
});
 
pdf.addSection('What\'s Included', (section) => {
const groomingType = packageSection.radioButton('groomingType')?.value() || 'full';
const includes: Record<string, string[]> = {
'bath': ['Premium shampoo & conditioner', 'Blow dry & brush out', 'Ear check', 'Bandana or bow'],
'full': ['Everything in Bath & Brush', 'Breed-appropriate haircut', 'Styling & finishing', 'Nail trim included'],
'deluxe': ['Everything in Full Groom', 'Blueberry facial', 'Paw moisturizing treatment', 'Premium cologne', 'Extended brush & massage']
};
 
const items = includes[groomingType] ?? includes['full'] ?? [];
items.forEach(item => {
section.addText(`โ€ข ${item}`);
});
});
 
pdf.addSection('Important Information', (section) => {
section.addText('โ€ข This quote is valid for 14 days from the date of generation.');
section.addText('โ€ข Please arrive 5 minutes before your appointment time.');
section.addText('โ€ข Matted coats may require additional charges.');
section.addText('โ€ข Cancellations require 24-hour notice.');
section.addSpacer(10);
section.addText('Questions? Contact us at hello@petgrooming.com');
});
});
}
 

Why Pet Businesses Love It

Stop losing bookings to phone tag. Let pet owners see prices and book while they're excited about pampering their fur babies.

Save Hours Daily

No more "how much for a Goldendoodle?" texts. Pet owners see prices upfront 24/7.

More Bookings

Pet parents who build their own package are ready to book. Less back-and-forth, more grooming.

Look Professional

Interactive pricing builds trust. Stand out from competitors with PDF price lists.

No Coding Required

Describe your services. Our AI builds your calculator in minutes.

Add a Pricing Calculator in 3 Steps

1

Build Your Calculator

Use our AI assistant or pick a template. Set your grooming rates, packages, and add-ons.

2

Customize Your Look

Match your brand aesthetic. Mobile-friendly by default. Looks beautiful everywhere.

3

Embed Anywhere

Copy 2 lines of code. Works on Squarespace, WordPress, Wix, or any custom site.

Add to your website
<script src="https://formts.com/widget.js"></script>
<formts-widget link-id="your-calculator"></formts-widget>

Everything You Need to Automate Pricing

Real-Time Calculations

Prices update instantly as pet owners select breed, size, and services. No page reloads.

Email Notifications

Get notified the moment someone requests a quote. Never miss a potential booking.

PDF Quotes

Auto-generate beautiful quote PDFs with your branding. Pet parents can save and share.

Conditional Logic

Show cat grooming options only for cats. Smart forms that adapt to each pet type.

Works Everywhere

Embed on any website with 2 lines of code. Squarespace, WordPress, Wix, custom sites.

Mobile Optimized

Looks stunning on phones and tablets. Most pet parents browse on mobile.

Frequently Asked Questions

Do I need to know how to code?

No. Our AI assistant builds the calculator from your description. Just tell it about your services and pricing. You can also start from a template and customize it - no coding required.

Will it work on my Squarespace/WordPress/Wix site?

Yes. FormTs works on any website that allows custom HTML. You just paste 2 lines of code where you want the calculator to appear. Works on Squarespace, WordPress, Wix, and any custom site.

Is the calculator really free?

Yes. Calculators that don't collect submissions are completely free - no limits, no credit card. If you want to collect client details, the Free plan includes 100 submissions/month. Need more? Pro gives you 1,000/month.

Can I set different prices for different dog sizes?

Absolutely. You control everything - breed sizes, coat types, service packages, add-ons like nail trimming or teeth cleaning. The calculator uses YOUR pricing exactly as you define it.

How do I get notified when someone requests a quote?

All submissions appear in your dashboard instantly. Pro plan includes email notifications and webhooks to connect with Zapier, Time To Pet, or your booking software.

What if I want to change my pricing later?

Edit anytime from your dashboard. Changes go live instantly - no need to touch your website code again. Update prices seasonally, add new services, or change the design whenever you want.

Ready to Stop Playing Phone Tag with Pet Parents?

Join pet businesses who automated their pricing and started booking more clients. Start with a free template or let AI build your custom calculator.

No credit card required. Free plan available. Setup in under 10 minutes.