body {
    margin: 0;
    font-family: 'Segoe UI', 'Microsoft YaHei', Arial, sans-serif;
    background: #fff8f0;
    color: #4b2e19;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: #6b3e26;
    color: #fff;
}
.logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
}
nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-size: 1.1rem;
    transition: color 0.2s;
}
nav a:hover {
    color: #ffd6a0;
}
.banner {
    width: 100%;
    min-height: 180px;
    max-height: 400px;
    height: auto;
    overflow: hidden;
    background: #fff3e6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}
.banner-text h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.banner-text p {
    font-size: 1.3rem;
}
.products {
    padding: 50px 10% 30px 10%;
    background: #fff3e6;
}
.products h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}
.product-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.product {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(107,62,38,0.08);
    padding: 20px;
    width: 240px;
    text-align: center;
    transition: box-shadow 0.2s;
}
.product:hover {
    box-shadow: 0 4px 24px rgba(107,62,38,0.18);
}
.product img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.product h3 {
    margin: 10px 0 5px 0;
    font-size: 1.2rem;
}
.product p {
    font-size: 0.95rem;
    color: #7a5c3a;
    margin-bottom: 10px;
}
.product span {
    display: block;
    font-size: 1.1rem;
    color: #d2691e;
    margin-bottom: 10px;
}
.product button {
    background: #d2691e;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 24px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.product button:hover {
    background: #a0522d;
}
.about {
    padding: 40px 15% 40px 15%;
    background: #fff8f0;
    text-align: center;
}
.about h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}
.about p {
    font-size: 1.1rem;
    color: #5a3a1b;
}
footer {
    background: #6b3e26;
    color: #fff;
    text-align: center;
    padding: 18px 0;
    font-size: 1rem;
    letter-spacing: 1px;
}
.logo-banner {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 0;
    box-shadow: none;
    background: none;
    padding: 0;
} 