.featured-products{

    background:#fffaf5;

    padding:90px 0;

}

.product-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    height:100%;

    position:relative;

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

.product-image{

    width:100%;

    height:280px;

    object-fit:contain;

    background:#fff;

    padding:20px;

}

.product-details{

    padding:20px;

    text-align:center;

}

.product-details h5{

    font-weight:700;

}

.product-details p{

    color:#666;

    min-height:45px;

}

.weight{

    font-size:15px;

    color:#999;

    margin-bottom:10px;

}

.price{

    margin:15px 0;

}

.old-price{

    text-decoration:line-through;

    color:#999;

    margin-right:10px;

}

.new-price{

    color:#d07a00;

    font-size:26px;

    font-weight:bold;

}

.product-badge{

   position:absolute;
    top:12px;
    left:12px;
    z-index:10;
    background:#222;

    color:#fff;

    padding:6px 12px;

    border-radius:30px;

    font-size:12px;

    z-index:10;

}

.btn-buy{

    background:var(--primary);

    color:#fff;

    width:100%;

    border-radius:10px;

    padding:12px;

}

.btn-buy:hover{

    background:#b06d00;

    color:#fff;

}

.product-card{
    position:relative;
}

.wishlist-icon{
    position:absolute;
    top:12px;
    right:12px;
    width:38px;
    height:38px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 2px 10px rgba(0,0,0,.15);
    z-index:10;
}

.wishlist-icon a{
    color:#555;
    font-size:20px;
    text-decoration:none;
}

.wishlist-icon a:hover{
    color:#dc3545;
    transform:scale(1.1);
}

.best-seller{
    position:absolute;
    top:12px;
    left:12px;
    z-index:10;
}