/* ==========================================
   BEST SELLER
========================================== */

.bestseller__grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.product-card{

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    padding:35px;

    background:#fff;

    border:var(--border);

    border-radius:var(--radius-xl);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.product-card img{

    width:120px;

    margin-bottom:20px;

}

.product-card h3{

    margin:15px 0 10px;

    font-size:24px;

}

.product-card p{

    color:var(--gray);

    margin-bottom:8px;

}

.product-card strong{

    font-size:30px;

    color:var(--primary);

    margin-bottom:20px;

}