import { Rocket, Lock, ShieldCheck } from 'lucide-react' import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card' import { Separator } from '@/components/ui/separator' import { Button } from '@/components/ui/button' interface CheckoutSummaryProps { serviceName: string tier: string price: number currency: string } export function CheckoutSummary({ serviceName, tier, price, currency }: CheckoutSummaryProps) { const vat = Math.round(price * 0.2) const total = price + vat return ( Order Summary {/* Selected Service */}

{serviceName}

{tier} Tier

{price} {currency}

{/* Price Breakdown */}
Subtotal {price} {currency}
VAT (20%) {vat} {currency}
Total {total} {currency}
{/* Complete Purchase Button */} {/* Trust Badges */}
Secure Payment
SSL Encrypted
) }