body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px; 
    background:#f5f5f5; 
    padding-top: 70px;
    padding-bottom: 60px;
}

.product-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    border:1px solid #eee;
    transition:0.2s;
}
.product-card:hover{box-shadow:0 0 10px rgba(0,0,0,0.1);}
.product-img{height:150px;object-fit:cover;width:100%;}
.filter-box{background:#fff;border-radius:8px;padding:12px;}
.btn-po{background:#f57224;color:#fff;font-weight:600;}
.btn-po:hover{background:#d65c1d;color:#fff;}
.content-wrapper{padding-top:75px;padding-bottom:80px;}

@media (max-width: 576px) {
    body {
        padding-top: 2px;
    }
}

.bottom-nav{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
    z-index: 9999;
}