@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');

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

        body {
            font-family: 'Quicksand', sans-serif;
            background: linear-gradient(135deg, #f0fdf4 0%, #d1fae5 50%, #ccfbf1 100%);
            min-height: 100vh;
        }

        .header {
            background: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-title {
            font-size: 1.875rem;
            font-weight: 700;
            background: linear-gradient(to right, #059669, #10b981);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .search-container {
            flex: 1;
            max-width: 28rem;
        }

        .search-box {
            width: 100%;
            padding: 0.75rem 1rem 0.75rem 2.5rem;
            border: 2px solid #86efac;
            border-radius: 9999px;
            font-family: 'Quicksand', sans-serif;
            font-size: 1rem;
            outline: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: 0.75rem center;
        }

        .search-box:focus {
            border-color: #10b981;
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
        }

        .header-tagline {
            font-size: 0.875rem;
            color: #6b7280;
            font-weight: 600;
        }

        /* Navbar */
        .nav {
            background: transparent;
            margin-top: 0.5rem;
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .nav-list {
            display: flex;
            gap: 0.75rem;
            list-style: none;
            padding: 0.75rem 0;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
        }

        .nav-link {
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-weight: 600;
            text-decoration: none;
            color: #374151;
            border: 2px solid #86efac;
            background: white;
            transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
        }

        .nav-link:hover {
            background: #d1fae5;
            transform: translateY(-2px);
        }

        .nav-link.active {
            background: linear-gradient(to right, #10b981, #059669);
            color: white;
            border-color: transparent;
            box-shadow: 0 6px 18px rgba(16,185,129,0.25);
        }

        @media (max-width: 480px) {
            .nav-list {
                gap: 0.5rem;
            }
            .nav-link {
                padding: 0.5rem 0.75rem;
                font-size: 0.9rem;
            }
        }

        .hero {
            background: linear-gradient(to right, #10b981, #059669);
            color: white;
            padding: 4rem 1rem;
            text-align: center;
        }

        .hero h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.5rem;
            opacity: 0.95;
            font-weight: 600;
        }

        .categories {
            max-width: 1280px;
            margin: 2rem auto;
            padding: 0 1rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: center;
        }

        .category-btn {
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            font-family: 'Quicksand', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid #86efac;
            background: white;
            color: #374151;
        }

        .category-btn:hover {
            background: #d1fae5;
            transform: scale(1.05);
        }

        .category-btn.active {
            background: #10b981;
            color: white;
            border-color: #10b981;
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        }

        .products-grid {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .product-card {
            background: white;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: all 0.3s;
            border: 2px solid #d1fae5;
        }

        .product-card:hover {
            box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
            transform: translateY(-4px);
        }

        .product-image {
            position: relative;
            height: 16rem;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

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

        .product-category {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            background: #10b981;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .product-info {
            padding: 1.25rem;
        }

        .product-name {
            font-size: 1.125rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 0.75rem;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            margin-bottom: 1rem;
        }

        .star {
            color: #fbbf24;
            font-size: 1.25rem;
        }

        .rating-text {
            font-weight: 600;
            color: #374151;
            font-size: 0.875rem;
        }

        .reviews-text {
            color: #6b7280;
            font-size: 0.875rem;
        }

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

        .product-price {
            font-size: 1.875rem;
            font-weight: 700;
            color: #059669;
        }

        .amazon-btn {
            background: linear-gradient(to right, #10b981, #059669);
            color: white;
            padding: 0.75rem 1.25rem;
            border-radius: 9999px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
            box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
        }

        .amazon-btn:hover {
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
            transform: scale(1.05);
        }

        .footer {
            background: white;
            border-top: 2px solid #d1fae5;
            margin-top: 3rem;
            padding: 1.5rem 1rem;
            text-align: center;
        }

        .footer p {
            color: #6b7280;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .no-results {
            text-align: center;
            padding: 3rem 1rem;
            color: #6b7280;
            font-size: 1.25rem;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .hero h2 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1.125rem;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .search-container {
                order: 3;
                width: 100%;
            }
        }
