html,
body{
    margin:0;
    padding:0;

    width:100%;
    height:auto;

    min-height:100vh;

    overflow-x:hidden;
    overflow-y:scroll;

    background:#f5f5f5;
}

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

.card-content {
    padding: 10px;
}

.product-name {
    font-size: 15px;
    font-weight: 500;
}

.price {
    color: #27ae60;
    font-weight: bold;
    margin-top: 5px;
}

.cart-menu{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-decoration:none;
    color:#555;
    font-size:12px;

    width:25%;
}

.add-btn{
    width:100%;
    background:#27ae60;
    color:white;
    border:none;
    padding:12px;
    border-radius:10px;
    margin-top:10px;
    font-size:15px;
    cursor:pointer;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

.bottom-nav a{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}


.bottom-nav i {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.container{
    padding:20px;
    padding-bottom:120px;
}

.input{
    width:100%;
    padding:12px;
    margin-bottom:12px;
    border-radius:10px;
    border:1px solid #ddd;
    box-sizing:border-box;
}

.cart-icon-wrapper{
    position: relative;
    display: inline-block;
}

.cart-badge{
    position:absolute;
    top:-6px;
    right:-8px;

    background:red;
    color:white;

    border-radius:50%;

    min-width:18px;
    height:18px;

    padding:0 4px;

    font-size:10px;

    display:flex;
    align-items:center;
    justify-content:center;
}


.checkout-btn{
    display:block;
    width:100%;
    background:#27ae60;
    color:white;
    text-align:center;
    padding:12px;
    border-radius:10px;
    text-decoration:none;
    box-sizing:border-box;
}
/* Scrollbar */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#f1f1f1;
}

::-webkit-scrollbar-thumb{
    background:#27ae60;
    border-radius:10px;
}