/* Wrapper for the whole brand bar */
.horizontal-brands-wrapper {
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
  background-color: #f9f9f9;
  width: 100%; 
  box-sizing: border-box;
  overflow: hidden;
}

/* Brands container - horizontal scroll */
.brands-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transition: transform 0.5s linear;
  width: max-content;
  margin: 0 auto;
}

/* When scrolling is active */
.brands-list.scrolling {
  animation: scroll-brands 30s linear infinite;
}

/* Pause animation on hover */
.brands-list.scrolling:hover {
  animation-play-state: paused;
}

@keyframes scroll-brands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Individual brand item */
.brand-item {
  display: inline-block;
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.brand-item:hover {
  opacity: 0.7;
}

/* Brand title text */
.brand-title {
  font-family: 'Montserrat', 'Futura', 'Trebuchet MS', Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #555;
  padding: 10px 15px;
  line-height: 1.2;
  text-align: center;
  display: block;
  white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .brand-title {
    font-size: 16px;
    padding: 8px 12px;
  }
  
  .brands-list {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .brand-title {
    font-size: 14px;
    padding: 6px 10px;
  }
  
  .brands-list {
    gap: 10px;
  }
}
