*{margin: 0; padding: 0; box-sizing: border-box;}
ul{list-style: none}
.section{padding: 30px 10px;}
.article{padding: 10px 0}
.d-flex{display: flex;}
.full{width: 100%;}
.col{max-width: 75%;}
.row{display:flex; flex-direction: row; width: 100%;}
.logo img{width: auto; height: 100px;}
/*NAV-TOOGLE*/
.nav-toogle{width:36px; height: 36px; border-width: 0; border-style: solid; position: relative;}
/*NAVBAR*/
.navbar.fixed{position: fixed; top:0}
/*HAMBURGUER MENU*/
.hamburguer{width: 30px; height: 30px; margin:0; cursor: pointer;}
.nav-toogle .hamburguer span{left: 0px; position: absolute; width: 100%; border-radius:3px; height:6px; transition: all .5s;}
.nav-toogle .hamburguer span:nth-child(1){top: 0px;}
.nav-toogle .hamburguer span:nth-child(2){top: 14px;}
.nav-toogle .hamburguer span:nth-child(3){top: 14px;}
.nav-toogle .hamburguer span:nth-child(4){top: 28px;}
.nav-toogle.ativo .hamburguer span:nth-child(1){top: 14px; opacity: 0;}
.nav-toogle.ativo .hamburguer span:nth-child(2){top: 14px; transform: rotate(45deg);}
.nav-toogle.ativo .hamburguer span:nth-child(3){top: 14px; transform: rotate(-45deg);}
.nav-toogle.ativo .hamburguer span:nth-child(4){top: 14px; opacity: 0;}
/*MAIN_NAV*/
.main_nav{display: flex; justify-content: space-between; align-items: center; gap: 10px}
/*MAIN_SIDE*/
.main_cart,
.main_side{position: fixed; margin:0; padding:0; display: flex; z-index: 99; width: 290px; height: 100%; top: 0; left: -290px; transform: translateX(-100%); transition: letf 0.5s ease-in-out}
.main_cart.ativo,
.main_side.ativo{left:290px}
/*MAIN_MENU*/
.main_menu{min-width: 290px; display: flex; margin: 0; padding: 0}
.main_menu ul{width:100%; list-style: none; justify-content: center; padding: 0}
.main_menu ul li{border-bottom-width: 1px; border-bottom-style: solid;}
.main_menu ul li:last-of-type{border-bottom-width: 0;}
.main_menu ul li a{display: flex; width: 100%; padding: 12px 6px; text-decoration: none;}
.food_menu .menu{overflow-y:hidden; overflow-x:scroll; min-height:60px; display: flex; flex-direction: row; align-items: center; gap: 5px}
.food_menu .menu li{width: 80px; height: 80px; border-radius: 40px; display: flex; justify-content: center; align-items: center;}
.food_menu .menu li img{width: auto; height: 64px; border-radius: 50%}
/*MAIN_LIST*/
.main_list img{height: 100px; width: auto;}
/*MAIN_CART*/
.main_cart{flex-direction: column;}
/*POPUP*/
.popup { display: none; position: fixed; top: 20%; left: 50%; transform: translate(-50%, -20%);
            background: white; padding: 15px; border: 1px solid #ccc; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
.popup.show { display: block; }

.removed-items { color: red; font-weight: bold; }