 .product-list {
            display: flex;
            flex-wrap: wrap;
        }
        .prdct-sim-box {
            padding:0px 20px 0px 20px;
        }
        .product {
           padding:10px 0px 10px 0px;
           border-bottom:5px solid #e2e2e2;
        }
        .product img {
            max-width: 100%;
            height: auto;
        }
        .product h3 {
            font-size: 1.2em;
            margin: 10px 0;
        }
        .product p {
            color: #555;
        }
        .product .price {
            font-weight: bold;
            color: #000;
        }
        #more-button {
            margin-top: 20px;
            margin-bottom: 50px;
            padding: 10px 15px;
            font-size: 16px;
            cursor: pointer;
        }
        #filter-options {
            margin-bottom: 20px;
        }
        a {
            text-decoration: none;
            color: inherit; /* Ensures the link inherits color */
        }
        
        
         /* Hide the spinner by default */
        #loading-spinner {
            display: none;
            position: fixed;
            z-index: 2000;     
            top: 50%;
            left: 50%;
            border: 4px solid #f3f3f3; /* Light grey */
            border-top: 4px solid #3498db; /* Blue */
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
            box-sizing:border-box;
        }

        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* Optional: Add a semi-transparent overlay */
        body.loading::after {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.7);
            z-index: 2000;        
            box-sizing:border-box;    
            
        }
        
        
         .crd-boox {
            background-color: white;        
            padding:0px 0px 0px 0px;            
            box-sizing:border-box;                
        }
         .containerofr {
            display: flex;
            width: 100%;                        
            padding:0px 20px 0px 20px;        
            box-sizing:border-box;   
            background-color:white;            
        }
.boxlft {
            flex: 40%;
            display: flex;
            background-color: ;            
            align-items: center;
            line-height:0px;
            padding:10px 0px 10px 0px;           
        }    
.boxrgt {
            flex: 60%;
            background-color: ;
            display: flex;
            flex-direction: column;            
            
            align-items: left;
            padding:10px 0px 0px 10px;           
        }    
        
        
        
        /* The button to open the popup */
        .open-btn {                        
            background-color:white;
            color: black;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            z-index: 1000;
        }

        /* Popup container (hidden by default) */
        .filter-popup {
            position: fixed;
            bottom: -100%; /* Initially hidden below the screen */
            left: 0;
            width: 100%;
            
            background-color: white;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            transition: bottom 0.3s ease-in-out;
            z-index: 999;
            
            box-sizing:border-box;
        }

       

       

        /* Close button for the popup */
        .filter-popup .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
            color: #333;
            background: transparent;
            border: none;
            cursor: pointer;
        }

        /* Overlay behind the popup to close when clicked outside */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            visibility: hidden; /* Hidden by default */
            z-index: 998;
        }

        .overlay.active {
            visibility: visible; /* Show overlay when active */
        }
        
        
         /* Filter Section Styling */
        #filter-options {
            background-color: #fff;
            padding: 20px 0px 20px 20px;
            overflow:auto;                        
        }

        #filter-options label {
            
            margin-bottom: 20px;
            display: block;
            color: #555;
        }

        #filter-options input[type="number"], 
        #filter-options select {
            padding: 8px;
            margin-right: 10px;
            width: 150px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 14px;
        }

        #filter-options input[type="checkbox"] {
            margin-right: 5px;
        }