.product-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 160px;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
    transition: transform 0.2s, box-shadow 0.2s;
    padding: 0.7rem 0.3rem 1rem 0.3rem;
    position: relative;
    z-index: 1;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-7px) scale(1.03);
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}
.product-image-wrapper {
    background-color: var(--light-bg, #f8f9fa);
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-img-actual {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.product-img-placeholder {
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
.product-name-text {
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.4em;
}
@media (min-width: 768px) {
    .product-image-wrapper {
        height: 180px;
    }
    .product-name-text {
        font-size: 0.95rem;
    }
}
@media (min-width: 992px) {
    .product-image-wrapper {
        height: 200px;
    }
    .product-name-text {
        font-size: 1rem;
    }
}
@media (min-width: 1200px) {
    .product-image-wrapper {
        height: 180px;
    }
}
