:root {
            --primary-color: #1b5e20;
            --secondary-color: #e65100;
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #f9f9f9;
            --border-color: #e0e0e0;
            --card-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: #fff;
            color: var(--text-dark);
        }

      
        .hero-banner {
            /* background: linear-gradient(90deg, #fdfbf7 0%, #f5eedc 100%); */
            padding: 75px 0px;
            background-size: 100%;
            background-repeat: no-repeat;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
           
            overflow: hidden;
        }

        .hero-content {
            max-width: 50%;
            z-index: 2;
            padding: 0px 5%;
        }

        .breadcrumbs {
            font-size: 13px;
            color: var(--text-light);
            margin-bottom: 15px;
        }

        .hero-content h1 {
            font-size: 38px;
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 15px;
        }

        .hero-content p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
        }

        .hero-image-placeholder {
            width: 45%;
            display: flex;
            justify-content: flex-end;
            position: relative;
        }

        /* Graphic representation of the rice sack visual images */
     
        
  
        /* --- Main Content Layout --- */
        .main-container {
            display: grid;
            grid-template-columns: 260px 1fr;
            gap: 30px;
            padding: 40px 5%;
        }

        /* --- Sidebar Filters --- */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .filter-widget {
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 20px;
        }

        .widget-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            padding-bottom: 10px;
            /* border-bottom: 2px solid var(--bg-light); */
        }

        .category-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .category-list li a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.3s;
        }

        .category-list li a i {
            color: var(--text-light);
            width: 20px;
        }

        .category-list li.active a {
            background-color: #edf4ee;
            color: var(--primary-color);
            font-weight: 600;
        }

        .category-list li.active a i {
            color: var(--primary-color);
        }

        .category-list li a:hover {
            background-color: var(--bg-light);
            color: var(--primary-color);
        }

        .why-choose-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .why-choose-list li {
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .why-choose-list li i {
            color: var(--primary-color);
            font-size: 16px;
        }

        /* --- Products Toolbar --- */
        .products-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .toolbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
        }

        .results-count {
            color: var(--text-light);
        }

        .toolbar-controls {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .sort-select {
            padding: 8px 15px;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            outline: none;
            background-color: white;
            color: var(--text-dark);
            cursor: pointer;
        }

        .view-toggle {
            display: flex;
            gap: 5px;
        }

        .view-btn {
            width: 35px;
            height: 35px;
            border: 1px solid var(--border-color);
            background: white;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 6px;
            cursor: pointer;
            color: var(--text-light);
        }

        .view-btn.active {
            color: var(--secondary-color);
            border-color: var(--secondary-color);
            background-color: #fffaf5;
        }

        /* --- Product Grid --- */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }

        .product-card {
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            background-color: white;
            box-shadow: var(--card-shadow);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .card-image-wrapper {
            height: 200px;
            background-color: #e2f0d9; /* Base representation of colored card header */
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        /* Custom decorative gradient look mirroring image styles */
        .product-card:nth-child(2) .card-image-wrapper { background-color: #fce4d6; }
        .product-card:nth-child(3) .card-image-wrapper { background-color: #fff2cc; }
        .product-card:nth-child(4) .card-image-wrapper { background-color: #e2f0d9; }
        .product-card:nth-child(5) .card-image-wrapper { background-color: #e2f0d9; }
        .product-card:nth-child(6) .card-image-wrapper { background-color: #dfebf7; }

        /* Icon badge overlapping the image section */
        .card-badge-icon {
            position: absolute;
            bottom: -20px;
            left: 20px;
            width: 40px;
            height: 40px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            color: var(--primary-color);
            font-size: 18px;
            z-index: 2;
        }

        .card-content {
            padding: 30px 20px 20px 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .product-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .product-desc {
            font-size: 12px;
            color: var(--text-light);
            line-height: 1.5;
            min-height: 36px;
        }

        .view-products-btn {
            align-self: flex-start;
            text-decoration: none;
            color: var(--primary-color);
            font-size: 13px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
            margin-top: 5px;
            border: 1px solid var(--border-color);
            padding: 6px 14px;
            border-radius: 20px;
            transition: all 0.3s;
        }

        .view-products-btn:hover {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        /* --- Value Proposition Footer Banner --- */
        .value-banner {
            background-color: var(--bg-light);
            border-top: 1px solid var(--border-color);
            padding: 30px 5%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .value-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .value-item i {
            font-size: 28px;
            color: var(--primary-color);
        }

        .value-text h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .value-text p {
            font-size: 12px;
            color: var(--text-light);
        }

        /* --- Responsive Tweaks --- */
        @media (max-width: 992px) {
            .main-container {
                grid-template-columns: 1fr;
            }
            .sidebar {
                display: none; /* Hide sidebar filters on tablet/mobile for preview clean layout */
            }
            .hero-banner {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            .hero-content {
                max-width: 100%;
            }
            .hero-image-placeholder {
                width: 100%;
                justify-content: center;
            }
            .hero-banner{padding: 30px 0px;}
        }


        @media (max-width:580px){
                 .hero-banner {
                /* background: linear-gradient(90deg, #fdfbf7 0%, #f5eedc 100%); */
                padding: 20px 0px;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                display: flex;
                justify-content: space-between;
            }
        }