  :root {
            --primary-color: #3B82F6;
            --pink-color: #FF6F61;
            --primary-dark: #2563EB;
            --secondary-color: #10B981;
            --accent-color: #F59E0B;
            --text-dark: #1F2937;
            --text-light: #6B7280;
            --bg-light: #F9FAFB;
            --bg-dark: #111827;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-light);
            scroll-behavior: smooth;
        }

        .navbar {
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        .navbar.scrolled {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 0.5rem 0;
        }

        .hero-section {
            background-color: var(--primary-color);
            color: white;
        }

        .product-card {
            transition: all 0.3s ease;
            overflow: hidden;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
        }

        .label {
            position: absolute;
            top: 1rem;
            left: 1rem;
            z-index: 10;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            background-color: var(--secondary-color);
            color: white;
        }

        .share-icons {
            display: flex;
            gap: 0.5rem;
        }

        .share-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: white;
            color: var(--secondary-color);
            display: flex;
            justify-content: center;
            align-items: center;
            transition: transform 0.3s ease;
        }

        .share-icon:hover {
            transform: scale(1.2);
        }

        /* Tooltip styles */
        .tooltip {
            display: none;
            position: absolute;
            background-color: var(--bg-dark);
            color: white;
            border-radius: 0.25rem;
            padding: 0.5rem;
            font-size: 0.875rem;
            z-index: 1000;
            white-space: nowrap;
        }

        /* Mobile menu styles */
        .mobile-menu {
            display: none;
            /* Hidden by default */
        }

        @media (max-width: 768px) {
            .mobile-menu.open {
                display: block;
                /* Show mobile menu when open */
            }
        }