ABOUT

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Filmsuede - Premium Full-Grain Leather Footwear | Designer Josh Brubaker</title>
    <meta name="description" content="Premium full-grain leather footwear designed by Josh Brubaker (SUPRA, Yeezy, Vans). The F-97 trilogy & Ferris line. $155-$250. Free shipping.">
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Libre+Franklin:wght@300;400;500;600&display=swap" rel="stylesheet">
    
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --noir: #0a0a0a;
            --cream: #f4f1ea;
            --forest-green: #1a4d2e;
            --warm-gray: #8a8275;
            --success-green: #2d5016;
        }

        body {
            font-family: 'Libre Franklin', sans-serif;
            background: var(--cream);
            color: var(--noir);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ANNOUNCEMENT BAR */
        .announcement-bar {
            background: var(--noir);
            color: var(--cream);
            text-align: center;
            padding: 12px 20px;
            font-size: 13px;
            font-weight: 400;
            letter-spacing: 0.5px;
            position: relative;
            z-index: 100;
        }

        .announcement-bar strong {
            font-weight: 600;
            color: var(--cream);
        }

        /* STICKY HEADER WITH LOGO */
        .site-header {
            background: rgba(244, 241, 234, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(10, 10, 10, 0.08);
            position: sticky;
            top: 0;
            z-index: 99;
            transition: all 0.3s ease;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: block;
        }

        .logo img {
            height: 32px;
            width: auto;
            display: block;
        }

        .header-nav {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-link {
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--noir);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--forest-green);
        }

        .header-cta {
            background: var(--forest-green);
            color: var(--cream);
            padding: 12px 28px;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .header-cta:hover {
            background: var(--noir);
        }

        /* HERO SECTION */
        .hero {
            background: var(--cream);
            min-height: 85vh;
            display: flex;
            align-items: center;
            padding: 60px 5%;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(circle at 70% 50%, rgba(26, 77, 46, 0.04) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            animation: fadeInUp 1s ease-out;
        }

        .trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(45, 80, 22, 0.1);
            padding: 8px 16px;
            border-radius: 4px;
            margin-bottom: 24px;
            font-size: 12px;
            font-weight: 500;
            color: var(--success-green);
            letter-spacing: 0.5px;
        }

        .trust-badge-icon {
            width: 16px;
            height: 16px;
        }

        .hero-headline {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(44px, 5.5vw, 76px);
            font-weight: 400;
            line-height: 1.1;
            color: var(--noir);
            margin-bottom: 24px;
        }

        .hero-headline em {
            font-style: italic;
            font-weight: 400;
            color: var(--forest-green);
        }

        .hero-subheadline {
            font-size: 19px;
            line-height: 1.7;
            color: rgba(10, 10, 10, 0.75);
            font-weight: 300;
            max-width: 520px;
            margin-bottom: 32px;
        }

        .hero-credentials {
            font-size: 14px;
            color: var(--warm-gray);
            margin-bottom: 40px;
            font-weight: 400;
        }

        .hero-credentials strong {
            color: var(--noir);
            font-weight: 500;
        }

        .hero-cta-group {
            display: flex;
            gap: 16px;
            margin-bottom: 48px;
        }

        .btn-primary {
            background: var(--noir);
            color: var(--cream);
            padding: 18px 48px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            border: 2px solid var(--noir);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: inline-block;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--forest-green);
            transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .btn-primary:hover::before {
            left: 0;
        }

        .btn-primary:hover {
            border-color: var(--forest-green);
        }

        .btn-secondary {
            background: transparent;
            color: var(--noir);
            padding: 18px 48px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            border: 2px solid var(--noir);
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: var(--noir);
            color: var(--cream);
        }

        .social-proof {
            display: flex;
            gap: 48px;
            padding-top: 32px;
            border-top: 1px solid rgba(10, 10, 10, 0.1);
        }

        .proof-item {
            display: flex;
            flex-direction: column;
        }

        .proof-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 36px;
            font-weight: 400;
            color: var(--forest-green);
            line-height: 1;
            margin-bottom: 8px;
        }

        .proof-label {
            font-size: 12px;
            font-weight: 400;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--warm-gray);
        }

        .hero-visual {
            position: relative;
            animation: fadeIn 1.2s ease-out 0.4s backwards;
        }

        .hero-image-container {
            position: relative;
            aspect-ratio: 3/4;
            background: var(--noir);
            overflow: hidden;
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .hero-image:hover {
            transform: scale(1.05);
        }

        .hero-badge {
            position: absolute;
            bottom: 32px;
            left: 32px;
            background: var(--cream);
            padding: 20px 28px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        }

        .badge-label {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--warm-gray);
            margin-bottom: 4px;
        }

        .badge-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            font-weight: 400;
            color: var(--noir);
        }

        /* TRUST INDICATORS */
        .trust-section {
            background: #fff;
            padding: 60px 5%;
            border-top: 1px solid rgba(10, 10, 10, 0.06);
            border-bottom: 1px solid rgba(10, 10, 10, 0.06);
        }

        .trust-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 48px;
            text-align: center;
        }

        .trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .trust-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 16px;
            opacity: 0.7;
        }

        .trust-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 20px;
            font-weight: 400;
            color: var(--noir);
            margin-bottom: 8px;
        }

        .trust-description {
            font-size: 14px;
            color: var(--warm-gray);
            line-height: 1.6;
        }

        /* PRODUCTS SECTION */
        .products-section {
            padding: 100px 5%;
            background: var(--cream);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
        }

        .section-eyebrow {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--warm-gray);
            margin-bottom: 16px;
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 4vw, 56px);
            font-weight: 300;
            color: var(--noir);
            margin-bottom: 20px;
        }

        .section-description {
            font-size: 17px;
            line-height: 1.7;
            color: rgba(10, 10, 10, 0.7);
            font-weight: 300;
        }

        .products-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 48px;
        }

        .product-card {
            background: #fff;
            border: 1px solid rgba(10, 10, 10, 0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
            border-color: rgba(26, 77, 46, 0.2);
        }

        .product-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--forest-green);
            color: var(--cream);
            padding: 6px 14px;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            z-index: 2;
        }

        .product-image-wrapper {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
            background: #fafafa;
        }

        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .product-card:hover .product-image {
            transform: scale(1.08);
        }

        .quick-add-btn {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            background: var(--noir);
            color: var(--cream);
            padding: 14px 32px;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .product-card:hover .quick-add-btn {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        .quick-add-btn:hover {
            background: var(--forest-green);
        }

        .product-info {
            padding: 28px;
        }

        .product-category {
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--warm-gray);
            margin-bottom: 8px;
        }

        .product-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            font-weight: 400;
            color: var(--noir);
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .product-description {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(10, 10, 10, 0.65);
            margin-bottom: 20px;
            font-weight: 300;
        }

        .product-features {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(10, 10, 10, 0.08);
        }

        .feature-item {
            flex: 1;
        }

        .feature-label {
            font-size: 9px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--warm-gray);
            margin-bottom: 4px;
        }

        .feature-value {
            font-size: 13px;
            font-weight: 400;
            color: var(--noir);
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .product-price {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            font-weight: 400;
            color: var(--forest-green);
        }

        .product-link {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--noir);
            text-decoration: none;
            border-bottom: 1px solid var(--noir);
            transition: all 0.3s ease;
        }

        .product-link:hover {
            color: var(--forest-green);
            border-color: var(--forest-green);
        }

        /* URGENCY BANNER */
        .urgency-banner {
            background: linear-gradient(135deg, var(--forest-green) 0%, #2a6b47 100%);
            color: var(--cream);
            padding: 48px 5%;
            text-align: center;
        }

        .urgency-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .urgency-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(28px, 3vw, 42px);
            font-weight: 400;
            margin-bottom: 16px;
        }

        .urgency-description {
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 32px;
            opacity: 0.9;
        }

        .urgency-cta {
            background: var(--cream);
            color: var(--forest-green);
            padding: 16px 42px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .urgency-cta:hover {
            background: var(--noir);
            color: var(--cream);
        }

        /* TESTIMONIALS */
        .testimonials-section {
            padding: 100px 5%;
            background: #fff;
        }

        .testimonials-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
        }

        .testimonial-card {
            background: var(--cream);
            padding: 36px;
            position: relative;
        }

        .testimonial-stars {
            color: var(--forest-green);
            font-size: 16px;
            margin-bottom: 16px;
        }

        .testimonial-text {
            font-size: 15px;
            line-height: 1.8;
            color: rgba(10, 10, 10, 0.8);
            margin-bottom: 24px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author-image {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--warm-gray);
        }

        .author-info {
            display: flex;
            flex-direction: column;
        }

        .author-name {
            font-size: 14px;
            font-weight: 500;
            color: var(--noir);
        }

        .author-verified {
            font-size: 12px;
            color: var(--warm-gray);
        }

        /* ANIMATIONS */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* MOBILE RESPONSIVE */
        @media (max-width: 968px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .hero {
                min-height: auto;
                padding: 40px 5%;
            }

            .hero-cta-group {
                flex-direction: column;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                text-align: center;
            }

            .social-proof {
                gap: 32px;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .header-nav {
                display: none;
            }
        }

        @media (max-width: 640px) {
            .announcement-bar {
                font-size: 11px;
                padding: 10px 16px;
            }

            .social-proof {
                flex-direction: column;
                gap: 24px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }
    </style>
</head>
<body>
    <!-- Announcement Bar -->
    <div class="announcement-bar">
        <strong>Free Shipping</strong> on all US orders over $150 • Easy Returns within 30 days
    </div>

    <!-- Sticky Header -->
    <header class="site-header">
        <div class="header-container">
            <a href="/" class="logo">
                <img src="//filmsuede.com/cdn/shop/files/FILMSUEDE_LOGO.png?v=1687543544" alt="Filmsuede Logo">
            </a>
            <nav class="header-nav">
                <a href="/collections/footwear" class="nav-link">Footwear</a>
                <a href="/pages/about" class="nav-link">Story</a>
                <a href="#" class="header-cta">Shop F-97 Trilogy</a>
            </nav>
        </div>
    </header>

    <!-- Hero Section -->
    <section class="hero">
        <div class="hero-grid">
            <div class="hero-content">
                <div class="trust-badge">
                    <svg class="trust-badge-icon" fill="currentColor" viewBox="0 0 20 20">
                        <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"/>
                    </svg>
                    Designed by Josh Brubaker (SUPRA, Yeezy, Vans)
                </div>
                
                <h1 class="hero-headline">
                    Footwear rooted in <em>nostalgia</em>,<br>
                    designed for tomorrow
                </h1>
                
                <p class="hero-subheadline">
                    Premium full-grain leather sneakers and loafers from the designer behind 5M+ pairs sold worldwide. 
                    Every silhouette honors craft while pushing boundaries.
                </p>

                <p class="hero-credentials">
                    By <strong>Josh Brubaker</strong> — 15+ years designing for Yeezy, SUPRA, Ice Cream, Vans
                </p>

                <div class="hero-cta-group">
                    <a href="/collections/footwear" class="btn-primary">Shop The F-97 Trilogy</a>
                    <a href="/pages/about" class="btn-secondary">Our Story</a>
                </div>

                <div class="social-proof">
                    <div class="proof-item">
                        <div class="proof-number">5M+</div>
                        <div class="proof-label">Pairs Sold</div>
                    </div>
                    <div class="proof-item">
                        <div class="proof-number">15+</div>
                        <div class="proof-label">Years Design</div>
                    </div>
                    <div class="proof-item">
                        <div class="proof-number">4.8★</div>
                        <div class="proof-label">Avg Rating</div>
                    </div>
                </div>
            </div>

            <div class="hero-visual">
                <div class="hero-image-container">
                    <img src="https://filmsuede.com/cdn/shop/files/oxblood_ad_1.png" alt="Filmsuede F-97 Oxblood Premium Leather Sneaker" class="hero-image">
                </div>
                <div class="hero-badge">
                    <div class="badge-label">Latest Release</div>
                    <div class="badge-title">F-97 Oxblood</div>
                </div>
            </div>
        </div>
    </section>

    <!-- Trust Indicators -->
    <section class="trust-section">
        <div class="trust-container">
            <div class="trust-item">
                <svg class="trust-icon" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                    <path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M5 13l4 4L19 7"/>
                </svg>
                <h3 class="trust-title">Full-Grain Leather</h3>
                <p class="trust-description">Hand-selected premium leather from trusted suppliers. Quality you can feel.</p>
            </div>
            <div class="trust-item">
                <svg class="trust-icon" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                    <path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M3 10h18M7 15h1m4 0h1m-7 4h12a3 3 0 003-3V8a3 3 0 00-3-3H6a3 3 0 00-3 3v8a3 3 0 003 3z"/>
                </svg>
                <h3 class="trust-title">Free Shipping & Returns</h3>
                <p class="trust-description">Free US shipping over $150. Easy 30-day returns, no questions asked.</p>
            </div>
            <div class="trust-item">
                <svg class="trust-icon" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                    <path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z"/>
                </svg>
                <h3 class="trust-title">Secure Checkout</h3>
                <p class="trust-description">Industry-standard encryption. Your information is always protected.</p>
            </div>
            <div class="trust-item">
                <svg class="trust-icon" fill="none" stroke="currentColor" viewBox="0 0 24 24">
                    <path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M13 10V3L4 14h7v7l9-11h-7z"/>
                </svg>
                <h3 class="trust-title">Direct from Factory</h3>
                <p class="trust-description">No middlemen. Premium quality without the premium markup.</p>
            </div>
        </div>
    </section>

    <!-- Featured Products -->
    <section class="products-section">
        <div class="section-header">
            <div class="section-eyebrow">The Collection</div>
            <h2 class="section-title">Designed to Last, Built to Matter</h2>
            <p class="section-description">
                Every silhouette begins with a memory—the shoes that shaped generations, the materials 
                that stood the test of time. Explore footwear that's both familiar and future-forward.
            </p>
        </div>

        <div class="products-grid">
            <!-- Product 1: F-97 Dark Forest -->
            <div class="product-card">
                <div class="product-badge">New Release</div>
                <div class="product-image-wrapper">
                    <img src="https://filmsuede.com/cdn/shop/files/OXBLOODWEBWEB.png" alt="F-97 Oxblood Full-Grain Leather Sneaker" class="product-image">
                    <button class="quick-add-btn">Quick Add</button>
                </div>
                <div class="product-info">
                    <div class="product-category">F-97 Trilogy</div>
                    <h3 class="product-name">F-97 Oxblood</h3>
                    <p class="product-description">
                        Rich oxblood leather meets refined proportions. The final chapter in the F-97 trilogy—designed to age beautifully.
                    </p>
                    <div class="product-features">
                        <div class="feature-item">
                            <div class="feature-label">Material</div>
                            <div class="feature-value">Full-Grain Leather</div>
                        </div>
                        <div class="feature-item">
                            <div class="feature-label">Style</div>
                            <div class="feature-value">Low-Top</div>
                        </div>
                    </div>
                    <div class="product-footer">
                        <div class="product-price">$250</div>
                        <a href="/products/f-97-oxblood" class="product-link">View Details →</a>
                    </div>
                </div>
            </div>

            <!-- Product 2: F-97 Wildcat -->
            <div class="product-card">
                <div class="product-image-wrapper">
                    <img src="https://filmsuede.com/cdn/shop/files/wildcat-side.png" alt="F-97 Wildcat Full-Grain Leather Sneaker" class="product-image">
                    <button class="quick-add-btn">Quick Add</button>
                </div>
                <div class="product-info">
                    <div class="product-category">F-97 Trilogy</div>
                    <h3 class="product-name">F-97 Wildcat</h3>
                    <p class="product-description">
                        Golden tones meet everyday versatility. Premium leather construction that transitions from street to studio.
                    </p>
                    <div class="product-features">
                        <div class="feature-item">
                            <div class="feature-label">Material</div>
                            <div class="feature-value">Full-Grain Leather</div>
                        </div>
                        <div class="feature-item">
                            <div class="feature-label">Colorway</div>
                            <div class="feature-value">Tan/Cream</div>
                        </div>
                    </div>
                    <div class="product-footer">
                        <div class="product-price">$250</div>
                        <a href="/products/f-97-wildcat" class="product-link">View Details →</a>
                    </div>
                </div>
            </div>

            <!-- Product 3: F-97 Black -->
            <div class="product-card">
                <div class="product-badge">Bestseller</div>
                <div class="product-image-wrapper">
                    <img src="https://filmsuede.com/cdn/shop/files/F-97-lateral.jpg" alt="F-97 Black Full-Grain Leather Sneaker" class="product-image">
                    <button class="quick-add-btn">Quick Add</button>
                </div>
                <div class="product-info">
                    <div class="product-category">F-97 Trilogy</div>
                    <h3 class="product-name">F-97 Black</h3>
                    <p class="product-description">
                        Pure. Timeless. Essential. The F-97 in its most refined form—no distractions, just impeccable craft.
                    </p>
                    <div class="product-features">
                        <div class="feature-item">
                            <div class="feature-label">Material</div>
                            <div class="feature-value">Full-Grain Leather</div>
                        </div>
                        <div class="feature-item">
                            <div class="feature-label">Versatility</div>
                            <div class="feature-value">Ultimate</div>
                        </div>
                    </div>
                    <div class="product-footer">
                        <div class="product-price">$250</div>
                        <a href="/products/f-97-in-black" class="product-link">View Details →</a>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Urgency Banner -->
    <section class="urgency-banner">
        <div class="urgency-content">
            <h2 class="urgency-title">Limited Production. Once They're Gone, They're Gone.</h2>
            <p class="urgency-description">
                We produce in small batches to maintain quality. Most colorways sell out within weeks of launch.
            </p>
            <a href="/collections/footwear" class="urgency-cta">Shop Before It's Too Late</a>
        </div>
    </section>

    <!-- Testimonials -->
    <section class="testimonials-section">
        <div class="section-header">
            <div class="section-eyebrow">Customer Reviews</div>
            <h2 class="section-title">What People Are Saying</h2>
        </div>

        <div class="testimonials-grid">
            <div class="testimonial-card">
                <div class="testimonial-stars">★★★★★</div>
                <p class="testimonial-text">
                    "The leather quality is exceptional—you can feel the craftsmanship in every detail. 
                    These are hands down the most comfortable and stylish sneakers I've ever owned."
                </p>
                <div class="testimonial-author">
                    <div class="author-image"></div>
                    <div class="author-info">
                        <div class="author-name">Marcus R.</div>
                        <div class="author-verified">Verified Purchase • F-97 Black</div>
                    </div>
                </div>
            </div>

            <div class="testimonial-card">
                <div class="testimonial-stars">★★★★★</div>
                <p class="testimonial-text">
                    "I've been following Josh's work since the SUPRA days. Filmsuede is everything I hoped 
                    it would be—nostalgic vibes with modern execution. The Oxblood colorway is incredible."
                </p>
                <div class="testimonial-author">
                    <div class="author-image"></div>
                    <div class="author-info">
                        <div class="author-name">Sarah K.</div>
                        <div class="author-verified">Verified Purchase • F-97 Oxblood</div>
                    </div>
                </div>
            </div>

            <div class="testimonial-card">
                <div class="testimonial-stars">★★★★★</div>
                <p class="testimonial-text">
                    "Finally, a premium sneaker that doesn't cost $400+. The leather quality rivals Common Projects 
                    at half the price. This is my third pair and I'm already planning my fourth."
                </p>
                <div class="testimonial-author">
                    <div class="author-image"></div>
                    <div class="author-info">
                        <div class="author-name">David L.</div>
                        <div class="author-verified">Verified Purchase • F-97 Wildcat</div>
                    </div>
                </div>
            </div>
        </div>
    </section>
</body>
</html>