/* .container {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #eeeeee;
} */

/* .content-box {
  width: 1800px;
  display: flex;
  align-items: center;
  gap: 20px;
} */
/* 
.card {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
} */

/* .action-btns {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 50px;
}

.action-btns button {
  font-size: 15px;
  font-weight: 500;
  color: #002d36;
  background-color: #99c6cf;
  border-radius: 6px;
  padding: 10px 25px;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
}

.action-btns button:hover {
  color: #ffffff;
  background-color: #002d36;
} */

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for Firefox */
.hide-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}


.hide-scrollbar {
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
}

/* HorizontalSlider.css - ADD THESE STYLES */

/* Fix image container */
.category-image-container {
  background-color: #f8f9fa !important; /* Light gray instead of black */
  position: relative;
  overflow: hidden;
}

/* Image styling */
.category-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #f8f9fa; /* Fallback color */
  transition: opacity 0.3s ease-in-out;
}

/* Loading state */
.category-image-container img:not([src]),
.category-image-container img[src=""],
.category-image-container img[src^="data:image/svg"] {
  opacity: 1; /* Show placeholder immediately */
}

/* Add loading animation */
@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.loading-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
}

/* Ensure no black backgrounds */
.slider-item {
  background: transparent !important;
}

/* Fix the image circle */
.relative.w-20.h-20.rounded-2xl {
  background-color: #f8f9fa !important;
  border: 2px solid #e9ecef !important;
}

/* On hover */
.relative.w-20.h-20.rounded-2xl:hover {
  background-color: #ffffff !important;
  border-color: #ff6b6b !important;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for Firefox */
.scrollbar-hide {
  scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;  /* Safari and Chrome */
}

/* Smooth scrolling */
.scroll-smooth {
  scroll-behavior: smooth;
}

/* Hover animations */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 107, 107, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.8);
  }
}

.pulse-glow {
  animation: pulse-glow 2s infinite;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .horizontal-slider-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}