/* CBK Gallery Lightbox */
.cbk-lb {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(8,4,6,.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.cbk-lb.cbk-lb--open {
  opacity: 1; pointer-events: all;
}

/* Stage */
.cbk-lb__stage {
  position: relative;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

/* Image */
.cbk-lb__img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  opacity: 0;
  transform: scale(.97);
  transition: opacity .28s ease, transform .28s ease;
  user-select: none;
  -webkit-user-drag: none;
}
.cbk-lb__img.cbk-lb__img--visible {
  opacity: 1;
  transform: scale(1);
}

/* Loader */
.cbk-lb__loader {
  position: absolute;
  width: 32px; height: 32px;
  border: 2px solid rgba(255,255,255,.15);
  border-top-color: rgba(255,255,255,.7);
  border-radius: 50%;
  animation: cbkSpin .7s linear infinite;
  display: none;
}
.cbk-lb__loader.cbk-lb__loader--show { display: block; }
@keyframes cbkSpin { to { transform: rotate(360deg); } }

/* Close */
.cbk-lb__close {
  position: absolute; top: 20px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: rgba(255,255,255,.85);
  font-size: 18px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
  z-index: 2;
}
.cbk-lb__close:hover { background: rgba(255,255,255,.18); color: #fff; }

/* Prev / Next arrows */
.cbk-lb__prev,
.cbk-lb__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: rgba(255,255,255,.8);
  font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}
.cbk-lb__prev { left: 20px; }
.cbk-lb__next { right: 20px; }
.cbk-lb__prev:hover,
.cbk-lb__next:hover { background: rgba(255,255,255,.16); color: #fff; }
.cbk-lb__prev:disabled,
.cbk-lb__next:disabled { opacity: .25; cursor: default; }

/* Caption + counter */
.cbk-lb__footer {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 28px;
  background: linear-gradient(to top, rgba(8,4,6,.7), transparent);
  display: flex; align-items: flex-end; justify-content: space-between;
  pointer-events: none;
}
.cbk-lb__caption {
  font-family: 'Raleway', system-ui, sans-serif;
  font-size: 13px; font-weight: 400;
  letter-spacing: .06em;
  color: rgba(255,255,255,.7);
  max-width: 70%;
}
.cbk-lb__counter {
  font-family: 'Raleway', system-ui, sans-serif;
  font-size: 11px; letter-spacing: .15em;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
}

/* Dot indicators */
.cbk-lb__dots {
  position: absolute; bottom: 64px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
  pointer-events: none;
}
.cbk-lb__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: background .2s, transform .2s;
}
.cbk-lb__dot.cbk-lb__dot--active {
  background: rgba(255,255,255,.85);
  transform: scale(1.3);
}

/* Make gallery items clickable */
.cbk-gallery-item {
  cursor: pointer;
}
.cbk-gallery-item__img-wrap img {
  transition: transform .6s cubic-bezier(.23,1,.32,1), opacity .3s;
}
.cbk-gallery-item:hover .cbk-gallery-item__img-wrap img {
  transform: scale(1.04);
}

/* Mobile */
@media (max-width: 600px) {
  .cbk-lb__prev { left: 8px; width: 42px; height: 42px; font-size: 16px; }
  .cbk-lb__next { right: 8px; width: 42px; height: 42px; font-size: 16px; }
  .cbk-lb__close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 16px; }
  .cbk-lb__img { max-width: 96vw; max-height: 82vh; }
  .cbk-lb__footer { padding: 14px 16px; }
}
