#header {               
    background-color: #fff;
    width: 100%;
    height: 300px;
    position: relative;
}
#wrapper {
    background-color: #FFF;
    width: 100%;
    min-height: 1000px;
}
#footer {
    background-color: #666;
    width: 100%;
    height: 300px;
	color: white;
	padding: 40px 0 20px 0;
	margin-top: 50px;
}
#container {
    width: 80%;
    min-height: 500px;
    margin: 40px auto;
}
.cate {
    width: 100%;
    height: 450px;
    margin-bottom: 40px;
}
.cate-tittle {
    width: 300px;
    line-height: 40px;
    height: 40px;
    background-color: green;
    color: #FFF;
    border-radius: 15px;
    font-size: 18px;
    margin: 20px 0px;
    padding-left: 20px;
}
.list-product {
    height: 368px;
    width: 100%;
    display: flex;
    gap: 40px;
}
.product {
    flex: 1;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 20px;
}
.photo {

}
.name {
    color: green;
}
.price {
    color: orange;
}
#menu {
    background-color: green;
    height: 48px;
    width: 100%;
    line-height: 48px;
    position: absolute;
    bottom: 0px;
}
#menu ul {
    margin: 0px auto;
    padding: 0px;
    width: 80%;
    height: 100%;
    list-style: none;
}
#menu ul li {
    float: left;
    padding: 0px 5px;
    line-height: 48px;
    position: relative;
}
#menu ul li a {
    text-decoration: none;
    color: #fff;
    display: block;
    padding: 0px 5px;
}
#menu a:hover {
    background-color: orange;
}
#menu ul ul {
    display: none;  
}
#menu li li {
    float: none;
    border-bottom: 1px solid #ccc;
    background-color: #ddd;
    width: 200px;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}
#menu li:hover ul {
    display: block;
    position: absolute;
    top: 48px;
    left: 0px;
}
#menu li li a {
    color: #000;
}
#quick-contact {
    background-color: orange;
    width: 240px;
    height: 60px;
    border-radius: 30px;
    position: fixed;
    bottom: 10px;
    right: 10px;
}
.footer-content {
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
}
.footer-section {
    width: 30%;
}
.footer-section h3 {
    color: #2ecc71;
    border-bottom: 2px solid #2ecc71;
    padding-bottom: 10px;
    display: inline-block;
}
.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #34495e;
    font-size: 13px;
}
.footer-section li {
    font-size: 14px;
    line-height: 1.6
}
.footer-section li a {
    text-decoration: none;
    color: #fff;  
}