/* Listing page CSS styles */
.cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #ccc;
}
.card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}
.card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}
.card-body .category {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 0.5rem;
}
.card-body .price {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 0.5rem;
}
.card-body .address {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.5rem;
}
.card-body .star-rating {
  margin-bottom: 0.5rem;
}
.card-body .star-rating i {
  color: #ff9800;
  margin-right: 2px;
}
.card-body .business-rating {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.5rem;
}
.card-body .reviews {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 0.5rem;
}
.actions {
  margin-top: auto;
  display: flex;
  gap: 0.5rem;
}
.actions button {
  flex: 1;
  padding: 0.6rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
  font-size: 0.9rem;
}
.btn-appointment {
  background: #28a745;
  color: #fff;
}
.btn-appointment:hover {
  background: #218838;
}
.btn-map {
  background: #dc3545;
  color: #fff;
}
.btn-map:hover {
  background: #c82333;
}

/* RESPONSIVE AYARLAR */
@media (max-width: 992px) {
  .cards-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .cards-container {
    grid-template-columns: 1fr;
  }
} 