.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}
.product-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid var(--color-border);
	transition: box-shadow var(--transition-speed);
}
.product-card:hover {
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}
.product-img {
	width: 100%;
	height: 200px;
}
.product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product-meta {
	padding: 1.5rem;
}
.product-category {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color-accent-3);
	background-color: rgba(159, 208, 214, 0.15);
	padding: 0.3rem 0.6rem;
	border-radius: 4px;
	display: inline-block;
	margin-bottom: 0.8rem;
}
.product-meta h3 {
	margin-bottom: 0.5rem;
}
.product-vendor {
	font-size: 0.85rem;
	color: var(--color-text-secondary);
	margin: 0;
}
