.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* IMAGE */
.product-img-wrapper {
    height: 180px;
    overflow: hidden;
    background: #ffffff00;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* DISCOUNT BADGE */
.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 12px;
}

/* TITLE */
.product-title {
    min-height: 42px; /* 2 lines */
    font-size: 14px;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* PRICE */
.price-row {
    min-height: 24px;
    font-size: 14px;
    margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .product-img-wrapper {
        height: 150px;
    }

    .product-title {
        font-size: 13px;
    }
}

.product-card:hover {
    transform: translateY(-4px);
    transition: .2s ease;
}

.product-list-card{
    background: #f8f9fa;
}
