.my-featured-product-item-2 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Push content to bottom */
    height: auto; /* Fixed height for uniform cards */
    padding: 10px;
    box-sizing: border-box;
    font-size: 80%;
}

/* Mobile-first override */
@media screen and (max-width: 768px) {
    .product-name {
        font-size: 90%;
    }
}

.arpCategory {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.product-image-arp {
    margin-top: auto; /* Push image to bottom */
    text-align: center;
}

.product-image-arp img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.product-name {
    margin-top: 10px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
   
}
