/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  cursor: pointer;
}

/* ===== MODAL ===== */
.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.gallery-modal.active {
  display: flex;
}

.gallery-modal img {
  max-width: 90%;
  max-height: 90%;
}

.gallery-close,
.gallery-prev,
.gallery-next {
  position: absolute;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

.gallery-close { top: 20px; right: 30px; }
.gallery-prev { left: 30px; }
.gallery-next { right: 30px; }

.gallery-counter {
  position: absolute;
  bottom: 20px;
  color: #fff;
  font-size: 14px;
}
