body.gallery-open {
  overflow: hidden;
}

.mobile-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
}

.mobile-gallery-modal.is-open {
  display: flex;
}

.mobile-gallery-modal img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
}

/* Кнопка закрытия */
.mobile-gallery-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

/* Стрелки */
.mobile-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 70px;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 48px;
  cursor: pointer;
}

.mobile-gallery-prev {
  left: 20px;
}

.mobile-gallery-next {
  right: 20px;
}