* {
    box-sizing: border-box;
	margin:0px;
	padding:0px;
}

body {
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
}

#header {
    width: 100%;
    height: 240px;
    background-color: #0a8f08;
}

#wrapper {
    width: 100%;
    background-color: white;
}

#footer {
    width: 100%;
    height: auto;
    background-color: #0a8f08;
    color: white;
    display: flex;
    justify-content: space-around;
    padding: 30px 0;
}

#top {
    height: 48px;
    width: 100%;
    background-color: #0a8f08;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    color: white;
    font-size: 14px;
}

#banner {
    height: 144px;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.banner-item {
    font-size: 15px;
    color: #333;
}

.cart {
    background: orange;
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
}

#menu {
    height: 48px;
    width: 100%;
    background-color: #0a8f08;
}

.menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li {
    margin: 0 25px;
}

.menu a {
    text-decoration: none;
    color: white;
    line-height: 48px;
    font-weight: bold;
    transition: 0.3s;
}

.menu a:hover {
    color: yellow;
}

#container {
    width: 80%;
    min-height: 600px;
    margin: 30px auto;
    overflow: hidden;
}

#list-cate {
    width: 22%;
    height: 430px;
    background-color: #fff;
    float: left;
    border: 1px solid #ddd;
    border-radius: 15px;
    overflow: hidden;
}

#list-cate h1 {
    text-align: center;
    font-size: 16px;
    line-height: 46px;
    margin: 0;
    background-color: #0a8f08;
    color: #fff;
}

#list-cate ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#list-cate ul li {
    border-bottom: 1px solid #eee;
}

#list-cate ul li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #0a8f08;
    transition: 0.3s;
}

#list-cate ul li a:hover {
    background-color: orange;
    color: white;
}

#sildeshow {
    width: 78%;
    height: 430px;
    float: right;
    padding-left: 20px;
}

#sildeshow img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}

#ad1 {
    width: 100%;
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.ad-small {
    flex: 1;
}

.ad-small img {
    width: 100%;
    height: 180px;
    border-radius: 15px;
    object-fit: cover;
}

.products {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.product {
    width: 23%;
    background: white;
    border-radius: 15px;
    text-align: center;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.product:hover {
    transform: translateY(-5px);
}

.product img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
}

.product h3 {
    margin: 10px 0;
    font-size: 16px;
}

.product p {
    color: orange;
    font-weight: bold;
}

.footer-col {
    width: 22%;
}

.footer-col h3 {
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 5px;
}