        #m_product > .col {
    margin-bottom: 25px;
}
.list-product .bp_product_item {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all .3s;
}

.list-product .bp_product_item:hover {
    transform: translateY(-10px);
    transition: all .3s;
}

.list-product .bp_product_item .tp-col__image {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    padding: 0;
}

.list-product .bp_product_item .tp-col__image img {
    aspect-ratio: 2/3;
    transition: all .4s;
}

.list-product .bp_product_item .tp-col__image img:hover {
    transform: scale(1.1);
    transition: all .4s;
}

.list-product .bp_content_product {
    padding: 20px;
}

.list-product .bp_star_review {
    display: none;
}

.list-product .bp_product_more_item {
    font-size: 12px;
    color: #555555;
}

.list-product .bp_content_product > .bp_product_more_item {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.bp-item-more-icon {
    color: #10b981;
}

.btn-bottom .bp_lbl_product_more  {
    display: none;
}


.btn-bottom a {
    display: block;
    width: 100%;
    padding: 8px 20px;
    width: 100%;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-radius: 20px;
    margin: 15px 0;
    transition: all .4s;
}

.list-product .bp_content_product .tp__actions_c a {
    display: block;
    width: 100%;
    padding: 8px 20px;
    width: 100%;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-radius: 20px;
    transition: all .4s;
}

.btn-bottom a:hover {
    background-color: #fff;
    color: var(--primary-color);
    transition: all .4s;
}

.list-product .bp_content_product .tp__actions_c a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transition: all .4s;
}

.bp-product-header,
.bp-product-footer {
    display: none;
}

.list-product .bp_content_product .tp-body {
    font-size: 14px;
    color: #555555;
    overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 3; 
   -webkit-box-orient: vertical;
}

.heading-category {
    display: flex;
    justify-content: center;
}

.heading-category .bp_category_option_item,
.heading-category img {
    display: none;
}

.heading-category .bp_category_option_item.active {
    display: block;
}

.heading-category .bp_name_category_option {
    font-size: 35px;
    font-weight: 600;
    position: relative;
    background-image: linear-gradient(90deg, var(--primary-color), var(--third-color));
    background-size: cover;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    margin-bottom: 30px;
    padding-bottom: 10px;
    text-align: center;
}

.heading-category .bp_name_category_option::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: center;
    bottom: 0;
    width: 100px;
    height: 3px;
    border-radius: 5px;
    background-color: var(--primary-color);
    transition: all .3s;
}

@media (max-width: 767.98px) {
    .list-product .bp_product_item .tp-col__image img {
        aspect-ratio: unset;
    }
}
