/* FILTER BAR */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2.2rem;
}

.filter-btn {
  background: #e9f4ef;
  color: #0f3d2e;
  border: 1px solid #b7dbcd;
  padding: 8px 18px;
  font-size: .9rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s ease;
}

.filter-btn:hover {
  background: var(--color-apricot);
  color: #fff;
}

.filter-btn.active {
  background: var(--color-apricot);
  color: #fff;
  border-color: var(--color-apricot);
}


/* ================= MODAL ================= */

.gallery-modal {
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-modal .modal-body {
  position: relative;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-modal img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.65);
  color: white;
  border: none;
  font-size: 2.4rem;
  padding: 8px 16px;
  cursor: pointer;
  z-index: 10;
}

.modal-nav.prev { left: 20px; }
.modal-nav.next { right: 20px; }

.modal-body img {
  max-height: 82vh;
}

