.custom-carousel-container {
  width: 100%;
  padding-bottom: 30px;
}
.custom-scroll-wrapper {
  display: flex;
  gap: 0px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  scrollbar-width: none;
}
.custom-scroll-wrapper::-webkit-scrollbar {
  display: none;
}
.card {
  flex-shrink: 0;
  width: 280px;
  text-align: center;
}
.card-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  margin-bottom: 10px;
}
.card-label {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
.custom-nav-controls {
  display: flex;
  justify-content: center;
  gap: 0px;
  margin-top: 20px;
}
.custom-nav-arrow {
  padding: 0px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.custom-nav-arrow:hover {
  transform: scale(1.2);
}
