*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.menu-container{
    /* padding: 15px 15px; */
    padding: 20px 20px;
    width: 100vw;
    
}

.category{
    display: flex;
    justify-content: space-evenly;
}
.category, h3{
    background: white;
    padding: 10px 10px;
    margin-left: 200px;
}

.hr{
    width: 0px;
}
.mobiles{
    display: flex;
    flex-direction: column;
    padding: 20px 20px;
}
.mobiles img{
    width: 100%;
    height: 300px;
    /* border: 1px solid red; */
    /* overflow: hidden; */
    object-fit: cover;
}

.sidebar{
    width: 190px;
    /* border: 1px solid white; */
    background-color: white;
    float: left;
    height: 1015px;
    padding: 10px 10px;

}

.p1, h5{
    font-size: 13px;
    padding-top: 10px;
    padding-left: 10px;
}
.brand{
    font-size: 13px;
    
}

.filter-categories{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    font-size: 13px;
}

.types{
    padding: 5px;
    
}

.searchBtn{
    border: none;
    background-color: transparent;
    color: var(--black);
    margin-top: 1px;
}
.searchBtn:hover{
    background-color: transparent;
}
button{
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    /* border: 1px solid rgb(210, 210, 210); */
    background-color: transparent;
    border: 3px solid green;
}

button:hover{
    background: rgb(0, 70, 232);
    border: none;
}

.cart-menu{
    position: relative;
    display: inline-block;
}
a{
    text-decoration: none;
    color: black;
}
.cart_count{
    position: relative;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
    display: none;
}

.cart_modal{
    border: 3px solid green;
}