 /* filters */
 .filters-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem 0;
}

  .filters-container .filters {
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .filters-container .filters.show {
    max-height: 500px; /* Adjust as needed */
    opacity: 1;
  }

@media (min-width: 768px) {
    .filters-container .filters {
      max-height: none;
      opacity: 1;
    }
}