@if($s->title || $s->subtitle)
@if($s->subtitle)
{{ $s->subtitle }}
@endif @if($s->title)

{{ $s->title }}

@endif @if($s->cta_url && $s->cta_text) @endif
@endif @if($layout === 'slider')
@foreach($products as $p)
@include('partials.product-card', ['p'=>$p])
@endforeach
@else @php // grid cu rânduri configurabile: 1..4 rânduri => 12 / (rows*4) ~ col-xl $xl = max(3, 12 / max(1,min($rows,4))); // 1 rand => xl-3 (4 pe rând), 2 randuri => xl-3 idem; poți ajusta cum vrei @endphp
@foreach($products as $p)
@include('partials.product-card', ['p'=>$p])
@endforeach
@endif