.brand-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.brand-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.brand-item {
  flex: 0 0 calc(100% / 6);
  padding: 10px;
  cursor: pointer;
}

.brand-item > div, .brand-item img {
  width: 100%;
}

.brand-item img {
  border: 1px solid #ddd;
  border-radius: 12px;
  background: white;
  padding: 20px;
  height: 90px;
  object-fit: contain;
  transition: all 0.25s ease;
}

.brand-item.active img, .brand-item:hover img {
  border-color: var(--sw-orange);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.carousel-control {
  border: none;
  background: #4d3b3b;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
}

.brand-info-panel {
  background: white;
  /*border-radius: 16px;*/
  padding: 30px;
}

/* RESPONSIVE */

@media (max-width: 1199px) {
  .brand-item {
    flex-basis: calc(100% / 5);
  }
}

@media (max-width: 991px) {
  .brand-item {
    flex-basis: calc(100% / 4);
  }
}

@media (max-width: 767px) {
  .brand-item {
    flex-basis: calc(100% / 3);
  }
}

@media (max-width: 575px) {
  .brand-item {
    flex-basis: calc(100% / 2);
  }
}

@media (max-width: 575px) {
  .carousel-control {
    display: none;
  }
}

/* CHEVRONS */

.chevron {
  display: block;
  width: 14px;
  height: 14px;
  border-top: 3px solid #222;
  border-right: 3px solid #222;
  margin: auto;
}

.chevron-left {
  transform: rotate(-135deg);
}

.chevron-right {
  transform: rotate(45deg);
}

/* OPTIONAL BUTTON HOVER */

.carousel-control {
  transition: background 0.25s ease, transform 0.25s ease;
}

.carousel-control:hover {
  transform: scale(1.08);
}

.carousel-control:hover .chevron {
  border-color: #0d6efd;
}

