/* Image lightbox zoom styles */
.golog-lightbox-trigger {
  cursor: zoom-in;
}

.golog-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  transition: opacity 0.25s ease;
  padding: 1rem;
}

.golog-lightbox.active {
  opacity: 1;
}

.golog-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.golog-lightbox.active img {
  transform: scale(1);
}

.golog-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
  user-select: none;
}

.golog-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}
