.product-list {
    padding: 80px 0;
    background: #eef3df;
}

.product-title {
    font-family: Playfair Display;
    font-size: 32px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    color: #467722;
    text-transform: uppercase;
    padding-bottom: 32px;
}

.product-category {
    display: flex;
    gap: 15px;
    padding-bottom: 32px;
}

.product-category div {
    font-family: Playfair Display;
    font-size: 20px;
    font-weight: 400;
    color: #1b2f0d;
    text-transform: uppercase;
}
.product-category .active,
.product-category div:hover {
    color: #467722;
    border-bottom: 2px solid #467722;
}

.product-category div a {
    padding: 13px;
    color: #1b2f0d;
    text-decoration: none;
}

.product-card {
    padding-bottom: 32px;
    overflow: hidden;
}

.product-card div{
    overflow: hidden;
    height: 540px;
}

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

.product-card a {
    text-decoration: none;
}

.product-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.product-card h1 {
    font-family: Playfair Display;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
    color: #1b2f0d;
    padding: 24px 0;
    white-space: nowrap; /* Không cho xuống dòng tự động */
    overflow: hidden; /* Ẩn text bị tràn */
    text-overflow: ellipsis; /* Thêm dấu ba chấm nếu text bị tràn */
    /* display: -webkit-box; */
    -webkit-line-clamp: 2; /* Giới hạn text chỉ hiển thị 2 dòng */
    -webkit-box-orient: vertical;
}

.product-card button {
    padding: 8px 35px;
    background: #467722;
    font-family: Playfair Display;
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    border: none;
}

.product-card button:hover {
    background: #549129;
}

.product-detail-left{
    height: 100%;
}

.product-detail {
    background: #467722;
}

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

.product-detail-right {
    padding: 120px 80px;
}

.product-detail-right h1 {
    font-family: Playfair Display;
    font-size: 40px;
    font-weight: 400;
    line-height: 53.32px;
    text-align: left;
    color: #ffffff;
    padding-bottom: 16px;
}

.product-detail-right p {
    font-family: Inter;
    font-size: 20px;
    font-weight: 400;
    line-height: 33px;
    text-align: left;
    color: #ffffff;
}

.product-related{
    background: #F7F7F7;
}

.product-related .title{
    font-family: Playfair Display;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: #1B2F0D;
    padding: 40px 0;
}