@extends('layouts.app') @section('title', ($activeCategory->name ?? 'Shop All') . ' — Natural Skincare') @section('content') {{-- Page header --}}

{{ config('shop.tagline') }}

{{ $activeCategory->name ?? 'Shop All Skincare' }}

{{ $activeCategory->description ?? 'Small-batch skincare and haircare, made with farm-fresh ingredients and zero nasties.' }}

{{-- Filters sidebar --}} {{-- Product grid --}}

Showing {{ $products->count() }} products

@if($search) @endif
@if($products->isEmpty())

No products found matching your search

Try clearing filters or searching for something else.

View All Products
@else
@foreach ($products as $product) @endforeach
@endif
@endsection