/* aspaz.az — cv-detail.php "İş nümunələri" lightbox: sola/sağa keçid
   (yalnız qalereyada şəkil olan CV səhifələrində yüklənir) */

.cv-lightbox-inner {
  position: relative;
}

/* Şəkil dəyişəndə yumşaq keçid */
.cv-lightbox-img {
  transition: opacity .18s ease;
}
.cv-lightbox-img.is-switching {
  opacity: 0;
}

/* Sol/sağ keçid zolaqları — şəkil boyunda (yuxarıdan aşağıya) */
.cv-lightbox-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(56px, 22%, 120px);
  padding: 0;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 3;
  -webkit-tap-highlight-color: transparent;
}
.cv-lightbox-nav[hidden] { display: none; }

.cv-lightbox-prev {
  left: 0;
  justify-content: flex-start;
  padding-left: 10px;
}
.cv-lightbox-next {
  right: 0;
  justify-content: flex-end;
  padding-right: 10px;
}

/* Hover-də yüngül qaralma (mobil toxunuşda görünmür) */
.cv-lightbox-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
.cv-lightbox-prev::before {
  background: linear-gradient(90deg, rgba(20, 10, 12, .45), transparent);
  border-radius: var(--radius-md, 14px) 0 0 var(--radius-md, 14px);
}
.cv-lightbox-next::before {
  background: linear-gradient(270deg, rgba(20, 10, 12, .45), transparent);
  border-radius: 0 var(--radius-md, 14px) var(--radius-md, 14px) 0;
}
.cv-lightbox-nav:hover::before,
.cv-lightbox-nav:focus-visible::before { opacity: 1; }

.cv-lightbox-nav-icon {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .92);
  color: var(--color-ink, #241417);
  box-shadow: 0 3px 12px rgba(0, 0, 0, .26);
  transition: transform .15s ease, background .15s ease;
}
.cv-lightbox-nav:hover .cv-lightbox-nav-icon { background: #fff; transform: scale(1.08); }
.cv-lightbox-nav:active .cv-lightbox-nav-icon { transform: scale(.94); }
.cv-lightbox-nav-icon svg { display: block; }

/* Sayğac: 2 / 5 */
.cv-lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  z-index: 3;
  padding: 5px 13px;
  border-radius: var(--radius-full, 999px);
  background: rgba(20, 10, 12, .62);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  backdrop-filter: blur(3px);
  pointer-events: none;
  white-space: nowrap;
}
.cv-lightbox-counter[hidden] { display: none; }

@media (max-width: 480px) {
  .cv-lightbox-nav { width: clamp(48px, 26%, 90px); }
  .cv-lightbox-prev { padding-left: 6px; }
  .cv-lightbox-next { padding-right: 6px; }
  .cv-lightbox-nav-icon { width: 36px; height: 36px; }
  .cv-lightbox-nav-icon svg { width: 17px; height: 17px; }
  .cv-lightbox-counter { bottom: 8px; font-size: 11.5px; padding: 4px 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .cv-lightbox-img { transition: none; }
}
