/* Carousel Styles */
:root {
  --carousel-item-width: 200px;
  --carousel-item-height: 64px;
  --carousel-gap: 15px;
}

/* Carousel Container */
.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 32px 0;
}

/* Carousel Track */
.carousel {
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: var(--carousel-gap);
  will-change: transform;
  height: 80px;
  align-items: center;
}

/* Carousel Items */
.carousel-item {
  flex: 0 0 var(--carousel-item-width);
  height: var(--carousel-item-height);
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
  padding: 0 15px;
  text-align: center;
  font-weight: 500;
  color: var(--text-color);
  text-decoration: none;
  font-size: 14px;
}

.carousel-item:hover {
  background: var(--color-secondary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Adaptations */
@media (max-width: 768px) {
  :root {
    --carousel-item-width: 160px;
    --carousel-item-height: 70px;
    --carousel-gap: 10px;
  }

  .carousel-item {
    font-size: 18px;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  :root {
    --carousel-item-width: 140px;
    --carousel-item-height: 60px;
  }

  .carousel-item {
    font-size: 18px;
  }
}

/* Hide scrollbar */
.carousel::-webkit-scrollbar {
  display: none;
}

.carousel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}