.product-center-section {
	padding: 60px 0;
	background-color: #fff;
}
.product-center-section .container {
	padding: 0 6%;
}
.product-center-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}
.product-center-title {
	display: flex;
	align-items: center;
	gap: 10px;
}
.title-text {
	font-size: 28px;
	font-weight: bold;
	color: #333;
}
.title-en {
	font-size: 18px;
	color: #e60012;
	font-weight: bold;
}
.title-arrow {
	font-size: 12px;
	color: #999;
	cursor: pointer;
}
.view-all {
	font-size: 14px;
	color: #666;
	text-decoration: none;
	transition: color 0.3s ease;
}
.view-all:hover {
	color: #e60012;
}
.product-center-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}
.product-card {
	display: flex;
	background-color: #fff;
	border: 1px solid #e0e0e0;
	transition: all 0.3s ease;
	overflow: hidden;
	border-radius:10px;
}
.product-card:hover {
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	border-color: #d0d0d0;
}
.product-card-image {
	flex: 1;
	width:70%;
	overflow: hidden;
}
.product-card-image img {
	width: 100%;
	/*height: 100%;*/
	object-fit: cover;
	transition: transform 0.3s ease;
}
.product-card:hover .product-card-image img {
	transform: scale(1.05);
}
.product-card-info {
	flex: 1;
	/*padding: 30px;*/
	display: flex;
	flex-direction: column;
	background-color: #f8f9fa;
}
.product-card-name {
	font-size: 20px;
	font-weight: bold;
	color: #333;
	margin-bottom: 20px;
	margin-top:30px;
	padding-bottom: 10px;
	padding-left:30px;
	border-bottom: 1px solid #e0e0e0;
}
.product-card-name a {
	color: #333;
	text-decoration: none;
}
.product-card-list {
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	/*gap: 10px;*/
}
.product-card-list li {
	width: 50%;
	line-height:30px;
}
.product-card-list li a {
	font-size: 14px;
	color: #666;
	text-decoration: none;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 6px;
	padding-left:30px;
}
.product-card-list li a::before {
	content: '';
	width: 4px;
	height: 4px;
	background-color: #e60012;
	border-radius: 50%;
	flex-shrink: 0;
}
.product-card-list li a:hover {
	color: #e60012;
	padding-left: 35px;
}
 @media (max-width: 992px) {
.product-center-grid {
	grid-template-columns: 1fr;
}
.product-card {
	flex-direction: column;
}
.product-card-image {
	min-width: 100%;
	max-width: 100%;
	height: 250px;
}
.product-card-info {
	padding: 20px;
}
}
 @media (max-width: 768px) {
.product-center-section {
	padding: 40px 0;
}
.product-center-header {
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 30px;
}
.title-text {
	font-size: 24px;
}
.title-en {
	font-size: 16px;
}
.product-card-image {
	height: 200px;
}
.product-card-info {
	padding: 15px;
}
.product-card-name {
	font-size: 18px;
	margin-bottom: 15px;
	padding-bottom: 10px;
}
.product-card-list li {
	width: 100%;
}
.product-card-list li a {
	font-size: 13px;
}
}
 @media (max-width: 480px) {
.title-text {
	font-size: 20px;
}
.title-en {
	font-size: 14px;
}
.product-card-image {
	height: 160px;
}
.product-card-name {
	font-size: 16px;
}
.product-card-list li a {
	font-size: 12px;
}
}
