*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family: sans-serif;
}
.navbar{
    background: #212529;
    color:white;
    padding: 25px 60px;
    display:flex;
    justify-content: space-between; 
    margin-bottom: 30px;  
}
.cart{
    background-color:white;
    color:#212529;
    padding: 5px;
    font-size: 30px;
    border-radius:4px;
    position: relative;
}
.cartamount{
    font-size: 16px;
    position: absolute;
    top:-15px;right:-10px;
    background-color: red;
    color:white;
    border-radius:3px;
}

.shop{
    display:grid;
    grid-template-columns:repeat(3,223px);
    gap:30px;
    justify-content: center;

}
@media (max-width:1000px){
    .shop{
        grid-template-columns: repeat(2,223px);
    }
}
@media (max-width:500px){
    .shop{
        grid-template-columns: repeat(1,223px);
    }
}

.item{
     border:2px solid #212529;
     border-radius:4px;
}
.detail{
    display:flex;
    flex-direction:column;
    padding: 10px;
    gap:10px;
}
.price-quantity{
    display:flex;
    align-items: center;
    justify-content: space-between;
}
.btn{
    display:flex;
    gap:8px;
    font-size:16px;
}
.bi.bi-dash{
color:red;
}
.bi.bi-plus{
    color:green;
}