.products-grid {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.product-card {
	background: rgba(29, 29, 29, 0.6);
	border: 1px solid rgba(89, 129, 183, 0.2);
	border-radius: 15px;
	overflow: hidden;
	width: 280px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 147, 255, 0.2);
}

.product-image {
	width: 100%;
	height: 180px;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
	transform: scale(1.1);
}

.product-info {
	padding: 20px;
	text-align: center;
}

.product-info h3 {
	color: #fff;
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: 500;
}

.product-info p {
	color: #8a9199;
	font-size: 14px;
	margin-bottom: 15px;
	line-height: 1.6;
}

.product-btn {
	display: inline-block;
	padding: 8px 25px;
	border-radius: 20px;
	background: rgba(29, 29, 29, 0.5);
	border: 1px solid rgba(89, 129, 183, 0.3);
	color: #fff;
	font-size: 13px;
	transition: all 0.3s ease;
}

.product-btn:hover {
	background: linear-gradient(left, #19c3ff, #0093ff);
	border-color: #0093ff;
}

.page-title {
	color: #fff;
	font-size: 28px;
	font-weight: 300;
	letter-spacing: 8px;
	margin-bottom: 10px;
}

.page-subtitle {
	color: #6a7179;
	font-size: 14px;
	letter-spacing: 4px;
	margin-bottom: 20px;
}

.back-link {
	margin-top: 40px;
}

.back-link a {
	color: #6a7179;
	font-size: 14px;
	transition: color 0.3s ease;
}

.back-link a:hover {
	color: #19c3ff;
}

@media screen and (max-width: 950px) {
	.products-grid {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	
	.product-card {
		width: 90%;
	}
	
	.page-title {
		font-size: 22px;
		letter-spacing: 4px;
	}
}
