body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Product card styling */
.product-card {
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: none;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.9rem 1.4rem rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 200px;
  object-fit: cover;
}

/* Clamp description to 3 lines */
.text-truncate-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Title layout */
.product-title {
  font-size: 0.98rem;
  font-weight: 600;
}
