/* AIMK Mini Lightbox (çok hafif) */
.aimk-lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.aimk-lb-dialog {
  position: relative;
  max-width: min(1100px, 95vw);
  max-height: 90vh;
}

.aimk-lb-dialog img {
  display: block;
  max-width: 95vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}

.aimk-lb-btn {
  position: absolute;
  top: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 22px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  user-select: none;
}

.aimk-lb-btn:hover { background: rgba(255,255,255,.25); }

.aimk-lb-close { right: 10px; }

.aimk-lb-prev, .aimk-lb-next {
  top: 50%;
  transform: translateY(-50%);
}

.aimk-lb-prev { left: -55px; }
.aimk-lb-next { right: -55px; }

@media (max-width: 600px) {
  .aimk-lb-prev { left: 10px; }
  .aimk-lb-next { right: 10px; }
}
