@php $cardStyle = ui('product_card_style', 'modern'); $imgRatio = ui('product_img_ratio', '1/1'); $actionStyle = ui('product_action_style', 'hover'); $ratingStyle = ui('product_rating_style', 'stars'); // Default badge to null if not provided $badge = $badge ?? null; $ratioMap = ['1/1' => '100%', '3/4' => '133%', '4/3' => '75%']; $ratioPadding = $ratioMap[$imgRatio] ?? '100%'; $cardClasses = match($cardStyle) { 'minimal' => 'border-0 bg-transparent', 'bordered' => 'border shadow-none', 'shadow' => 'border-0 shadow-lg', default => 'border-0 shadow-sm rounded-4' }; @endphp