#header{
	background-color: #FFF;
	width: 100%;
	height:48px;
	position: relative;
}
#wrapper{
	background-color: #FFF;
	width: 100%;
	min-height: 10px;
}
#footer{
	background-color: orange;
	padding: 50px 150px;
	line-height: 1.6;
}
#footer li{
	margin-bottom: 15px;
	align-items: center;
}
#footer a{
    display: inline-flex;
    align-items: center;
}
.photo{
    width: 100%;
    height: 180px;
    object-fit: contain;
}
.name{
	color: black;
}
.price{
	color: orange;
}
#menu{
	background-color: orange;
	height: 48px;
	width: 100%;
	margin: auto;
	line-height: 48px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0px;
	color: black;
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu-left{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
	align-items: center;
	gap: 10px;
	padding-left: 40px;
}
.menu-left li{
    padding: 0 15px;
	position: relative;
}
.menu-left a,
.menu-right a{
    text-decoration: none;
    color: black;
    padding: 0 15px;
}
.menu-right{
    display: flex;
    align-items: center;
    gap: 0px;
    padding-right: 40px;
}
.search-box{
    width: 320px;
    height: 38px;
    background: white;
    border-radius: 30px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    position: relative;
}
.search-box input{
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
}
.search-box button{
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
}
#menu ul li a{
	text-decoration: none;
	color: #000;
	display: block;
	padding: 0px 15px;
}
#menu a:hover{
	background-color: orange;
}
#menu ul ul{
	display: none;
}
#menu li li{
	float: none;
	border: 1px solid #CCC;
	background-color: #DDD;
	width: 200px;
	border-left: 1px solid #CCC;
	border-right: 1px solid #CCC;
	color: #000;
	border-bottom: 1px solid #CCC;
}
#menu li:hover ul{
	display: block;
	position: absolute;
	top: 48px;
	left: 0px;
}
#menu li li a{
	color: #000;
}
#quick-contact{
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: none;
	width: auto;
	height: auto;
}
#quick-contact img{
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	cursor: pointer;
}
.register-box{
    width: 420px;
    background-color: silver;
    padding: 40px;
    border-radius: 15px;
    color: black;
    animation: hienlen 0.5s ease;
    margin: 50px auto;
}
@keyframes hienlen{
    from{
        transform: scale(0.7);
        opacity: 0;
    }
    to{
        transform: scale(1);
        opacity: 1;
    }
}
.register-box h1{
    text-align: center;
    margin-bottom: 30px;
}
.register-box input{
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
    background-color: white;
    border: 1px solid black;
    border-radius: 10px;
    padding-left: 15px;
    color: black;
    box-sizing: border-box;
}
.register-box button{
    width: 100%;
    height: 50px;
    background-color: red;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}
.register-box p{
    text-align: center;
    margin-top: 20px;
}
.register-box a{
    color: black;
    text-decoration: none;
    font-weight: bold;
}
#searchResult{
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1000;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.search-item{
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: black;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
}
.search-item:hover{
    background: #f2f2f2;
}