.why-love-section {
    margin: 50px 0px;
}



.why-love-section .heading_text span {
    color: #EA2031;
    font-weight: 700;
}
.why-love-section .why-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

/* Image */
.why-love-section .why-card-img .product_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1.5;
}

/* Bottom Section */


.why-love-section .why-card-bottom {
    padding: 8% 3%;
    text-align: left;
    background: linear-gradient(181deg, rgb(255 241 244) 0%, rgba(255, 255, 255, 1) 100%);
    display: flex;
    align-items: center;
    gap: 5px;
}

.why-love-section .icon-box {
    width: 40px;
    height: 40px;
    border: 1px solid #95C138;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    aspect-ratio: 1/1;
}

.why-love-section .icon-box .icon_img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Text */
.why-love-section .why-card-bottom h4 {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.why-love-section .why-card-bottom p {
    font-size: 12px;
    color: #777;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 0px;
}