
/** ADD YOUR AWESOME CODES HERE **/

.featured-home-products {
    margin-top: 10px;
}

.home-product-card {
    display: flex;
    flex-direction: column;
}

.home-product-image-box {
    height: 260px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-product-image {
    width: 100%;
    height: 260px;
    object-fit: contain;
}

.home-product-text {
    min-height: 120px;
}

.home-product-text h4 {
    min-height: 48px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .home-product-image-box {
        height: 220px;
    }

    .home-product-image {
        height: 220px;
    }

    .home-product-text {
        min-height: auto;
    }
}
