/* Lightbox Styles */
.eptep-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.96);
  z-index: 9999;
  overflow-y: auto;
}

.eptep-lightbox.active {
  display: flex;
  animation: eptep-fadeIn 0.3s ease;
}

@keyframes eptep-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.eptep-lightbox-container {
  position: relative;
  margin: auto;
  padding: 20px;
  max-width: 90%;
  max-height: 90vh;
}

.eptep-lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: eptep-scaleUp 0.3s ease;
}

@keyframes eptep-scaleUp {
  from {
    transform: scale(0.95);
  }
  to {
    transform: scale(1);
  }
}

.eptep-close-btn {
  position: fixed;
  top: 25px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  transition: opacity 0.2s;
  z-index: 10000;
}

.eptep-close-btn:hover {
  opacity: 0.8;
}

.eptep-img-caption {
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
  margin-top: 15px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

@media (max-width: 768px) {
  .eptep-close-btn {
    top: 15px;
    right: 20px;
    font-size: 35px;
  }

  .eptep-img-caption {
    font-size: 1rem;
  }
}
