.product-box-container {
	margin: 30px 0;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-box-content {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 20px;
	padding: 20px;
}

.product-box-image {
	flex-shrink: 0;
	width: 200px;
	height: 200px;
	border-radius: 8px;
	overflow: hidden;
	background: #f5f5f5;
}

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

.product-box-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.product-box-title {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
}

.product-box-title a {
	color: #333;
	text-decoration: none;
}

.product-box-description {
	margin: 0;
	color: #666;
	line-height: 1.6;
	font-size: 14px;
}

.product-box-button {
	display: inline-block;
	padding: 12px 24px;
	background: #d32f2f;
	color: #fff !important;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	align-self: flex-start;
	margin-top: auto;
}

@media (max-width: 768px) {
	.product-box-content {
		flex-direction: column;
	}

	.product-box-image {
		width: 100%;
		height: 250px;
	}
}
