/* ─── AW Portfolio Lightbox ─────────────────────────── */
.awp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(22, 16, 10, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.awp-lightbox.awp-lb-open {
  opacity: 1;
  pointer-events: all;
}

/* Image wrapper */
.awp-lb-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 4rem 5rem;
}

.awp-lb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 2px;
}

.awp-lb-img.awp-lb-loaded {
  opacity: 1;
}

/* Close button */
.awp-lb-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: #C9A96E;
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.awp-lb-close:hover {
  background: rgba(201, 169, 110, 0.15);
  border-color: #C9A96E;
}

/* Navigation arrows */
.awp-lb-prev,
.awp-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: #C9A96E;
  font-size: 2rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.awp-lb-prev { left: 1.5rem; }
.awp-lb-next { right: 1.5rem; }

.awp-lb-prev:hover,
.awp-lb-next:hover {
  background: rgba(201, 169, 110, 0.15);
  border-color: #C9A96E;
}

/* Counter */
.awp-lb-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(201, 169, 110, 0.7);
  z-index: 10;
}

/* ─── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .awp-lb-img-wrap {
    padding: 3rem 1rem;
  }

  .awp-lb-prev,
  .awp-lb-next {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }

  .awp-lb-prev { left: 0.75rem; }
  .awp-lb-next { right: 0.75rem; }

  .awp-lb-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 38px;
    height: 38px;
  }
}
