.carousel-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
  box-sizing: border-box;
}

.carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  scroll-behavior: smooth;
}

.carousel-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: clamp(240px, 25%, 300px);
  box-sizing: border-box;
}

.gallery-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .gallery-image {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .gallery-image {
    height: 140px;
  }
}
