
        :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(--accent1);
            color: #f1f1f1;
            padding: 0;
            margin: 0;
        }
          
        .container {
            max-width: 100%;
            margin: 0 auto;
            padding: 20px;
            background-color: var(--accent1);
            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(--accent1);
        }
        
        /* Sidebar Filters */
        .sidebar {
            width: var(--sidebar-width);
            flex-shrink: 0;
            background-color: var(--accent3);
            height: fit-content;
            opacity: 0.7;
            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(--accent1);
            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(250px, 1fr));
            gap: 15px;
            margin-bottom: 40px;
            
        }
        
        .product-card {
            background-color: var(--accent3);
            border-radius: 8px;
            overflow: hidden;
            /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            opacity: 0.7;

        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .product-image {
            height: 200px;
            /* background-color:var(--accent1); */
            position: relative;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--accent3);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
        }
        
        .product-info {
            padding: 15px;
        }
        
        .product-title *{
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #1b1b1b;
        }
        
        .product-brand, .product-type {
            font-size: 14px;
            color: #1b1b1b !important;
            margin-bottom: 5px;
            font-weight: 400;
        }
        
        .product-price  {
            font-size: 18px;
            font-weight: bold;
            color: #1b1b1b !important;
            margin-bottom: 15px;
        }
        
        .buy-btn {
            display: block;
            width: fit-content;
            height: 40px;
            padding: 5px;
            background-color: var(--accent2);
            color: #1b1b1b;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            position: absolute;
            bottom: 0.5px;
            right: 1px;
           ;
           
        }
        
        .buy-btn:hover {
            background-color: var(--accent2);
            color: #f1f1f1;
            border: var(--accent4) 1px solid;
            border-radius: 4px;
            height: 40px;
        }
        
        /* 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(--accent1);
            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(1fr, 1fr));
                gap: 15px;
            }
            
            .page-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .product-card{
                width: 98%;
                margin: auto;
            }
            .page-title {
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .product-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .product-image {
                height: 150px;
            }

            .product-card{
                width: 98%;
                margin: auto;
            }
        }
    