
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #fff;
        }


        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #e8ead3 0%, #d8dcc4 100%);
            max-width: 1400px;
            margin: 2rem auto;
            padding: 3rem 2rem;
            display: grid;
            grid-template-columns: 400px 1fr 280px;
            gap: 2rem;
            align-items: center;
            border-radius: 12px;
        }

        .hero-featured {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 380px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        }

        .hero-featured img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-label {
            position: absolute;
            bottom: 1.5rem;
            left: 1.5rem;
            background: rgba(255,255,255,0.95);
            padding: 1rem 1.5rem;
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }

        .hero-label h3 {
            font-size: 1.3rem;
            margin-bottom: 0.3rem;
            color: #1a1a1a;
        }

        .hero-label p {
            color: #666;
            font-size: 0.9rem;
        }

        .hero-content {
            padding: 0 2rem;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 1rem;
            color: #1a1a1a;
            font-weight: 700;
        }

        .hero-content p {
            color: #666;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .shop-btn {
            background: #000;
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .shop-btn:hover {
            background: #333;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .hero-sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .sidebar-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            position: relative;
            transition: transform 0.3s;
            cursor: pointer;
        }

        .sidebar-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        }

        .sidebar-card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
        }

        .sidebar-card-content {
            padding: 1rem;
        }

        .sidebar-card-content h4 {
            font-size: 0.95rem;
            color: #1a1a1a;
            font-weight: 600;
        }

        .sale-badge {
            position: absolute;
            top: 0.8rem;
            right: 0.8rem;
            background: #ff4444;
            color: white;
            padding: 0.3rem 0.7rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 700;
        }

        /* Products Section */
        .products {
            max-width: 1400px;
            margin: 3rem auto;
            padding: 0 2rem;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }

        .product-image {
            position: relative;
            width: 100%;
            height: 320px;
            overflow: hidden;
            background: #f8f8f8;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .product-info {
            padding: 1.5rem;
        }

        .product-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .price {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a1a1a;
        }

        .collection {
            color: #888;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero {
                grid-template-columns: 350px 1fr 250px;
                gap: 1.5rem;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr 1fr;
                padding: 2rem 1.5rem;
            }

            .hero-sidebar {
                grid-column: 1 / -1;
                flex-direction: row;
                gap: 1rem;
            }

            .sidebar-card {
                flex: 1;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 1rem;
            }

            .menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
                gap: 0.5rem;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links a {
                width: 100%;
                padding: 0.8rem 1rem;
            }

            .sign-up {
                display: none;
            }

            .hero {
                grid-template-columns: 1fr;
                padding: 2rem 1rem;
                margin: 1rem;
            }

            .hero-featured {
                height: 300px;
            }

            .hero-content {
                padding: 0;
                order: -1;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-sidebar {
                flex-direction: column;
            }

            .products {
                padding: 0 1rem;
                margin: 2rem auto;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 1rem;
            }

            .product-image {
                height: 220px;
            }

            .product-info {
                padding: 1rem;
            }

            .product-name {
                font-size: 0.95rem;
            }

            .price {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.6rem;
            }

            .hero-content p {
                font-size: 0.95rem;
            }

            .products-grid {
                grid-template-columns: 1fr 1fr;
            }

            .sidebar-card img {
                height: 140px;
            }
        }
   