﻿        :root {
            --primary-color: #1C592B;
            --primary-light: #2E7D32;
            --primary-dark: #388E3C;
            --secondary-color: #8BC34A;
            --accent-color: #D0FFD6;
            --background-color: #F5F5F5;
            --surface-color: #FFFFFF;
            --text-primary: #212121;
            --text-secondary: #757575;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--background-color);
            color: var(--text-primary);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            scroll-behavior: auto;
        }

        /* Farmart-inspired clean design */
        .hero-section {
            background: linear-gradient(135deg, #2E7D32 0%, #388E3C 100%);
            color: white;
            padding: 0;
            margin: 0;
        }

        .hero-search {
            max-width: 600px;
            margin: 0 auto;
        }

        .hero-search .form-control {
            border: none;
            font-size: 16px;
            padding: 15px 20px;
        }

        .hero-search .btn {
            padding: 15px 25px;
            font-weight: 600;
        }

        .categories-section {
            background-color: #f8f9fa;
            margin: 0;
            padding: 40px 0;
        }

        /* maSOKOtips wordmark — see app.css (.brand-wordmark) */
        .brand-title .brand-ma,
        .brand-title .brand-tips,
        .footer-brand .brand-ma,
        .footer-brand .brand-tips {
            color: #ffffff;
        }

        .brand-title .brand-soko,
        .footer-brand .brand-soko {
            color: #C9A227;
        }

        .hero-stat-number {
            color: #C9A227;
        }

        .hero-lead-smallcaps {
            font-variant: small-caps;
            letter-spacing: 0.04em;
        }


        .hero-section {
            background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #4CAF50 100%);
            color: white;
            padding: 20px 0;
        }



        .brand-soko {
            color: #C9A227;
        }

        /* Categories Section - EXACT Flutter Match */
        .categories-section {
            padding: 40px 0 60px 0;
            background: #ffffff;
            margin-top: -40px;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
            padding: 0 24px;
        }

        .section-title {
            font-size: 24px;
            font-weight: 600;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .section-icon {
            background-color: rgba(28, 89, 43, 0.1);
            border-radius: 12px;
            padding: 8px;
            margin-right: 12px;
            color: var(--primary-color);
        }

        .see-all-btn {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
        }

        .see-all-btn:hover {
            color: var(--primary-light);
        }

        .categories-container {
            padding: 0 24px;
        }

        .categories-scroll {
            overflow-x: auto;
            overflow-y: hidden;
            white-space: nowrap;
            padding: 8px 0;
        }

        .categories-scroll::-webkit-scrollbar {
            height: 6px;
        }

        .categories-scroll::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }

        .categories-scroll::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 3px;
        }

        .categories-scroll::-webkit-scrollbar-thumb:hover {
            background: var(--primary-light);
        }

        .category-item {
            display: inline-block;
            width: 280px;
            margin-right: 16px;
            white-space: normal;
        }

        .category-item:last-child {
            margin-right: 0;
        }

        .categories-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 20px 0;
            max-width: 100%;
            overflow-x: auto;
        }

        .categories-grid::-webkit-scrollbar {
            height: 6px;
        }

        .categories-grid::-webkit-scrollbar-track {
            background: rgba(28, 89, 43, 0.1);
            border-radius: 3px;
        }

        .categories-grid::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 3px;
        }

        .categories-grid::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }

        .category-item {
            flex: 0 0 auto;
            min-width: 280px;
            max-width: 320px;
        }

        .category-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
            border-radius: 20px;
            padding: 28px 20px;
            text-align: center;
            box-shadow: 0 8px 32px rgba(28, 89, 43, 0.12);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(28, 89, 43, 0.08);
            cursor: pointer;
            position: relative;
            height: 100%;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--category-color, var(--primary-color));
            border-radius: 20px 20px 0 0;
        }

        .category-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(28, 89, 43, 0.2);
            border-color: var(--category-color, var(--primary-color));
        }

        .category-card:hover::before {
            height: 6px;
            background: linear-gradient(90deg, var(--category-color, var(--primary-color)), var(--secondary-color));
        }

        .category-image {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--category-color, var(--primary-color)), rgba(139, 195, 74, 0.8));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 32px;
            box-shadow: 0 8px 20px rgba(28, 89, 43, 0.2);
            transition: all 0.3s ease;
        }

        .category-card:hover .category-image {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 24px rgba(28, 89, 43, 0.3);
        }

        .category-name {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 20px;
            margin: 0 0 12px 0;
            line-height: 1.3;
            text-align: center;
            transition: color 0.3s ease;
        }

        .category-card:hover .category-name {
            color: var(--category-color, var(--primary-dark));
        }

        .category-description {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0 0 16px 0;
            line-height: 1.5;
            flex-grow: 1;
            transition: color 0.3s ease;
        }

        .category-count {
            margin: 12px 0 16px 0;
        }

        .count-badge {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, var(--category-color, var(--primary-color)), rgba(139, 195, 74, 0.8));
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(28, 89, 43, 0.2);
            transition: all 0.3s ease;
        }

        .category-card:hover .count-badge {
            transform: scale(1.05);
            box-shadow: 0 6px 16px rgba(28, 89, 43, 0.3);
        }

        .category-actions {
            margin-top: auto;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .categories-grid {
                flex-direction: column;
                align-items: center;
                gap: 16px;
            }
            
            .category-item {
                min-width: 100%;
                max-width: 100%;
            }
            
            .category-card {
                min-height: 240px;
                padding: 24px 16px;
            }
            
            .category-image {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
            
            .category-name {
                font-size: 18px;
            }
            
            .category-description {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .categories-grid {
                padding: 10px 0;
            }
            
            .category-card {
                min-height: 220px;
                padding: 20px 12px;
            }
            
            .category-image {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .category-name {
                font-size: 16px;
            }
            
            .count-badge {
                padding: 6px 12px;
                font-size: 11px;
            }
        }
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .count-badge {
            white-space: nowrap;
        }

        /* Category Actions */
        .category-actions {
            display: flex;
            gap: 8px;
            margin-top: 12px;
            justify-content: center;
        }

        .category-actions .btn {
            font-size: 12px;
            padding: 6px 12px;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .category-actions .btn:hover {
            transform: translateY(-2px);
        }

        .explore-btn {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        .explore-btn:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .subcategories-btn {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .subcategories-btn:hover {
            background-color: var(--primary-light);
            border-color: var(--primary-light);
        }

        /* Category Search Container */
        .category-search-container {
            padding: 0 24px 20px 24px;
        }

        .category-search-container .input-group {
            max-width: 400px;
            margin: 0 auto;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            border-radius: 8px;
            overflow: hidden;
        }

        .category-search-container .input-group-text {
            border: 1px solid #dee2e6;
            border-right: none;
        }

        .category-search-container .form-control {
            border: 1px solid #dee2e6;
            border-left: none;
            box-shadow: none;
        }

        .category-search-container .form-control:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }

        .category-search-container .input-group-text {
            color: var(--primary-color);
        }

        /* Market News Section - EXACT Flutter Match */
        .market-news-section {
            padding: 24px 0 48px 0;
            background-color: var(--background-color);
        }

        .market-news-container {
            padding: 0 24px;
        }

        .market-news-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
            border-radius: 20px;
            padding: 28px;
            box-shadow: 0 8px 32px rgba(28, 89, 43, 0.12);
            border: 1px solid rgba(28, 89, 43, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            min-height: 200px;
            min-width: 350px;
            height: auto;
            display: flex;
            align-items: flex-start;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            flex: 1;
            max-width: 400px;
        }

        .market-news-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 20px 20px 0 0;
        }

        .market-news-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(28, 89, 43, 0.2);
            border-color: rgba(28, 89, 43, 0.2);
        }

        .market-news-card:hover::before {
            height: 6px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-light));
        }

        .market-news-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(28, 89, 43, 0.15), rgba(139, 195, 74, 0.1));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--primary-color);
            font-size: 26px;
            box-shadow: 0 4px 12px rgba(28, 89, 43, 0.1);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .market-news-card:hover .market-news-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, rgba(28, 89, 43, 0.2), rgba(139, 195, 74, 0.15));
            box-shadow: 0 6px 16px rgba(28, 89, 43, 0.2);
        }

        .market-news-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 100%;
        }

        .market-news-content h4 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 12px;
            font-size: 18px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            transition: color 0.3s ease;
        }

        .market-news-card:hover .market-news-content h4 {
            color: var(--primary-dark);
        }

        .market-news-content p {
            color: var(--text-secondary);
            font-size: 15px;
            margin: 0;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            flex: 1;
            transition: color 0.3s ease;
        }

        .market-news-card:hover .market-news-content p {
            color: #555;
        }

        .market-news-scroll {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            padding: 20px 0;
            scrollbar-width: thin;
            scrollbar-color: var(--primary-color) transparent;
            scroll-behavior: smooth;
            justify-content: center;
        }

        .market-news-scroll::-webkit-scrollbar {
            height: 6px;
        }

        .market-news-scroll::-webkit-scrollbar-track {
            background: transparent;
        }

        .market-news-scroll::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 3px;
        }

        .market-news-scroll::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }

        .news-meta {
            display: flex;
            gap: 20px;
            margin-top: 16px;
            font-size: 13px;
            color: var(--text-secondary);
            flex-shrink: 0;
            padding-top: 12px;
            border-top: 1px solid rgba(28, 89, 43, 0.1);
        }

        .market-news-card:hover .news-meta {
            border-top-color: rgba(28, 89, 43, 0.2);
        }

        .news-location, .news-date {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 500;
            padding: 4px 8px;
            background: rgba(28, 89, 43, 0.05);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .news-location:hover, .news-date:hover {
            background: rgba(28, 89, 43, 0.1);
            transform: translateY(-1px);
        }

        .news-location i, .news-date i {
            color: var(--primary-color);
            font-size: 12px;
        }

        /* Responsive adjustments for market news */
        @media (max-width: 768px) {
            .market-news-scroll {
                gap: 16px;
                padding: 16px 0;
            }
            
            .market-news-card {
                min-width: 280px;
                min-height: 180px;
                height: auto;
                padding: 24px;
                max-width: 320px;
            }
            
            .market-news-icon {
                width: 48px;
                height: 48px;
                font-size: 22px;
            }
            
            .market-news-content h4 {
                font-size: 16px;
                -webkit-line-clamp: 2;
            }
            
            .market-news-content p {
                font-size: 14px;
                -webkit-line-clamp: 2;
            }
            
            .news-meta {
                flex-direction: column;
                gap: 8px;
                margin-top: 12px;
            }
            
            .news-location, .news-date {
                padding: 3px 6px;
                font-size: 12px;
            }
        }

        /* Featured Services Section */
        .featured-services-section {
            padding: 24px 0 48px 0;
            background-color: var(--surface-color);
        }

        .featured-services-container {
            padding: 0 24px;
        }

        .service-item {
            flex: 0 0 auto;
            width: 280px;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            height: 350px;
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(28, 89, 43, 0.15);
        }

        .service-image {
            height: 160px;
            background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 48px;
            overflow: hidden;
        }

        .service-image-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-wishlist {
            position: absolute;
            top: 8px;
            right: 8px;
            background: white;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .service-wishlist:hover {
            transform: scale(1.1);
        }

        .service-details {
            padding: 16px;
        }

        .service-title {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 8px;
            font-size: 16px;
        }

        .service-price {
            font-weight: 700;
            color: var(--secondary-color);
            font-size: 18px;
            margin-bottom: 4px;
        }

        .service-provider {
            font-size: 12px;
            color: var(--text-secondary);
            margin-bottom: 12px;
        }

        .service-actions {
            display: flex;
            gap: 8px;
            padding: 0 16px 16px;
        }

        /* Organic Products Section - EXACT Featured Products Match */
        .organic-products-section {
            padding: 24px 0 48px 0;
            background-color: var(--surface-color);
        }

        .organic-products-container {
            padding: 0 24px;
        }

        .view-service-btn, .contact-provider-btn {
            flex: 1;
            padding: 8px 12px;
            border: none;
            border-radius: 8px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .view-service-btn {
            background: var(--primary-color);
            color: white;
        }

        .view-service-btn:hover {
            background: var(--primary-dark);
        }

        .contact-provider-btn {
            background: var(--secondary-color);
            color: white;
        }

        .contact-provider-btn:hover {
            background: var(--secondary-dark);
        }

        .services-scroll {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding: 16px 0;
            scrollbar-width: thin;
            scrollbar-color: var(--primary-color) transparent;
        }

        .services-scroll::-webkit-scrollbar {
            height: 6px;
        }

        .services-scroll::-webkit-scrollbar-track {
            background: transparent;
        }

        .services-scroll::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 3px;
        }

        .services-scroll::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }

        /* Responsive adjustments for services */
        @media (max-width: 768px) {
            .services-scroll {
                gap: 12px;
                padding: 12px 0;
            }
            
            .service-item {
                width: 260px;
            }
            
            .service-card {
                height: auto;
                min-height: 320px;
            }
            
            .service-title {
                font-size: 15px;
            }
            
            .service-price {
                font-size: 16px;
            }
        }

        /* Featured Products Section - EXACT Flutter Match */
        .featured-products-section {
            padding: 24px 0 48px 0;
            background-color: var(--surface-color);
        }

        .featured-products-container {
            padding: 0 24px;
        }

        .product-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            height: 350px;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(28, 89, 43, 0.15);
        }

        /* Clean Category styling inspired by Farmart */
        .product-card[data-category-id] {
            background: #ffffff;
            border: 1px solid #e9ecef;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .product-card[data-category-id]:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }

        .product-card[data-category-id] .product-image {
            background: transparent;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .product-card[data-category-id] .category-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .product-card[data-category-id]:hover .product-image {
            transform: scale(1.02);
        }

        .product-card[data-category-id] .product-name {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 16px;
            margin: 12px 0 8px 0;
            transition: color 0.3s ease;
        }

        .product-card[data-category-id]:hover .product-name {
            color: var(--primary-dark);
        }



        .product-card[data-category-id] .category-count {
            margin: 8px 0 12px 0;
        }

        .product-card[data-category-id] .count-badge {
            background: var(--primary-color);
            color: white;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .product-card[data-category-id]:hover .count-badge {
            background: var(--primary-dark);
        }

        .product-card[data-category-id] .product-actions {
            margin-top: auto;
        }

        .product-card[data-category-id] .explore-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 8px 16px;
            font-weight: 500;
            font-size: 12px;
            transition: all 0.3s ease;
        }

        .product-card[data-category-id] .explore-btn:hover {
            background: var(--primary-dark);
            color: white;
            transform: translateY(-1px);
        }

        /* Simple scrollbar for categories */
        .products-scroll::-webkit-scrollbar {
            height: 6px;
        }

        .products-scroll::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }

        .products-scroll::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 3px;
        }

        .products-scroll::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }

        .product-image {
            height: 160px;
            background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 48px;
            overflow: hidden;
        }

        .product-image-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-wishlist {
            position: absolute;
            top: 8px;
            right: 8px;
            background: white;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .product-wishlist:hover {
            transform: scale(1.1);
        }

        .product-details {
            padding: 8px;
        }

        .product-name {
            font-weight: 600;
            font-size: 15px;
            color: var(--text-primary);
            margin-bottom: 4px;
            line-height: 1.2;
            height: 36px;
            overflow: hidden;
        }

        .product-price {
            font-size: 16px;
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 8px;
        }

        .product-seller {
            font-size: 12px;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .product-actions {
            display: flex;
            gap: 8px;
            padding: 0 8px 8px;
        }

        .view-product-btn, .add-to-cart-btn {
            flex: 1;
            padding: 8px 12px;
            border: none;
            border-radius: 8px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .view-product-btn {
            background: var(--primary-color);
            color: white;
        }

        .view-product-btn:hover {
            background: var(--primary-dark);
        }

        .add-to-cart-btn {
            background: var(--secondary-color);
            color: white;
        }

        .add-to-cart-btn:hover {
            background: var(--secondary-dark);
        }

        /* Old add-to-cart-btn styles removed - now using product-actions layout */

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 16px 40px 16px;
                border-radius: 0 0 20px 20px;
            }
            
            .brand-title {
                font-size: 28px;
            }
            
            .hero-headline {
                font-size: 24px;
            }
            
            .hero-subtitle {
                font-size: 16px;
            }
            
            .hero-stats {
                gap: 20px;
                justify-content: center;
            }
            
            .hero-stats .stat-number {
                font-size: 24px;
            }
            

        }

        @media (max-width: 480px) {
            .hero-section {
                padding: 50px 12px 30px 12px;
            }
            

        }

        /* How It Works Section */
        .how-it-works-section {
            padding: 48px 0;
            background-color: var(--surface-color);
        }

        .step-card {
            background: white;
            border-radius: 20px;
            padding: 32px 24px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(28, 89, 43, 0.1);
            height: 100%;
            position: relative;
        }

        .step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(28, 89, 43, 0.15);
            border-color: var(--primary-light);
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-color);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px auto 24px;
            color: white;
            font-size: 32px;
        }

        .step-title {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 20px;
            margin-bottom: 16px;
        }

        .step-description {
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 48px 0;
            background: linear-gradient(135deg, var(--background-color) 0%, #e8f5e8 100%);
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 32px 24px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(28, 89, 43, 0.15);
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            color: white;
            font-size: 32px;
            font-weight: 700;
        }

        .testimonial-text {
            color: var(--text-primary);
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 24px;
            font-size: 16px;
        }

        .testimonial-author {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 4px;
        }

        .testimonial-role {
            color: var(--text-secondary);
            font-size: 14px;
            margin: 0;
        }

        /* CTA Section */
        .cta-section {
            padding: 48px 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain2" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain2)"/></svg>');
            opacity: 0.3;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .cta-subtitle {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 18px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .cta-btn-primary {
            background: white;
            color: var(--primary-color);
        }

        .cta-btn-primary:hover {
            background: var(--secondary-light);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .cta-btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-btn-outline:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        /* Stats Section */
        .stats-section {
            padding: 40px 0;
            background-color: var(--surface-color);
        }

        .stat-card {
            text-align: center;
            padding: 32px 16px;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 16px;
            display: block;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 18px;
            font-weight: 500;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .animate-on-scroll.animated {
            opacity: 1;
        }

        .animate-left {
            animation: fadeInLeft 0.8s ease forwards;
        }

        .animate-right {
            animation: fadeInRight 0.8s ease forwards;
        }

        /* Container adjustments for exact Flutter match */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0;
        }

        .row {
            margin: 0;
        }

        .col-lg-6 {
            padding: 0;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .cta-title {
                font-size: 32px;
            }
            
            .cta-subtitle {
                font-size: 18px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            
            .step-card,
            .testimonial-card {
                margin-bottom: 24px;
            }
        }

        /* Horizontal Scroll for Products */
        .products-scroll {
            overflow-x: auto;
            overflow-y: hidden;
            white-space: nowrap;
            padding: 8px 0;
        }

        .products-scroll::-webkit-scrollbar {
            height: 6px;
        }

        .products-scroll::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }

        .products-scroll::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 3px;
        }

        .products-scroll::-webkit-scrollbar-thumb:hover {
            background: var(--primary-light);
        }

        .product-item {
            display: inline-block;
            width: 200px;
            margin-right: 16px;
            white-space: normal;
        }

        .product-item:last-child {
            margin-right: 0;
        }

        /* Horizontal Scroll for Categories */
        .categories-scroll {
            overflow-x: auto;
            overflow-y: hidden;
            white-space: nowrap;
            padding: 8px 0;
        }

        .categories-scroll::-webkit-scrollbar {
            height: 6px;
        }

        .categories-scroll::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }

        .categories-scroll::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 3px;
        }

        .categories-scroll::-webkit-scrollbar-thumb:hover {
            background: var(--primary-light);
        }

        .category-item {
            display: inline-block;
            width: 280px;
            margin-right: 16px;
            white-space: normal;
        }

        .category-item:last-child {
            margin-right: 0;
        }

        /* New styles for subcategories */
        .subcategory-card {
            background: #f9f9f9;
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #eee;
            cursor: pointer;
            height: 100%;
        }

        .subcategory-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-light);
        }

        .subcategory-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            color: white;
            font-size: 28px;
        }

        .subcategory-name {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 5px;
            line-height: 1.2;
            height: 36px;
            overflow: hidden;
        }

        .subcategory-description {
            font-size: 12px;
            color: var(--text-secondary);
            line-height: 1.4;
            height: 48px; /* Adjusted height for multiple lines */
            overflow: hidden;
        }

        .subcategory-count i {
            color: var(--primary-color);
            font-size: 0.9rem;
        }
