.category-slider {
  display: flex;
  overflow-x: auto;
  gap: 25px;
  padding-bottom: 10px;
  scroll-behavior: smooth;
}

.category-slider::-webkit-scrollbar {
  display: none; /* hide scrollbar */
}

.category-item {
  flex: 0 0 auto;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.category-item img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item p {
  margin-top: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  color: #333;
}

.category-item:hover img {
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.category-item:hover p {
  color: #007bff;
  font-weight: 600;
}
