.swiper .filterSwiper .filter-slider-wrapper {
  padding: 14px !important;
}



/* Buttons inside swiper */
.filterSwiper .swiper-slide {
  width: auto !important;
  display: inline-flex !important;
}
/* Default button */
.filter-btn {
  background:#83a17e!important;   /* light default */
  color: #fff!important;
  padding: 10px 20px !important;
  border: none;
  font-size: 1rem;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Active button */
.filter-btn.active {
  background:#9ba399!important;      /* active highlight */
  color: #fff !important;
}

/* Arrows */
.filterPrev,
.filterNext {
  width: 40px;
  height: 40px;
  background: #83a17e;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  /* top: 50%; */
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  color: #fff;
  margin: 35px -50px;
}

.filterPrev {
  left: 0;
}

.filterNext {
  right: 0;
}

.filterPrev:hover,
.filterNext:hover {
  background: #83a17e;
}

/* Mobile Fix */
@media (max-width: 600px) {
  .filter-slider-container {
    padding: 10px 35px;
  }

  .filterPrev {
    left: 20px !important;
  }

  .filterNext {
    right: 20px !important;
  }
}




/* Gallery Layout */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Gallery Item */
.gallery-items {
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
}

/* Image Styling */
.gallery-items img {
  width: 100%;
  height:300px!important;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Hover Effect (Premium Feel) */
.gallery-items:hover img {
  transform: scale(1.08);
}

/* Tablet */
@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(1, 1fr);
  }

  .filter-buttons button {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
}

.pageHero.-type-2 {
  position: relative;
  display: flex;
  align-items: center;
  height: 70vh;
  z-index: 0;
}
