#header{
	background-color: #FFF;
	width: 100%;
	height:48px;
	position: relative;
}
#footer{
	background-color: white;
	padding: 50px 150px;
	line-height: 1.6;
}
#footer li{
	margin-bottom: 15px;
	display: 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;
}
#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;
}