.gsp-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.gsp-main img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  transition: opacity 0.4s ease;
}

.gsp-thumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
}

.gsp-thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 6px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.gsp-thumb:hover,
.gsp-thumb.active {
  opacity: 1;
  transform: scale(1.05);
  border: 2px solid #706CFA;
}
