/* components/ImageCarousel.css */
.image-carousel {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* For iOS */
}

.carousel-slide {
  height: 100vh;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.slide-content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.slide-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 80%;
  z-index: 10;
}

.slide-overlay h2 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
  letter-spacing: 2px;
}

.slide-overlay h1 {
  font-size: 2.5rem;
  margin: 0.5rem 0;
  line-height: 1.2;
}

.slide-overlay p {
  font-size: 1rem;
  margin: 0.5rem 0;
}

.price {
  font-size: 3.5rem;
  font-weight: bold;
  color: #ffdd57;
  margin: 0.5rem 0;
}

.price span {
  font-size: 1.5rem;
  vertical-align: super;
}

.live-now-btn {
  background: #ffdd57;
  color: #333;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.2s;
}

.live-now-btn:hover {
  background: #ffcc00;
}

/* Hide scrollbar (optional) */
.image-carousel::-webkit-scrollbar {
  display: none;
}

.image-carousel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.slide-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(45deg, #4e008c, #7b00d3); /* Fallback */
}