.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.dark-mode {
  background-color: #1a202c;
  color: #f7fafc;
}

.filter-panel {
  transition: all 0.3s ease;
}

.filter-panel.closed {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
}

.filter-panel.open {
  max-height: 1000px;
  opacity: 1;
}

.swiper-slide {
  height: 400px;
}

.swiper-thumbs .swiper-slide {
  height: 80px;
  opacity: 0.6;
  cursor: pointer;
}

.swiper-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.property-feature:hover {
  transform: translateY(-3px);
}

/* Ingatlan típus ikonos választó (DH stílus) */
.type-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid #e5e7eb;
  background: white;
  color: #374151;
  cursor: pointer;
  transition: all .15s ease;
  white-space: nowrap;
}
.type-btn:hover {
  border-color: #9ca3af;
  background: #f9fafb;
}
.type-btn.active {
  border-color: #1d4ed8;
  background: #1d4ed8;
  color: white;
}
