.gallery-container {
  position: relative;
  overflow: hidden;
  padding: 1rem;
}

.gallery-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
}

.gallery {
  display: flex;
  gap: 1rem;
}

.gallery-item {
  flex: 0 0 auto;
  width: 250px;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.scroll-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 5px;
}

.scroll-btn.left {
  left: 0;
}

.scroll-btn.right {
  right: 0;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.lightbox-content h3 {
  margin: 1rem 0 0.5rem;
}

.lightbox-content p {
  margin: 0;
}

.close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 2rem;
  cursor: pointer;
  color: #444;
}
