.hc-lightbox-image {
  cursor: zoom-in;
}

.hc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(0, 0, 0, 0.88);
}

.hc-lightbox.is-open {
  display: flex;
}

.hc-lightbox img {
  max-width: min(1200px, 96vw);
  max-height: 90vh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.hc-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  width: 48px;
  height: 48px;
  padding: 0;
  color: #111111;
  background: rgba(255, 255, 255, 0.95);
  font-family: Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  appearance: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hc-lightbox-nav:hover {
  background: #ffffff;
  border-color: rgba(184, 135, 47, 0.8);
}

.hc-lightbox-prev {
  left: 24px;
}

.hc-lightbox-next {
  right: 24px;
}

.hc-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  border: none;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  background: rgba(255, 255, 255, 0.95);
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  appearance: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hc-lightbox-counter {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.55);
  font-size: 13px;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  .hc-lightbox {
    padding: 20px;
  }

  .hc-lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .hc-lightbox-prev {
    left: 12px;
  }

  .hc-lightbox-next {
    right: 12px;
  }

  .hc-lightbox-close {
    top: 12px;
    right: 12px;
  }
}
