'use client' import React from 'react' import { motion } from 'framer-motion' import { Check } from 'lucide-react' interface ProgressStepperProps { step: number basketItemsCount: number orientation?: 'horizontal' | 'vertical' onStepClick?: (step: number) => void } const STEP_LABELS = ['Kunde', 'Modell', 'Software', 'Abschluss'] export function ProgressStepper({ step, basketItemsCount, orientation = 'horizontal', onStepClick }: ProgressStepperProps) { const progressPercent = ((step - 1) / 3) * 100 if (orientation === 'vertical') { return (