.product-section{
	background-color:#f5f5f5;
}
.product-section .sec-title{
	font-weight:600; 
	text-align:center;
	position:relative;
	padding:1.5rem 0;
}
.product-section .sec-title:after{
	content: '';
    width: 5rem;
    height: 2px;
    border-bottom:3px solid var(--bs-theme-color);
    position: absolute;
    bottom: 0;
    left: 50%; 
    transform: translate(-50%, 0);
}

.product-section .pic{
	max-width:100%;
}
.product-section .p-category{
	font-size:0.8rem;
	display:block;
	color:#999;
}
.product-section .p-title{ 
	font-size:1.1rem;
	display:block;
	color:var(--bs-link-color);
} 
.product-section .p-more-btn{
	font-size:0.8rem;
	color:var(--bs-link-hover-color);
}

@media only screen and (max-width: 767px){
	.product-section .p-title{ 
		font-size: 0.9rem;
	    white-space: normal;
	    overflow: hidden;
	    text-overflow: ellipsis;
	    display: -webkit-box;
	    -webkit-line-clamp: 2;
	    -webkit-box-orient: vertical;
	    word-break: break-all; 
	    height: 1.5rem;
	}
}

