/* ===== FILTER BUTTONS ===== */
.ps-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.ps-filters button {
  padding: 8px 16px;
  border: none;
  background: #000;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
  color: #fff;
}

.ps-filters button.active {
  background: #fff;
  color: #000;
}

/* ===== GRID (ISOLATED) ===== */
.ps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.ps-grid .ps-item {
  width: 33%;
  overflow: hidden;
  border-radius: 0px;
}

/* ===== IMAGE ===== */
.ps-grid .ps-item img {
  width: 100%;
/*  height: 250px;*/
  object-fit: cover;
  display: block;
  border-radius: 0px;
  padding: 10px;
  transition: 0.3s;
}

/* Hover effect */
.ps-grid .ps-item:hover img {
  transform: scale(1.02);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .ps-grid .ps-item {
    width: calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .ps-grid .ps-item {
    width: 100%;
  }
}

/* ===== SLIDER SAFE (NO CONFLICT) ===== */
.ps-slider {
  width: 100%;
}

.ps-slider .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
}

.ps-slider img {
  width: 100%;
/*  height: 250px;*/
  object-fit: cover;
}
