.ggp-gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.ggp-gallery-item:hover {
  transform: scale(1.02);
}

.ggp-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
}

.ggp-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.ggp-gallery-item:hover .ggp-gallery-overlay {
  opacity: 1;
}

.ggp-gallery-title {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.ggp-gallery-description {
  margin: 0;
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
}

/* Lightbox */
.ggp-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
}

.ggp-lightbox.active {
  display: flex;
}

.ggp-lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.ggp-lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  z-index: 1;
}

.ggp-lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  border-radius: 8px;
}

.ggp-lightbox-info {
  text-align: center;
  margin-top: 20px;
}

.ggp-lightbox-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.ggp-lightbox-description {
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
}

.ggp-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
  z-index: 2;
  width: 50px;
  height: 50px;
  line-height: 1;
}

.ggp-lightbox-prev,
.ggp-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
  z-index: 2;
  width: 50px;
  height: 50px;
}

.ggp-lightbox-prev {
  left: 20px;
}

.ggp-lightbox-next {
  right: 20px;
}

.ggp-lightbox-counter {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  z-index: 2;
}