
        /* Modern CSS Reset and Variables */
        :root {
            --primary: #10b981;
            --primary-dark: #059669;
            --primary-light: #34d399;
            --accent: #f59e0b;
            --text: #1f2937;
            --text-light: #6b7280;
            --background: #ffffff;
            --white: #ffffff;
            --light-bg: #f9fafb;
            --dark-bg: #111827;
            --dark-text: #f9fafb;
            --border: #e5e7eb;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --radius: 12px;
            --radius-lg: 16px;
        }

        .dark-mode {
            --primary: #10b981;
            --primary-dark: #059669;
            --primary-light: #34d399;
            --accent: #f59e0b;
            --text: #f9fafb;
            --text-light: #d1d5db;
            --background: #111827;
            --white: #1f2937;
            --light-bg: #1f2937;
            --border: #374151;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--background);
            overflow-x: hidden;
            transition: var(--transition);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Modern Header & Navigation */
        .header-top {
            background-color: var(--light-bg);
            color: var(--text);
            padding: 8px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border);
        }

        .header-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info span {
            margin-right: 20px;
        }

        .contact-info i {
            margin-right: 5px;
            color: var(--primary);
        }

        .user-actions a {
            color: var(--text);
            text-decoration: none;
            margin-left: 15px;
            transition: var(--transition);
        }

        .user-actions a:hover {
            color: var(--primary);
        }

        .theme-toggle {
            background: none;
            border: none;
            color: var(--text);
            cursor: pointer;
            font-size: 1.2rem;
            margin-left: 15px;
        }

        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.8);
        }

        .dark-mode header {
            background-color: rgba(31, 41, 55, 0.8);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h1 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-left: 10px;
            font-weight: 700;
        }

        .logo-icon {
            font-size: 2rem;
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 25px;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 600;
            padding: 8px 0;
            position: relative;
            transition: var(--transition);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--primary);
            border-radius: 3px;
        }

        .nav-icons {
            display: flex;
            align-items: center;
        }

        .nav-icons a {
            color: var(--text);
            font-size: 1.2rem;
            margin-left: 20px;
            position: relative;
            transition: var(--transition);
        }

        .nav-icons a:hover {
            color: var(--primary);
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--accent);
            color: var(--white);
            font-size: 0.7rem;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700;
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text);
        }

        /* Modern Search Bar */
        .search-container {
            position: relative;
            display: inline-block;
        }

        .search-box {
            position: absolute;
            top: 50px;
            right: 0;
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            padding: 15px;
            width: 300px;
            z-index: 10;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: var(--transition);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border);
        }

        .search-box.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .search-box input {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            font-size: 1rem;
            margin-bottom: 10px;
            background-color: var(--light-bg);
            color: var(--text);
        }

        .search-box button {
            width: 100%;
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 10px;
            border-radius: var(--radius);
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }

        .search-box button:hover {
            background: var(--primary-dark);
        }

        /* Modern Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%), url('https://images.unsplash.com/photo-1542838132-92c53300491e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: var(--text);
            padding: 120px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
            z-index: 0;
        }

        .dark-mode .hero::before {
            background: linear-gradient(135deg, rgba(17, 24, 39, 0.9) 0%, rgba(17, 24, 39, 0.7) 100%);
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 14px 32px;
            text-decoration: none;
            border-radius: var(--radius);
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            box-shadow: var(--shadow);
        }

        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-accent {
            background: var(--accent);
        }

        .btn-accent:hover {
            background: #d97706;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: var(--white);
        }

        /* Featured Products - Modern Grid */
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--text);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            font-weight: 700;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }

        .section-title p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .featured-products {
            padding: 100px 0;
            background-color: var(--light-bg);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
                    width: 191px;
        }

        .product-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
            border: 1px solid var(--border);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--accent);
            color: var(--white);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            z-index: 1;
        }

        .product-image {
            height: 220px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-actions {
            position: absolute;
            top: 15px;
            right: 15px;
            display: flex;
            flex-direction: column;
            opacity: 0;
            transition: var(--transition);
        }

        .product-card:hover .product-actions {
            opacity: 1;
        }

        .product-actions button {
            background: var(--white);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 10px;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: var(--transition);
            color: var(--text);
        }

        .product-actions button:hover {
            background: var(--primary);
            color: var(--white);
            transform: scale(1.1);
        }

        .product-info {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product-info h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--text);
            line-height: 1.3;
            font-weight: 600;
        }

        .product-category {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .product-price {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            padding-top: 15px;
        }

        .price {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
        }

        .old-price {
            font-size: 1rem;
            color: var(--text-light);
            text-decoration: line-through;
            margin-right: 10px;
        }

        .rating {
            color: #ffc107;
            font-size: 0.9rem;
        }

        .add-to-cart {
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 10px 15px;
            border-radius: var(--radius);
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .add-to-cart i {
            margin-right: 8px;
        }

        .add-to-cart:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        /* Categories Section - Modern Cards */
        .categories {
            padding: 100px 0;
            background-color: var(--white);
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .category-card {
            background: var(--light-bg);
            border-radius: var(--radius-lg);
            padding: 40px 20px;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .category-card:hover h3,
        .category-card:hover p {
            color: var(--white);
        }

        .category-card:hover .category-icon {
            color: var(--white);
            transform: scale(1.2);
        }

        .category-card:hover::after {
            opacity: 1;
        }

        .category-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            opacity: 0;
            transition: var(--transition);
            z-index: -1;
        }

        .category-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--primary);
            transition: var(--transition);
        }

        .category-card h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--text);
            font-weight: 600;
        }

        .category-card p {
            color: var(--text-light);
        }

        /* Features Section - Modern Design */
        .features {
            padding: 100px 0;
            background-color: var(--light-bg);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: var(--white);
            padding: 40px 20px;
            border-radius: var(--radius-lg);
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.2);
            color: var(--accent);
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .feature-card p {
            color: var(--text-light);
        }

        /* Testimonials - Modern Cards */
        .testimonials {
            padding: 100px 0;
            background-color: var(--white);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: var(--light-bg);
            padding: 30px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: var(--transition);
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 5rem;
            color: var(--primary);
            opacity: 0.2;
            font-family: Georgia, serif;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--text);
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 3px solid var(--primary);
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .author-info p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Newsletter - Modern Design */
        .newsletter {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%), url('https://images.unsplash.com/photo-1556909114-4d0d853e5e25?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: var(--text);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .newsletter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.9);
            z-index: 0;
        }

        .dark-mode .newsletter::before {
            background: rgba(17, 24, 39, 0.9);
        }

        .newsletter .container {
            position: relative;
            z-index: 1;
        }

        .newsletter h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .newsletter p {
            max-width: 600px;
            margin: 0 auto 2rem;
            opacity: 0.9;
            font-size: 1.1rem;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            font-size: 1rem;
            background: var(--white);
            color: var(--text);
        }

        .newsletter-form button {
            background: var(--accent);
            color: var(--white);
            border: none;
            padding: 0 25px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        .newsletter-form button:hover {
            background: #d97706;
        }

        /* Modern Footer */
        footer {
            background: var(--white);
            color: var(--text);
            padding: 80px 0 0;
            border-top: 1px solid var(--border);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            color: var(--primary);
            font-weight: 600;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .footer-links a i {
            margin-right: 8px;
            font-size: 0.8rem;
            color: var(--primary);
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: var(--text-light);
        }

        .footer-contact i {
            margin-right: 10px;
            color: var(--primary);
        }

        .social-links {
            display: flex;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background: var(--light-bg);
            border-radius: 50%;
            margin-right: 10px;
            transition: var(--transition);
            color: var(--text);
            text-decoration: none;
        }

        .social-links a:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
        }

        .footer-bottom {
            background: var(--light-bg);
            padding: 25px 0;
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-light);
            border-top: 1px solid var(--border);
        }

        .payment-methods {
            display: flex;
            justify-content: center;
            margin-top: 15px;
        }

        .payment-methods i {
            font-size: 1.8rem;
            margin: 0 8px;
            color: var(--text-light);
            transition: var(--transition);
        }

        .payment-methods i:hover {
            color: var(--primary);
        }

        /* Category Filters - Modern Design */
        .category-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }

        .category-filters a {
            display: inline-block;
            background: var(--white);
            color: var(--text);
            padding: 12px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }

        .category-filters a:hover,
        .category-filters a.active {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        /* Animations */
        .animate-fade-in {
            animation: fadeIn 1s ease-in-out;
        }

        .animate-slide-up {
            animation: slideUp 0.8s ease-out;
        }

        .animate-bounce-in {
            animation: bounceIn 1s;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { 
                opacity: 0;
                transform: translateY(30px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounceIn {
            0% { transform: scale(0.3); opacity: 0; }
            50% { transform: scale(1.05); opacity: 0.9; }
            70% { transform: scale(0.9); }
            100% { transform: scale(1); opacity: 1; }
        }

        /* Enhanced Responsive Design */
        @media (max-width: 1200px) {
            .container {
                max-width: 95%;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
                gap: 25px;
                        width: 191px;
            }
        }

        @media (max-width: 992px) {
            .hero h2 {
                font-size: 2.8rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
                gap: 20px;
                        width: 191px;
            }
            
            .category-grid,
            .features-grid,
            .testimonials-grid {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 80px 0;
            }
            
            .hero h2 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input {
                border-radius: var(--radius);
                margin-bottom: 10px;
            }
            
            .newsletter-form button {
                border-radius: var(--radius);
                padding: 15px;
            }

            .search-box {
                width: 250px;
                right: -50px;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 15px;
                        width: 191px;
            }
            
            .featured-products,
            .categories,
            .features,
            .testimonials,
            .newsletter {
                padding: 80px 0;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            
            .footer-column h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .header-top .container {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-info {
                margin-bottom: 10px;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .featured-products,
            .categories,
            .features,
            .testimonials,
            .newsletter {
                padding: 60px 0;
            }

            .search-box {
                width: 200px;
                right: -80px;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                        width: 191px;
            }
            
            .category-filters {
                gap: 10px;
            }
            
            .category-filters a {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .product-image {
                height: 200px;
            }
            
            .product-info {
                padding: 15px;
            }
            
            .product-info h3 {
                font-size: 1.1rem;
            }
            
            .price {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 400px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .category-grid,
            .features-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .category-filters {
                flex-direction: column;
                align-items: center;
            }
            
            .category-filters a {
                width: 80%;
                text-align: center;
            }
        }
        .marquee-box {
    width: 100%;
    overflow: hidden;
    background: #f8f8f8;
    padding: 12px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.marquee-text {
    display: inline-block;
    white-space: nowrap;
    font-size: 22px;
    font-weight: bold;
    color: #2ecc71; /* Green */
    animation: scrollRight 20s linear infinite, glow 2s ease-in-out infinite;
}

/* ✅ Slow Left → Right Movement */
@keyframes scrollRight {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ✅ Light Glow Animation */
@keyframes glow {
    0%   { text-shadow: 0px 0px 0px rgba(46, 204, 113, 0.5); }
    50%  { text-shadow: 0px 0px 12px rgba(46, 204, 113, 0.9); }
    100% { text-shadow: 0px 0px 0px rgba(46, 204, 113, 0.5); }
}
/* ============================
   ✅ DARK MODE STYLES
   ============================ */

.dark-mode .marquee-box {
    background: #1f2937;          /* Dark gray background */
    border-top: 1px solid #374151;
    border-bottom: 1px solid #374151;
}

.dark-mode .marquee-text {
    color: #34d399;               /* Bright green for dark mode */
    text-shadow: 0px 0px 8px rgba(52, 211, 153, 0.8);
    animation: scrollRight 20s linear infinite, glowDark 2s ease-in-out infinite;
}

/* ✅ Dark Mode Glow Animation */
@keyframes glowDark {
    0%   { text-shadow: 0px 0px 0px rgba(52, 211, 153, 0.4); }
    50%  { text-shadow: 0px 0px 15px rgba(52, 211, 153, 1); }
    100% { text-shadow: 0px 0px 0px rgba(52, 211, 153, 0.4); }
}

   