1// Rental length picker — pure UI. The options, the selection handler and the priced total all2// come from useRentalDuration; no data wiring lives here.3//4// Renders the step an ordinary service doesn't have: the customer has already picked a START5// (SlotPicker), and now picks HOW LONG. The running total sits beside the choices because a6// rental's cost depends on the length — showing only a rate per hour leaves the customer7// discovering the real number at checkout.8//9// Show this only when `rental.isRental` — an appointment or class has no length to choose.10// Styled with base44 design tokens (shadcn Tailwind classes).11const optionCls = "py-2.5 px-3 cursor-pointer text-sm font-body border rounded-sm transition-colors";12const idle