/* Scroll alanı (otomatik kaydırma yok artık) */
#brandSlider {
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
}
#brandSlider::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* Logo stilleri */
.logo-img {
  max-height: 80px;
  object-fit: contain;
}

/* Ok butonları */
.brand-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  color: #333;
  transition: 0.3s;
}
.brand-scroll-btn:hover {
  background: #eee;
}
.brand-scroll-btn.left { left: 10px; }
.brand-scroll-btn.right { right: 10px; }
