.product-features-widget{
    padding-bottom: 80px;
    position: relative;
}
.product-features-widget .product-features-widget-wrapper{
    border-radius: 32px;
    box-shadow: 0px 4px 30px #EEEEEE;
    padding: 40px;
    display: flex;
    justify-content: space-between;
}
.product-features-widget .product-features-widget-wrapper .product-features-content{
    display: flex;
    flex-direction: column;
    max-width: 50%;
    
}
.product-features-widget .product-features-widget-wrapper .product-features-description{
    margin-bottom: 20px;
}
.product-features-widget .product-features-widget-wrapper .product-features-bullet-points{
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;

}
.product-features-widget .product-features-widget-wrapper .product-features-bullet-points .bullet-point{
    display: flex;
    gap: 8px ;
    
}
.product-features-widget .product-features-widget-wrapper .product-features-button{
    padding: 12px 18px;
    width: 270px;
    text-align: center;
}
.product-features-widget .product-features-widget-wrapper .product-features-image{
    max-width: 50%;
}
.product-features-widget .product-features-widget-wrapper .product-features-image img{
    max-height: 400px;
}
@media screen and (max-width:700px) {
    .product-features-widget .product-features-widget-wrapper .product-features-description{
        font-size: 14px !important;
    }
    .product-features-widget .product-features-widget-wrapper .product-features-title{
        font-size: 24px !important;
    }
    .product-features-widget .product-features-widget-wrapper .product-features-bullet-points{
        display: none;
    }
    .product-features-widget .product-features-widget-wrapper .product-features-image{
        max-width: 100%;
        max-height: 300px;
    }
    .product-features-widget .product-features-widget-wrapper .product-features-image img{
        max-height: 300px;
    }

    .product-features-widget .product-features-widget-wrapper .product-features-content{
        max-width: 100%;
    }
    .product-features-widget .product-features-widget-wrapper{
        flex-direction: column-reverse;
        align-items: center;
    }

    
}