#products {
    padding: 20px;
   
  }
  
  .prod-home {
   
    margin-bottom: 20px;
    text-align: center;
  }
  
  #filterBtn {
    margin-bottom: 20px;
    padding: 10px;
    width: 90px;
    height : 50px;
}

.filter-content {
    display: flex;
    align-items: center;
}

.filter-content svg {
   margin-right:  10px; /* Adjust the spacing between the icon and the text */
}

  
.product-categories {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.category {
    border: 1px solid #ddd;
    padding: 20px;
    width: 30%;
    text-align: center;
}

.category-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; /* Adjust the spacing between images */
}

.category-images img {
    max-width: 100%; /* Ensure the images don't exceed the container's width */
    height: auto; /* Maintain aspect ratio */
    width: calc(33.333% - 10px); /* Three images per row with space */
}
  
.product-head {
    text-align: center;
}