"""Service configuration for the barber booking system.""" SERVICE_MAPPING = { "haircut": { "price": 25, "duration": 35, "description": "Classic haircut service including wash and style" }, "beard trim": { "price": 15, "duration": 25, "description": "Professional beard trimming and shaping" }, "full service": { "price": 35, "duration": 60, "description": "Complete package including haircut, beard trim, and styling" } }