.brands-carousel {
  padding: 40px 0;
  overflow: hidden;
}

.brands-carousel__wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.brands-carousel__track {
  display: flex;
  width: max-content;
  will-change: transform; /* Оптимізація для анімації */
  animation: scroll 30s linear infinite; /* Безкінечна анімація */
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 4));
  }
}

.brands-carousel__item {
  flex: 0 0 auto;
  padding: 0 20px;
}

.brands-carousel__logo-wrapper {
  width: 210px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brands-carousel__logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(80%) brightness(80%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.brands-carousel__item:hover .brands-carousel__logo {
  filter: grayscale(0%) brightness(100%);
  transform: scale(1.1);
}

/* Адаптивність */
@media (max-width: 768px) {
  .brands-carousel {
    padding: 20px 0;
  }

  .brands-carousel__item {
    padding: 0 15px;
  }

  .brands-carousel__logo-wrapper {
    width: 160px;
    height: 110px;
  }

  .brands-carousel__track {
    animation-duration: 25s; /* Швидший скрол на менших екранах */
  }
}

@media (max-width: 480px) {
  .brands-carousel__item {
    padding: 0 10px;
  }

  .brands-carousel__logo-wrapper {
    width: 80px;
    height: 30px;
  }

  .brands-carousel__track {
    animation-duration: 20s; /* Ще швидший скрол */
  }
}
