body{
	margin: 0px;
	font-family: arial;
	/*background-image:url("bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-attachment:fixed;
	background-size: cover;*/
	
	
}
#top {
	width: 100%;
	height: 48px;
	display: flex;
	align-items: center;
	background-color: #ECECEC;
	margin-bottom: 15px;
}

#top-content {
	width: 90%;
	height: 100%;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: black;
}

#top-left {
	display: flex;
	align-items: center;
	font-size: 14px;
}

#top-left span {
	display: inline-flex;
	align-items: center;
	padding-right: 15px;
}

#top-right {
	display: flex;
	align-items: center;
	gap: 20px; /* Khoảng cách giữa các mục */
}

#top-right a {
	color: black;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	font-size: 14px;
}

#top-right img {
	width: 20px;
	height: 20px;
	margin-right: 5px;
}
.cart-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px;
      margin: 15px auto;
      border: 1px solid #ddd;
      border-radius: 10px;
      background-color: #fff;
      max-width: 900px;
    }

    .cart-item img {
      width: 70px;
      height: 70px;
      object-fit: cover;
      border-radius: 5px;
      margin-right: 10px;
    }

    .cart-name {
      flex: 2;
      font-weight: bold;
      font-size: 18px;
    }

    .cart-price {
      flex: 1;
      font-weight: bold;
      text-align: center;
    }

    .cart-quantity {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .cart-quantity .qty {
      min-width: 30px;
      text-align: center;
      font-size: 16px;
    }

    .qty-minus,
    .qty-plus {
      background-color: #6C7BA5;
      color: white;
      border: none;
      width: 30px;
      height: 30px;
      font-size: 18px;
      border-radius: 4px;
      cursor: pointer;
    }

    .cart-delete {
      flex: 0.8;
      background-color: #6C7BA5;
      color: white;
      border: none;
      padding: 8px 14px;
      border-radius: 6px;
      cursor: pointer;
    }

    .empty-msg {
      text-align: center;
      font-size: 18px;
      margin-top: 30px;
    }

    .cart-total {
      text-align: center;
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 20px;
    }
	#menu{
	background-color: #ECECEC;
	width:100%;
	height:40px;
}
#menu-content{
	width: 90%;
	height: 100%;
	margin:auto;
	color: #000;
}
ul{
	list-style: none;
	margin:0px;
	padding:0px;
}
ul li{
	line-height: 40px;
	float: left;
	position: relative;
	color: #000;
}
ul li li{
	float: none;
	background-color: #FFF;
	width:185px;
}
ul li li a{
	color: #000;
	border-bottom: 1px solid #CCC
	
}
ul ul{
	display: none;
}

ul li:hover ul{
	display: block;
	position:absolute;
	top: 40px;
	left: 0px
}

ul li a{
	text-decoration: none;
	color: #000;
	display: block;
	padding: 0px 15px;
	line-height: 40px
}
#menu a:hover{
	background-color: #FFF;
	color: #C08859;
	cursor: pointer;
}
.hamburger {
	display: block;
    margin-right: 15px;
  }
#container{
	width:100%;
	min-height:600px;
}
#content{
	width:90%;
	margin:auto;
	min-height:600px;
}

*{
	box-sizing: border-box;
}
#footer{
	background-color: #ECECEC;
	width:100%;
	height:450px;
	clear: both;
}
#footer-content{
	width: 100%; 
	margin: auto; 
	height: 100%;
}
#contents{
	width: 90%; 
	margin: auto; 
	height:92%;
}
#information1{
	line-height: 30px; 
	width:30%;
	height: 70%; 
	float: left; 
	color:black;
	padding:0 15px;
}
#information1 img{
	height: 15px; 
	float: left;
	line-height: 30px; 
	margin-top: 7px;
	margin-right:10px;
}
#information2{
	line-height: 30px; 
	width:20%;
	height: 70%; 
	float: left; 
	color: black;
	padding:0 15px;
}

#information2 ul a {
    display: block;
	width: 200px;
    color: black;
    margin: 0px;
    padding: 0 20px;
    text-decoration: none;
}

#map{
	line-height: 30px;
	width:50%;
	height: 70%; 
	float: left; 
	color:black;
	padding:0 20px;
}
#footer-botton {
    color: black;
    width: 100%;
    height: 40px;
    clear: both;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    font-size: 14px;
}



/*dinh dangj mobile*/
@media only screen and (max-width: 768px){
	
	
	.menuan , #information1, #information2, .cart-name{
		display: none
	}
	#b1{
		display: block;
	}
	#map{
		width:100%;
	}
	
		
}