Car Wash Pricing Calculator

Give your car wash or detailing business a professional edge with an interactive pricing calculator. This template helps customers get instant quotes based on vehicle type (sedan to van), wash package (basic to ultimate detail), and extensive add-on options. Exterior add-ons include wax coating, ceramic sealant, and clay bar treatment. Interior options include deep vacuum, leather conditioning, and pet hair removal. Built-in membership tiers encourage customer loyalty with automatic discounts. Condition-based surcharges for heavily soiled vehicles ensure fair pricing.

AutomotivePopular

Try the Calculator

Car Wash Price Calculator
๐Ÿš— Your Vehicle
๐Ÿงฝ Wash Package
 
โœจ Exterior Add-ons
๐Ÿช‘ Interior Add-ons
๐ŸŽซ Membership
 

๐Ÿ’ฐ Your Quote
$ 25.00
+
$ 15.00
+
$ 8.00
+
$ 0.00
Join our membership program to save 10-20% on every wash!
Estimated time: 25-35 minutes
๐Ÿงพ Summary
$ 48.00
Prices may vary based on vehicle condition. Satisfaction guaranteed.
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
export function carWashCalculator(form: FormTs) {
// Vehicle size base prices
const vehiclePrices: Record<string, number> = {
'sedan': 25,
'coupe': 22,
'suv': 35,
'truck': 40,
'van': 45,
'motorcycle': 15
};
 
// Wash package prices (added to base)
const packagePrices: Record<string, number> = {
'basic': 0,
'standard': 15,
'premium': 30,
'ultimate': 50
};
 
// Membership discounts
const membershipDiscounts: Record<string, number> = {
'none': 0,
'basic': 10,
'premium': 20,
'unlimited': 0 // Different pricing model
};
 
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'Car Wash Price Calculator',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Vehicle Section
const vehicleSection = form.addSubform('vehicle', { title: '๐Ÿš— Your Vehicle' });
 
vehicleSection.addRow(row => {
row.addDropdown('vehicleType', {
label: 'Vehicle Type',
options: [
{ id: 'coupe', name: 'Coupe / Sports Car' },
{ id: 'sedan', name: 'Sedan / Hatchback' },
{ id: 'suv', name: 'SUV / Crossover' },
{ id: 'truck', name: 'Pickup Truck' },
{ id: 'van', name: 'Van / Minivan' },
{ id: 'motorcycle', name: 'Motorcycle' }
],
defaultValue: 'sedan',
isRequired: true
}, '1fr');
row.addDropdown('vehicleCondition', {
label: 'Current Condition',
options: [
{ id: 'light', name: 'Light Dirt (regular maintenance)' },
{ id: 'moderate', name: 'Moderate (1-2 weeks since wash)' },
{ id: 'heavy', name: 'Heavy (mud, road salt, bugs)' },
{ id: 'extreme', name: 'Extreme (off-road, months unwashed)' }
],
defaultValue: 'moderate'
}, '1fr');
});
 
// Wash Package Section
const packageSection = form.addSubform('package', { title: '๐Ÿงฝ Wash Package' });
 
packageSection.addRow(row => {
row.addRadioButton('washPackage', {
label: 'Select Your Package',
options: [
{ id: 'basic', name: 'Basic Wash - Exterior rinse & dry' },
{ id: 'standard', name: 'Standard Wash - Exterior + wheels + windows (+$15)' },
{ id: 'premium', name: 'Premium Wash - Standard + interior vacuum + wipe (+$30)' },
{ id: 'ultimate', name: 'Ultimate Detail - Full interior/exterior detail (+$50)' }
],
defaultValue: 'standard',
orientation: 'vertical',
isRequired: true
});
});
 
// Exterior Add-ons Section
const exteriorSection = form.addSubform('exterior', { title: 'โœจ Exterior Add-ons' });
 
exteriorSection.addRow(row => {
row.addCheckbox('waxCoating', {
label: 'Spray Wax Coating (+$10)',
defaultValue: false
}, '1fr');
row.addCheckbox('ceramicCoating', {
label: 'Ceramic Spray Sealant (+$25)',
defaultValue: false
}, '1fr');
});
 
exteriorSection.addRow(row => {
row.addCheckbox('tireShine', {
label: 'Tire Shine & Dressing (+$8)',
defaultValue: true
}, '1fr');
row.addCheckbox('rimCleaning', {
label: 'Deep Rim Cleaning (+$12)',
defaultValue: false
}, '1fr');
});
 
exteriorSection.addRow(row => {
row.addCheckbox('bugRemoval', {
label: 'Bug & Tar Removal (+$15)',
defaultValue: false
}, '1fr');
row.addCheckbox('clayBar', {
label: 'Clay Bar Treatment (+$40)',
defaultValue: false
}, '1fr');
});
 
exteriorSection.addRow(row => {
row.addCheckbox('headlightRestore', {
label: 'Headlight Restoration (+$35)',
defaultValue: false
}, '1fr');
row.addCheckbox('engineBay', {
label: 'Engine Bay Cleaning (+$30)',
defaultValue: false
}, '1fr');
});
 
// Interior Add-ons Section
const interiorSection = form.addSubform('interior', { title: '๐Ÿช‘ Interior Add-ons' });
 
interiorSection.addRow(row => {
row.addCheckbox('deepVacuum', {
label: 'Deep Vacuum (+$15)',
defaultValue: false
}, '1fr');
row.addCheckbox('leatherCondition', {
label: 'Leather Conditioning (+$20)',
defaultValue: false
}, '1fr');
});
 
interiorSection.addRow(row => {
row.addCheckbox('fabricProtection', {
label: 'Fabric Protection (+$25)',
defaultValue: false
}, '1fr');
row.addCheckbox('odorElimination', {
label: 'Odor Elimination (+$20)',
defaultValue: false
}, '1fr');
});
 
interiorSection.addRow(row => {
row.addCheckbox('carpetShampoo', {
label: 'Carpet & Mat Shampoo (+$30)',
defaultValue: false
}, '1fr');
row.addCheckbox('petHairRemoval', {
label: 'Pet Hair Removal (+$25)',
defaultValue: false
}, '1fr');
});
 
// Membership Section
const memberSection = form.addSubform('membership', { title: '๐ŸŽซ Membership' });
 
memberSection.addRow(row => {
row.addRadioButton('membershipType', {
label: 'Membership Status',
options: [
{ id: 'none', name: 'No Membership (pay per wash)' },
{ id: 'basic', name: 'Basic Member (-10% all services)' },
{ id: 'premium', name: 'Premium Member (-20% all services)' },
{ id: 'unlimited', name: 'Unlimited Plan (see monthly pricing)' }
],
defaultValue: 'none',
orientation: 'vertical'
});
});
 
memberSection.addRow(row => {
row.addTextPanel('unlimitedInfo', {
computedValue: () => {
const vehicleType = vehicleSection.dropdown('vehicleType')?.value() || 'sedan';
const basePrice = vehiclePrices[vehicleType] || 25;
const monthlyPrice = Math.round(basePrice * 3.5);
return `Unlimited Plan: $${monthlyPrice}/month for unlimited Basic washes. Upgrades available at member prices.`;
},
customStyles: { 'font-size': '0.9rem', 'color': '#3b82f6', 'background': '#eff6ff', 'padding': '10px', 'border-radius': '6px' },
isVisible: () => memberSection.radioButton('membershipType')?.value() === 'unlimited'
});
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Price Summary Section
const summarySection = form.addSubform('summary', { title: '๐Ÿ’ฐ Your Quote', isCollapsible: false });
 
summarySection.addRow(row => {
row.addPriceDisplay('basePrice', {
label: 'Base Vehicle Price',
computedValue: () => {
const vehicleType = vehicleSection.dropdown('vehicleType')?.value() || 'sedan';
return vehiclePrices[vehicleType] || 25;
},
variant: 'default'
}, '1fr');
row.addPriceDisplay('packagePrice', {
label: 'Package Upgrade',
computedValue: () => {
const washPackage = packageSection.radioButton('washPackage')?.value() || 'standard';
return packagePrices[washPackage] || 0;
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('exteriorAddons', {
label: 'Exterior Add-ons',
computedValue: () => {
let total = 0;
if (exteriorSection.checkbox('waxCoating')?.value()) total += 10;
if (exteriorSection.checkbox('ceramicCoating')?.value()) total += 25;
if (exteriorSection.checkbox('tireShine')?.value()) total += 8;
if (exteriorSection.checkbox('rimCleaning')?.value()) total += 12;
if (exteriorSection.checkbox('bugRemoval')?.value()) total += 15;
if (exteriorSection.checkbox('clayBar')?.value()) total += 40;
if (exteriorSection.checkbox('headlightRestore')?.value()) total += 35;
if (exteriorSection.checkbox('engineBay')?.value()) total += 30;
return total;
},
variant: 'default',
prefix: '+'
}, '1fr');
row.addPriceDisplay('interiorAddons', {
label: 'Interior Add-ons',
computedValue: () => {
let total = 0;
if (interiorSection.checkbox('deepVacuum')?.value()) total += 15;
if (interiorSection.checkbox('leatherCondition')?.value()) total += 20;
if (interiorSection.checkbox('fabricProtection')?.value()) total += 25;
if (interiorSection.checkbox('odorElimination')?.value()) total += 20;
if (interiorSection.checkbox('carpetShampoo')?.value()) total += 30;
if (interiorSection.checkbox('petHairRemoval')?.value()) total += 25;
return total;
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('conditionSurcharge', {
label: 'Condition Surcharge',
computedValue: () => {
const condition = vehicleSection.dropdown('vehicleCondition')?.value() || 'moderate';
const vehicleType = vehicleSection.dropdown('vehicleType')?.value() || 'sedan';
const basePrice = vehiclePrices[vehicleType] || 25;
 
if (condition === 'heavy') return Math.round(basePrice * 0.25);
if (condition === 'extreme') return Math.round(basePrice * 0.5);
return 0;
},
variant: 'default',
prefix: '+',
isVisible: () => {
const condition = vehicleSection.dropdown('vehicleCondition')?.value();
return condition === 'heavy' || condition === 'extreme';
}
}, '1fr');
row.addPriceDisplay('memberDiscount', {
label: 'Member Discount',
computedValue: () => {
const membership = memberSection.radioButton('membershipType')?.value() || 'none';
if (membership === 'none' || membership === 'unlimited') return 0;
 
const discountPct = membershipDiscounts[membership] || 0;
 
// Calculate subtotal
const vehicleType = vehicleSection.dropdown('vehicleType')?.value() || 'sedan';
const condition = vehicleSection.dropdown('vehicleCondition')?.value() || 'moderate';
const washPackage = packageSection.radioButton('washPackage')?.value() || 'standard';
 
let subtotal = vehiclePrices[vehicleType] || 25;
subtotal += packagePrices[washPackage] || 0;
 
// Exterior add-ons
if (exteriorSection.checkbox('waxCoating')?.value()) subtotal += 10;
if (exteriorSection.checkbox('ceramicCoating')?.value()) subtotal += 25;
if (exteriorSection.checkbox('tireShine')?.value()) subtotal += 8;
if (exteriorSection.checkbox('rimCleaning')?.value()) subtotal += 12;
if (exteriorSection.checkbox('bugRemoval')?.value()) subtotal += 15;
if (exteriorSection.checkbox('clayBar')?.value()) subtotal += 40;
if (exteriorSection.checkbox('headlightRestore')?.value()) subtotal += 35;
if (exteriorSection.checkbox('engineBay')?.value()) subtotal += 30;
 
// Interior add-ons
if (interiorSection.checkbox('deepVacuum')?.value()) subtotal += 15;
if (interiorSection.checkbox('leatherCondition')?.value()) subtotal += 20;
if (interiorSection.checkbox('fabricProtection')?.value()) subtotal += 25;
if (interiorSection.checkbox('odorElimination')?.value()) subtotal += 20;
if (interiorSection.checkbox('carpetShampoo')?.value()) subtotal += 30;
if (interiorSection.checkbox('petHairRemoval')?.value()) subtotal += 25;
 
// Condition surcharge
const basePrice = vehiclePrices[vehicleType] || 25;
if (condition === 'heavy') subtotal += basePrice * 0.25;
if (condition === 'extreme') subtotal += basePrice * 0.5;
 
return -Math.round(subtotal * discountPct / 100);
},
variant: 'success',
prefix: '',
isVisible: () => {
const membership = memberSection.radioButton('membershipType')?.value();
return membership === 'basic' || membership === 'premium';
}
}, '1fr');
});
 
summarySection.addRow(row => {
row.addTextPanel('savingsNote', {
computedValue: () => {
const membership = memberSection.radioButton('membershipType')?.value() || 'none';
if (membership === 'unlimited') {
return 'Unlimited plan includes unlimited Basic washes. Premium upgrades at 20% off.';
}
if (membership === 'none') {
return 'Join our membership program to save 10-20% on every wash!';
}
return '';
},
customStyles: { 'font-size': '0.9rem', 'color': '#059669', 'text-align': 'center' },
isVisible: () => memberSection.radioButton('membershipType')?.value() !== 'basic' && memberSection.radioButton('membershipType')?.value() !== 'premium'
});
});
 
summarySection.addRow(row => {
row.addTextPanel('estimatedTime', {
computedValue: () => {
const washPackage = packageSection.radioButton('washPackage')?.value() || 'standard';
let time = '15-20';
if (washPackage === 'standard') time = '25-35';
if (washPackage === 'premium') time = '45-60';
if (washPackage === 'ultimate') time = '2-3 hours';
 
// Add time for heavy add-ons
let addons = 0;
if (exteriorSection.checkbox('clayBar')?.value()) addons += 30;
if (exteriorSection.checkbox('headlightRestore')?.value()) addons += 20;
if (interiorSection.checkbox('carpetShampoo')?.value()) addons += 30;
if (interiorSection.checkbox('petHairRemoval')?.value()) addons += 20;
 
if (addons > 0 && washPackage !== 'ultimate') {
return `Estimated time: ${time} minutes + ${addons} min for add-ons`;
}
return `Estimated time: ${time} minutes`;
},
customStyles: { 'font-size': '0.85rem', 'color': '#64748b', 'text-align': 'center' }
});
});
 
const finalSection = form.addSubform('final', {
title: '๐Ÿงพ Summary',
isCollapsible: false,
sticky: 'bottom'
});
 
finalSection.addRow(row => {
row.addPriceDisplay('totalPrice', {
label: 'Total Price',
computedValue: () => {
const vehicleType = vehicleSection.dropdown('vehicleType')?.value() || 'sedan';
const condition = vehicleSection.dropdown('vehicleCondition')?.value() || 'moderate';
const washPackage = packageSection.radioButton('washPackage')?.value() || 'standard';
const membership = memberSection.radioButton('membershipType')?.value() || 'none';
 
// Base + package
let total = vehiclePrices[vehicleType] || 25;
total += packagePrices[washPackage] || 0;
 
// Exterior add-ons
if (exteriorSection.checkbox('waxCoating')?.value()) total += 10;
if (exteriorSection.checkbox('ceramicCoating')?.value()) total += 25;
if (exteriorSection.checkbox('tireShine')?.value()) total += 8;
if (exteriorSection.checkbox('rimCleaning')?.value()) total += 12;
if (exteriorSection.checkbox('bugRemoval')?.value()) total += 15;
if (exteriorSection.checkbox('clayBar')?.value()) total += 40;
if (exteriorSection.checkbox('headlightRestore')?.value()) total += 35;
if (exteriorSection.checkbox('engineBay')?.value()) total += 30;
 
// Interior add-ons
if (interiorSection.checkbox('deepVacuum')?.value()) total += 15;
if (interiorSection.checkbox('leatherCondition')?.value()) total += 20;
if (interiorSection.checkbox('fabricProtection')?.value()) total += 25;
if (interiorSection.checkbox('odorElimination')?.value()) total += 20;
if (interiorSection.checkbox('carpetShampoo')?.value()) total += 30;
if (interiorSection.checkbox('petHairRemoval')?.value()) total += 25;
 
// Condition surcharge
const basePrice = vehiclePrices[vehicleType] || 25;
if (condition === 'heavy') total += basePrice * 0.25;
if (condition === 'extreme') total += basePrice * 0.5;
 
// Member discount
if (membership === 'basic') total *= 0.9;
if (membership === 'premium') total *= 0.8;
 
return Math.round(total);
},
variant: 'large',
isVisible: () => memberSection.radioButton('membershipType')?.value() !== 'unlimited'
});
});
 
finalSection.addRow(row => {
row.addPriceDisplay('unlimitedPrice', {
label: 'Unlimited Monthly Plan',
computedValue: () => {
const vehicleType = vehicleSection.dropdown('vehicleType')?.value() || 'sedan';
const basePrice = vehiclePrices[vehicleType] || 25;
return Math.round(basePrice * 3.5);
},
variant: 'large',
suffix: '/month',
isVisible: () => memberSection.radioButton('membershipType')?.value() === 'unlimited'
});
});
 
finalSection.addRow(row => {
row.addTextPanel('disclaimer', {
computedValue: () => 'Prices may vary based on vehicle condition. Satisfaction guaranteed.',
customStyles: { 'font-size': '0.85rem', 'color': '#64748b', 'font-style': 'italic' }
});
});
 
form.configureSubmitButton({
label: 'Book Your Wash'
});
}
 

Frequently Asked Questions

Can I customize the pricing for my car wash?

Absolutely. All vehicle type prices, package tiers, add-on services, and membership discounts are fully customizable. Adjust everything to match your actual pricing and service offerings.

Does this support different vehicle sizes?

Yes. The calculator includes pricing tiers for coupes, sedans, SUVs, trucks, vans, and motorcycles. You can add or modify vehicle types and set appropriate pricing for each.

Can I offer memberships through this calculator?

Yes. The template includes multiple membership tiers with automatic discounts, plus an unlimited wash plan option. You can customize discount percentages and monthly pricing.

How do add-on services work?

Add-ons are organized into exterior and interior categories. Customers can select any combination of services, and the calculator instantly updates the total. You can add, remove, or modify services.

Can I charge extra for heavily soiled vehicles?

Yes. The calculator includes a vehicle condition selector that automatically applies surcharges for heavily soiled or extremely dirty vehicles. Percentages are customizable.