﻿/* ===========================
   Product Card
=========================== */

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    transition: .35s;
    text-align: center;
    padding: 18px;
    margin-bottom: 25px;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 35px rgba(0,0,0,.20);
    }

    .product-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 15px;
        transition: .4s;
    }

    .product-card:hover img {
        transform: scale(1.05);
    }

    .product-card h3,
    .product-card h4 {
        font-weight: bold;
    }

    .product-card .price {
        color: #198754;
        font-size: 24px;
        font-weight: bold;
    }

    .product-card .rating {
        color: #ffc107;
        font-size: 18px;
    }

    .product-card .stock {
        color: #777;
        font-size: 15px;
    }

    .product-card .btn {
        width: 100%;
        margin-top: 8px;
        border-radius: 30px;
    }
