  :root {
            --primary-color: #4CAF50;
            --primary-light: #81C784;
            --primary-dark: #388E3C;
            --secondary-color: #FF9800;
            --light-color: #F5F5F5;
            --dark-color: #263238;
            --text-color: #455A64;
        }
        
        body {
            font-family: 'Nunito', sans-serif;
            background-color: #FAFAFA;
            color: var(--text-color);
            line-height: 1.6;
        }
        
        .navbar {
            background-color: white !important;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            padding: 15px 0;
        }
        
        .navbar-brand {
            font-family: 'Instrument Sans', sans-serif;
            font-weight: 600;
            font-size: 1.5rem;
            color: var(--primary-dark) !important;
        }
        
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1.2rem !important;
            color: var(--text-color);
            transition: all 0.3s ease;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-dark) !important;
        }
        
     
        
        .category-card {
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: none;
            position: relative;
            height: 180px;
        }
        
        .category-card img {
            transition: transform 0.5s ease;
            height: 100%;
            object-fit: cover;
        }
        
        .category-card:hover img {
            transform: scale(1.05);
        }
        
        .category-card::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
        }
        
        .category-title {
            position: absolute;
            bottom: 15px;
            left: 15px;
            color: white;
            font-weight: 600;
            z-index: 2;
        }
        
        .product-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .product-img-container {
            height: 200px;
            background-color: #f9f9f9;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
        }
        
        .product-img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }
        
        .discount-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--secondary-color);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .organic-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--primary-color);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .rating {
            color: #FFC107;
            font-size: 0.9rem;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            font-weight: 600;
            padding: 0.6rem 1.5rem;
            border-radius: 8px;
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
        }
        
        .btn-outline-primary {
            color: var(--primary-color);
            border-color: var(--primary-color);
            font-weight: 500;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        .special-offer-card {
            border-radius: 12px;
            overflow: hidden;
            border: none;
        }
        
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 4rem 0 2rem;
            margin-top: 4rem;
        }
        
        .footer-heading {
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .footer-link {
            color: #B0BEC5;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 0.8rem;
        }
        
        .footer-link:hover {
            color: white;
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .newsletter-input {
            border: none;
            border-radius: 8px 0 0 8px !important;
            padding: 12px 15px;
        }
        
        .newsletter-btn {
            border-radius: 0 8px 8px 0 !important;
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        .category-card {
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: none;
            position: relative;
            height: 180px;
        }
        
        .category-card img {
            transition: transform 0.5s ease;
            height: 100%;
            object-fit: cover;
        }
        
        .category-card:hover img {
            transform: scale(1.05);
        }
        
        .category-card::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
        }
        
        .category-title {
            position: absolute;
            bottom: 15px;
            left: 15px;
            color: white;
            font-weight: 600;
            z-index: 2;
        }

        .hero-section-item-single {
            background: linear-gradient(135deg, rgba(76, 175, 80, 0.9) 0%, rgba(56, 142, 60, 0.95) 100%);
            color: white;
            border-radius: 12px;
            padding: 4rem 2rem;
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
        }

        

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .navbar {
            background-color: white !important;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            padding: 15px 0;
        }
        
        .navbar-brand {
            font-family: 'Instrument Sans', sans-serif;
            font-weight: 600;
            font-size: 1.5rem;
            color: var(--primary-dark) !important;
        }
        
        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1.2rem !important;
            color: var(--text-color);
            transition: all 0.3s ease;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-dark) !important;
        }