@extends('layouts.app') @section('title', config('site.brand.name').' | '.__('site.hero_title')) @push('head') @endpush @section('content') {{-- ============================== INTRO SPLASH ============================== Shown once per browser session, the first time a visitor lands on the homepage — not on every refresh (sessionStorage remembers it for the rest of this tab's session; closing the tab/browser resets it). --}}
{{ config('site.brand.name') }}
{{-- ============================== HERO ============================== --}}
{{ __('site.hero_eyebrow') }}

{{ __('site.hero_title') }}

{{ __('site.hero_subtitle') }}

{{-- ============================== CATEGORIES ============================== --}}
{{ __('site.nav_products') }}

{{ __('site.home_categories_title') }}

{{ __('site.home_categories_subtitle') }}

@foreach ($categories as $category) @endforeach
{{ __('site.btn_view_all_categories') }}
{{-- ============================== FEATURED PRODUCTS ============================== --}} @if ($featuredProducts->isNotEmpty())
{{ config('site.brand.product_line') }}

{{ __('site.home_featured_title') }}

{{ __('site.home_featured_subtitle') }}

@foreach ($featuredProducts as $product) @endforeach
@endif {{-- ============================== WHY CHOOSE US ============================== --}}
{{ config('site.brand.name') }}

{{ __('site.home_why_title') }}

{{ __('site.home_why_subtitle') }}

@foreach ([1, 2, 3, 4, 5] as $i)
{{ $i }}

{{ __('site.why_'.$i.'_title') }}

{{ __('site.why_'.$i.'_desc') }}

@endforeach
{{-- ============================== TESTIMONIALS ============================== --}} @if ($testimonials->isNotEmpty())
{{ __('site.home_testimonials_title') }}

{{ __('site.home_testimonials_subtitle') }}

{{-- Continuous right-to-left carousel: the track holds the testimonial list twice back-to-back and scrolls exactly 50% of its own width, so the loop point is invisible. Hovering (or focusing) pauses it. --}} @php($testimonialLoopSeconds = max(24, $testimonials->count() * 7))
@for ($rep = 0; $rep < 2; $rep++) @foreach ($testimonials as $testimonial) @endforeach @endfor
@endif {{-- ============================== HEALTH LIBRARY PREVIEW ============================== --}} @if ($articles->isNotEmpty())
{{ __('site.nav_health_library') }}

{{ __('site.home_health_library_title') }}

{{ __('site.home_health_library_subtitle') }}

@foreach ($articles as $article) @endforeach
@endif {{-- ============================== CTA ============================== --}}

{{ __('site.home_cta_title') }}

{{ __('site.home_cta_subtitle') }}

{{ __('site.nav_contact') }} @if (site_settings()->whatsappUrl()) {{ __('site.btn_whatsapp_us') }} @endif
@endsection