
.product-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: .3s;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.product-img-box {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
    padding: 15px;
}
.product-img-box img {
    max-height: 150px;
    object-fit: contain;
}

.price-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #28a745;
}

