.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.product-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	display: block;
	position: relative;
}

.product-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.1);
	opacity: 0;
	transition: opacity 0.2s ease;
}

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

.product-card:hover::after {
	opacity: 1;
}

.product-card:active {
	transform: translateY(-2px);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* .product-image {
	position: relative;
	padding-top: 75%;
	background: #f8f8f8;
	overflow: hidden;
} */

/* .product-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
} */

/* .product-card:hover .product-image img {
	transform: scale(1.05);
} */

.product-info {
	padding: 1.5rem;
}

.product-category {
	font-size: 0.875rem;
	color: #666;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.product-title {
	font-size: 1.125rem;
	color: #333;
	margin-bottom: 0.75rem;
	font-weight: 600;
}

.product-price {
	font-size: 1.25rem;
	color: #2c5282;
	font-weight: 700;
}

.product-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.5rem;
	background: #f8f9fa;
	border-top: 1px solid #eee;
}

.rating {
	color: #f6b93b;
	font-size: 0.875rem;
}

.stock-status {
	font-size: 0.875rem;
	color: #2f855a;
}

.stock-status.low {
	color: #c53030;
}

/* Focus styles for accessibility */
.product-card:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}

.product-card:focus:not(:focus-visible) {
	box-shadow: none;
}

@media (max-width: 640px) {
	body {
			padding: 1rem;
	}

	.product-grid {
			gap: 1rem;
	}

	.product-info {
			padding: 1rem;
	}

	.product-footer {
			padding: 0.75rem 1rem;
	}
}
.date-filter {
	padding: 0.5rem 1rem;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	background: white;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	gap: 1.5rem;
	max-width: 1400px;
	margin: 0 auto;
}

.product-card {
	background: white;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	overflow: hidden;
}

.product-header {
	display: flex;
	padding: 1rem;
	border-bottom: 1px solid #e2e8f0;
	align-items: center;
	gap: 1rem;
}

.product-price {
	font-size: 1.25rem;
	font-weight: 600;
	color: #2563eb;
}

.product-image {
	width: 80px;
	height: 80px;
	border-radius: 8px;
	overflow: hidden;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-title-section {
	flex-grow: 1;
}

.product-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 0.25rem;
}

.product-id {
	font-size: 0.875rem;
	color: #64748b;
}

.metrics-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	padding: 1rem;
}

.metric-box {
	background: #f8fafc;
	border-radius: 8px;
	padding: 1rem;
}

.metric-label {
	font-size: 0.875rem;
	color: #64748b;
	margin-bottom: 0.5rem;
}

.metric-value {
	font-size: 1.25rem;
	font-weight: 600;
	color: #1a1a1a;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.trend-indicator {
	font-size: 0.875rem;
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
}

.trend-up {
	background: #dcfce7;
	color: #166534;
}

.trend-down {
	background: #fee2e2;
	color: #991b1b;
}

.performance-bar {
	height: 4px;
	background: #e2e8f0;
	border-radius: 2px;
	margin-top: 0.5rem;
	overflow: hidden;
}

.performance-fill {
	height: 100%;
	background: #3b82f6;
	border-radius: 2px;
	transition: width 0.3s ease;
}

.inventory-status {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.status-indicator {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

.status-optimal {
	background: #22c55e;
}

.status-warning {
	background: #f59e0b;
}

.status-critical {
	background: #ef4444;
}