.hp-menu-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.hp-menu-carousel-wrapper {
  overflow-x: auto;
  padding: 10px;
  background: #f9f9f9;
  border-radius: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  flex: 1;
}

.hp-menu-carousel-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.hp-menu-carousel {
  display: flex;
  gap: 10px;
  min-width: max-content;
}

.hp-menu-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  text-align: center;
  box-shadow: 0 0 0 1px #eee;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.hp-menu-item:hover {
  background-color: #f0f0f0;
}

.hp-menu-item img {
  width: 35px;
  height: 35px;
  margin-bottom: 6px;
}

.hp-menu-item span {
  font-size: 12px;
  color: #333;
}

.hp-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  padding: 5px 10px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.hp-carousel-btn.left {
  left: 0;
}

.hp-carousel-btn.right {
  right: 0;
}

@media (max-width: 1200px) {
  .hp-menu-item {
    min-width:80px;
  }
}
@media (max-width: 768px) {
  .hp-carousel-btn {
    display: none;
  }
}