/* ============================================
   SEARCH PAGE SPECIFIC STYLES
   ============================================ */

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 20px;
}

.result-card {
  background: var(--bs-bg-card);
  border-radius: var(--bs-border-radius);
  padding: 16px;
  box-shadow: var(--bs-box-shadow);
  cursor: pointer;
  transition: 0.25s ease;
  animation: fadeIn 0.4s ease;
  display: flex;
  flex-direction: column;
}

.result-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--bs-box-shadow-sm);
}

.result-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: var(--bs-border-radius-sm);
  margin-bottom: 12px;
}

.result-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--bs-body-color);
}

.result-card p {
  font-size: 0.9rem;
  color: var(--bs-text-muted);
  margin-bottom: 10px;
}

.result-card .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bs-primary);
}

@media (max-width: 600px) {
  .results-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

