.brands-slider {
  position: relative;
  width: 100%;
  padding: 4em 0 8em 0;
  background: var(--color-bg);
  overflow: hidden;
  z-index: 1;
}

.brands-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3em;
  padding: 0 1.5em;
  z-index: 1;
}

.brands-container .callout {
  margin-left: calc((100% - 85%) / 6 * 2);
}

.brands-track {
  position: relative;
  display: flex;
  gap: 2em;
  animation: scroll 30s linear infinite;
  width: max-content;
  z-index: 1;
}

.brands-track:hover {
  animation-play-state: paused;
}

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

.brand-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 1.5em 2.5em;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  min-width: 200px;
  justify-content: center;
  z-index: 1;
}

.brand-item:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 138, 95, 0.3);
  box-shadow: 0 10px 30px rgba(26, 88, 65, 0.2);
  background: linear-gradient(135deg, rgba(45, 138, 95, 0.1) 0%, rgba(26, 88, 65, 0.1) 100%);
}

.brand-item ion-icon {
  font-size: 28px;
  color: #fff;
  transition: all 0.3s ease;
  pointer-events: none;
}

.brand-item:hover ion-icon {
  color: #2d8a5f;
  transform: scale(1.1);
}

.brand-item span {
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  pointer-events: none;
}

.brand-item:hover span {
  color: #fff;
}

@media (max-width: 900px) {
  .brands-slider {
    padding: 3em 0 6em 0;
  }

  .brands-container .callout {
    margin-left: 0;
    margin-bottom: 1em;
  }

  .brand-item {
    min-width: 180px;
    padding: 1.25em 2em;
  }

  .brand-item ion-icon {
    font-size: 24px;
  }

  .brand-item span {
    font-size: 13px;
  }

  .brands-track {
    gap: 1.5em;
  }
}

