.grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.product-card {
  background: var(--foreground);
  border-radius: 10px;
  padding: 1rem;
  width: 250px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-placeholder {
  background: #000;
  width: 100%;
  height: 150px;
  margin-bottom: 1rem;
  border-radius: 6px;
}
