/* Общий контейнер лайтбокса */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

#lightbox.show {
  opacity: 1;
  pointer-events: auto;
  z-index: 111;
}

/* Полупрозрачный фон */
#overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
}

.content__wrap {
  max-width: 85%;
  max-height: 85%;
  height: 100%;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  transform: scale(0.9);
}

#lightbox.show .content__wrap {
  transform: scale(1);
}

/* Картинка */
#lightbox-img {
  background: #fff;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: scale-down;
}

/* Кнопка закрыть */
#close-btn {
  height: 78px;
  width: 78px;
  position: absolute;
  top: -27px;
  right: -27px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--White, rgba(255, 255, 255, 1));
  cursor: pointer;
  border-radius: 39px;
  backdrop-filter: blur(44px);
  transition: all 0.3s;
}

#close-btn:hover {
  transform: scale(1.1);
}

@media (max-width:768px) {
  #close-btn {
    top: -10px;
    right: -10px;
    height: 32px;
    width: 32px;
  }
}