.container.brands-carousel {
    margin-top: 45px;
  }
  
  #brands {
    align-items: center;
    background-color: #fff;
    display: flex;
    justify-content: center;
    margin: 20px auto 0;
    height: 80px;
  }
  
  .brands_carousel_title {
    text-align: center;
  }
  
  /* Contenitore fisso per ogni immagine */
  .brand-box {
    width: 135px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    margin: 0 10px;
    position: relative;
    padding: 10px;
    border-radius: 5px;
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  
  .brand-box:hover {
    border: 1px inset #f5f5f5;
  }
  
  /* Immagini dei brand */
  .brands-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    margin: auto;
  }
  
  .slick-brand-carousel {
    visibility: hidden;
  }
  
  .slick-initialized {
    visibility: visible;
  }
  
  .slick-next.slick-arrow svg {
    display: none !important;
  }
  
  /* Box statico per "Altri brands" */
  .other-brands-box {
    background: #f9f9f9;
    border: 1px dashed #ccc;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    width: 135px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 20px auto 0; 
    padding: 10px;
    border-radius: 5px;
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  
  .other-brands-box:hover {
    border: 1px solid #bbb;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .other-brands-text {
    text-align: center;
    color: #333;
  }
  
  @media (max-width: 980px) {
    .slick-prev,
    .slick-next {
      display: none !important;
    }
  }
  
  @media (max-width: 820px) {
    .container.brands-carousel {
      margin-top: 15px;
    }
    #brands {
      margin: 0;
    }
    .brands_carousel_title {
      margin-bottom: 15px;
    }
    .brand-box {
      width: 130px;
      height: 40px;
    }
  }
  @media (max-width: 480px) {
    .container.brands-carousel {
      margin-top: 5px;
    }
    #brands {
      margin-bottom: 20px;
      height: 50px;
    }
  }
  