/* Gallery Page */

/* ── Category filter ── */
#gallery-page { background: var(--creamD); }
.gal-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.gal-full-grid .gal-item { height: 240px; }

/* ── Lightbox ── */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(10,4,1,.94); z-index: 9999;
  align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.active { display: flex; }
.lb-img {
  max-width: 90vw; max-height: 85vh;
  border-radius: 10px; object-fit: contain;
  box-shadow: var(--sh-lg);
}
.lb-close {
  position: fixed; top: 20px; right: 26px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(203,148,104,.25); border: 1px solid rgba(203,148,104,.5);
  color: var(--white); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
}
.lb-close:hover { background: var(--g5); }
.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(203,148,104,.25); border: 1px solid rgba(203,148,104,.5);
  color: var(--white); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
}
.lb-prev { left: 18px; }
.lb-next { right: 18px; }
.lb-prev:hover, .lb-next:hover { background: var(--g5); }
.lb-counter {
  position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: 12px; letter-spacing: 2px;
}

@media (max-width: 1024px) {
  .gal-full-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .gal-full-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-full-grid .gal-item { height: 180px; }
  .lb-prev, .lb-next { display: none; }
}
@media (max-width: 480px) {
  .gal-full-grid { grid-template-columns: 1fr 1fr; }
  .gal-full-grid .gal-item { height: 150px; }
}
