/* ==========================
   PRODUCT CARD
========================== */

.product-card{
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: .4s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.product-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

.product-card img{
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.product-card .card-body{
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 25px;
}

.product-card h4{
    font-weight: 600;
    line-height: 1.3;
    min-height: 70px;
    margin-bottom: 15px;
}

.product-card p{
    color: #666;
    min-height: 120px;
    margin-bottom: 20px;
}

.product-card .btn{
    margin-top: auto;
    border-radius: 50px;
    padding: 12px;
}