/* Custom styles for Nilaya Marketplace */

.filter-pill {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: #FFFFFF;
  border: 1px solid #E7E5E4;
  color: #44403C;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  cursor: pointer;
  white-space: nowrap;
}

.filter-pill:hover {
  border-color: #C87D20;
  color: #C87D20;
  background-color: #FFFDF8;
}

.filter-pill.active {
  background-color: #0E1E38;
  border-color: #0E1E38;
  color: #FFFFFF;
  box-shadow: 0 2px 4px 0 rgba(14, 30, 56, 0.15);
}

.nav-link.active {
  color: #C87D20;
  font-weight: 700;
}

/* Card hover animation */
.property-card {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

/* Scrollbar polish */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #FAF8F4;
}

::-webkit-scrollbar-thumb {
  background: #D6D3D1;
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #A8A29E;
}
