@extends('layouts.app') @section('title', 'Shopora - Premium Collections') @section('content') {{-- ── HERO SECTION ───────────────────────────────────────── --}}
{{-- Left Content: dark bg → white text --}}
Premium Collection

Make Space for Something Better

Discover premium furniture and lifestyle pieces designed to elevate your everyday environment. Crafted with precision, styled for the modern aesthetic.

{{-- Right Decorative Card --}}
{{-- Decorative badge --}}
Premium Quality
{{-- Chair Image - Now blends with white card --}}
Premium Chair
{{-- Soft Overlay for depth --}}
{{-- ── BELOW HERO: light bg (#EBF4F0) → dark text ──────────────────────── --}}
{{-- ── FLASH SALE ─────────────────────────────────────────────────────────── --}} @if($onSale->count())
Limited Time

Exclusive Offers

{{-- Countdown: light bg → dark text; digits: dark bg → white --}}
Ends in:
12 : 34 : 56
@foreach($onSale->take(4) as $product) @include('partials.product-card', ['product' => $product]) @endforeach
@endif {{-- ── DISCOVER MORE ──────────────────────────────────────────────────────── --}}

Discover More

Handpicked selections based on the modern aesthetic.

@foreach($featuredProducts as $product) @include('partials.product-card', ['product' => $product]) @endforeach @foreach($newArrivals->take(4) as $product) @include('partials.product-card', ['product' => $product]) @endforeach
@endsection