/* Brand slider */
.cf-brand-slider-track { display: flex; gap: 0; overflow-x: auto; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 2px 0; }
.cf-brand-slider-track::-webkit-scrollbar { display: none; }
.cf-brand-slide { flex: 0 0 auto; background: transparent; border-radius: 6px; display: flex; align-items: center; justify-content: center; padding: 4px 8px; min-height: 80px; transition: opacity 0.2s; text-decoration: none; }
.cf-brand-slide:hover { background: transparent; opacity: 0.7; }
.cf-brand-slide img { max-width: 180px; max-height: 120px; object-fit: contain; }
.cf-brand-slider-nav { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.cf-brand-slider-nav button { background: rgba(0,0,0,0.1); border: none; color: #333; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.cf-brand-slider-nav button:hover { background: #E75C3A; color: #fff; }
@media (max-width: 768px) {
  .cf-brand-slide { padding: 4px 6px; }
  .cf-brand-slide img { max-width: 130px; max-height: 80px; }
  .cf-brand-slider-nav { display: none; }
}