.hp-menu-carousel-container2 {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.hp-menu-carousel-wrapper2 {
  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-scrollbar2 {
  display: none; /* Chrome, Safari, Edge */
}

.hp-menu-carousel2 {
  display: flex;
  gap: 10px;
  min-width: max-content;
}

.hp-menu-item2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.hp-menu-item2 img {
  width: 322px;
  margin-bottom: 6px;
  border-radius:5px;
}

.hp-menu-item2 span {
  font-size: 12px;
  color: #333;
}

.hp-carousel-btn2 {
  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-btn2.left {
  left: 0;
}

.hp-carousel-btn2.right {
  right: 0;
}

@media (max-width: 1200px) {
  .hp-menu-item2 {
    min-width:80px;
  }
}
@media (max-width: 768px) {
  .hp-carousel-btn2 {
    display: none;
  }
}