
        :root {
            /* --accent1: #4A593D; Dark green */
            /* --text-light: #f1f1f1; */
            /* --text-dark: #333; */
            --highlight: #8a7862; /* Earth tone */
            /* --price-color: #c0392b; */
            /* --sale-color: #e74c3c; */
            --border-color: #e0e0e0;
            --sidebar-width: 280px;
        }
        
        
        
          body {
            background-color: var(--primary);
            color: #f1f1f1;
            padding: 0;
            margin: 0;
        }
          
        .container {
            max-width: 100%;
            margin: 0 auto;
            padding: 20px;
            background-color: var(--primary);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        /* Breadcrumbs */
        .breadcrumbs {
            font-size: 14px;
            margin-bottom: 20px;
            color: #1b1b1b;
        }
        
        .breadcrumbs a {
            color: #1b1b1b;
            text-decoration: none;
        }
        
        /* Main Content Layout */
        .content-wrapper {
            display: flex;
            gap: 30px;
            background-color: var(--primary);
        }
        
        /* Sidebar Filters */
        .sidebar {
            width: var(--sidebar-width);
            flex-shrink: 0;
            background-color: var(--accent3);
            height: fit-content;
            margin-top: 15px;
        }
        
        .filter-section {
            background-color: var(--accent3);
            color: #1b1b1b;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            height: fit-content;
        }
        
        .filter-section h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: var(--accent1);
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 10px;
        }
        
        .filter-group {
            margin-bottom: 20px;
        }
        
        .filter-group h4 {
            font-size: 16px;
            margin-bottom: 10px;
            color: #1b1b1b;
        }
        
        .filter-options {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .filter-option {
            display: flex;
            align-items: center;
        }
        
        .filter-option input[type="checkbox"] {
            margin-right: 10px;
        }
        
        .filter-option label {
            color:#1b1b1b;
            cursor: pointer;
        }
        
        .price-range-inputs {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        
        .price-range-inputs input {
            width: 100%;
            padding: 8px 12px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
        }
        
        .apply-filters {
            width: 100%;
            padding: 10px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            margin-top: 10px;
        }
        
        .apply-filters:hover {
            background-color: var(--highlight);
        }
        
        /* Main Content */
        .main-content {
            flex-grow: 1;
        }
        
        /* Page Header */
        .page-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 5px;
            flex-wrap: wrap;
        }
        
        .page-title {
            font-size: 28px;
            color: #1b1b1b;
            margin-right: 20px;
        }
        
        /* Product Grid */
        .product-count {
            font-size: 14px;
            color: #1b1b1b;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .product-card {
            background-color: #fff;
            border-radius: 0;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            margin: 0 auto;
            height: auto;
            width: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            border: 2px solid #fff;
            cursor: pointer;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
        }
        
        .product-image {
            aspect-ratio: 20 / 21;
            background-color: #f5f5f5;
            position: relative;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: #e74c3c;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            z-index: 3;
        }
        
        .product-info {
            padding: 16px 14px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            background-color: #d4c5a9;
        }

        .product-title {
            font-size: 16px;
            font-weight: 500;
            color: #3a3a3a;
            margin-bottom: 4px;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .product-title a {
            color: inherit;
            text-decoration: none;
        }
        
        .product-price  {
            font-size: 16px;
            font-weight: 400;
            color: #3a3a3a;
            margin-bottom: 4px;
            letter-spacing: 0.3px;
        }

        .product-pricing {
            margin-bottom: 4px;
        }

        .product-original-price {
            text-decoration: line-through;
            color: #777;
            font-size: 12px;
            font-weight: normal;
        }

        .product-rating {
            margin-bottom: 10px;
        }

        .product-rating .star {
            color: #4A593D;
            font-size: 14px;
            margin-right: 1px;
        }

        .product-rating .star.empty {
            color: #b0a890;
        }

        .product-sold-by {
            font-size: 15px;
            color: #3a3a3a;
            margin-bottom: 4px;
        }

        .product-sold-by .vendor-link {
            color: #3a3a3a;
            text-decoration: underline;
            font-weight: 700;
        }

        .product-sold-by .vendor-link:hover {
            color: #4A593D;
        }

        .product-from {
            font-size: 14px;
            color: #555;
        }
        
        .buy-btn {
            display: none;
        }

        .out-of-stock-btn {
            display: none;
        }
        
        /* Sort Options */
        .sort-options {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 20px;
        }
        
        .sort-options select {
            padding: 8px 12px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            background-color: var(--accent2);
            color: var(--text-dark);
        }
        
        /* Mobile Menu Toggle */
        .mobile-filter-toggle {
            display: none;
            padding: 10px 15px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 4px;
            margin-bottom: 15px;
            font-weight: 600;
            cursor: pointer;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .content-wrapper {
                flex-direction: column;
            }
            
            .sidebar {
                width: 100%;
                position: relative;
            }
            
            .mobile-filter-toggle {
                display: block;
            }
            
            .filter-section {
                display: none;
            }
            
            .filter-section.active {
                display: block;
            }
        }
        
        @media (max-width: 768px) {
            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 12px;
            }
            
            .page-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .page-title {
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .product-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .product-info {
                padding: 10px;
            }

            .product-title {
                font-size: 14px;
            }

            .product-price {
                font-size: 14px;
            }
        }
    