.other-products-outer{

}

.other-products-inner{
    list-style: none;
    padding-left: unset;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.other-products-inner .product-image{
    width: 100%;
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.other-products-inner li{
    flex-basis: 100%;
    border: 1px solid pink;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px purple;

}
.other-products-inner li a{
    text-decoration: none;
}
.other-products-inner li a:hover .view-more-btn{
    color: purple;
}
.other-products-inner li h3{
    max-width: 90%;
    margin: auto;
    padding: 10px 0px;
}
.other-products-inner li .price{
    max-width: 90%;
    padding-bottom: 10px;
    margin: auto;
    display: flex;
}
.other-products-inner .view-more-btn{
    background-color: pink;
    max-width: 90%;
    margin: auto;
    text-align: center;
    border-radius: 4px;
    margin-bottom: 20px;
    padding: 4px 0px;
}