        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            background: #faf9f7;
            color: #2d2d2d;
            line-height: 1.6;
        }

        header {
            background: linear-gradient(135deg, #8B4513 0%, #6d3410 100%);
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50 10 Q30 30 50 50 Q70 30 50 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
            opacity: 0.3;
        }

        .logo-container {
            position: relative;
            z-index: 1;
        }

        .logo {
            max-width: 180px;
            height: 180px;
            border-radius: 50%;
            border: 6px solid rgba(255, 255, 255, 0.95);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            transition: transform 0.4s ease;
            object-fit: cover;
        }

        .logo:hover {
            transform: scale(1.08) rotate(2deg);
        }

        .hero-text {
            color: white;
            margin-top: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-text p {
            font-size: 1.1rem;
            opacity: 0.95;
            font-weight: 300;
        }

        main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #8B4513;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .section-title p {
            color: #666;
            font-size: 1.1rem;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 2rem;
        }

        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
        }

        .product-image {
            position: relative;
            width: 100%;
            height: 280px;
            overflow: hidden;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
        }

        .product-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover img {
            transform: scale(1.1);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #8B4513;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .product-info {
            padding: 1.75rem;
        }

        .product-card h3 {
            font-size: 1.6rem;
            color: #2d2d2d;
            margin-bottom: 0.75rem;
            font-weight: 700;
        }

        .product-card .price {
            font-size: 2rem;
            color: #2e7d32;
            font-weight: 700;
            margin-bottom: 1rem;
            display: block;
        }

        .product-card p {
            color: #666;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        footer {
            background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
            color: white;
            text-align: center;
            padding: 3rem 2rem;
            margin-top: 5rem;
        }

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

        .footer-cta {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
        }

        .footer-cta h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        footer p {
            margin: 0.75rem 0;
            opacity: 0.9;
        }

        footer a {
            color: #FFD700;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 0.5rem 1.5rem;
            display: inline-block;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 25px;
            margin-top: 0.5rem;
        }

        footer a:hover {
            background: #FFD700;
            color: #2d2d2d;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
        }

        .copyright {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }

        @media (max-width: 768px) {
            .hero-text h1 {
                font-size: 2rem;
            }

            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 2rem;
            }

            main {
                padding: 3rem 1.5rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .logo {
                max-width: 140px;
                height: 140px;
            }
        }

        @media (max-width: 480px) {
            .product-grid {
                grid-template-columns: 1fr;
            }

            .hero-text h1 {
                font-size: 1.75rem;
            }
        }