.gallery-container {
  max-width: 1000px;
  margin: auto;
}

.main-image {
  width: 100%;
  object-fit: contain;
  border: 2px solid #ccc;
  background: #fff;
  z-index: 1;
}


.thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thumbnails img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
  background: #fff;
}

.thumbnails img:hover {
  border-color: #555;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.9);
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border: 4px solid white;
  background: white;
}

.main-image-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-height: 80vh;
}

.arrow-button {
  position: absolute;
  width: 60px;
  height: 60px;
  border: none;
  background-color: white;
  color: #84b315;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-button:hover {
  background: #84b315;
  color: white;
}

.arrow-button.left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.arrow-button.right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}