#brandfilter > h2 {
    font-weight: normal;
    font-size: 15px;
}
.brandfilter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .brandfilter-item {
    width: 70px;
    text-align: center;
    
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  
  .brandfilter-item img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .brandfilter-item img:hover {
    border-color: #ff6600;
  }
  
  .brandfilter-item a {
    display: block;
    font-weight: 300;
    font-size: 0.9rem;
    color: inherit;
    text-decoration: none;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 3px;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding: 5px;
  }
  
  .brandfilter-item a:hover {
    border-color: #ff6600;
  }