body {
    margin: 0;
    font-family: 'Noto Serif SC', serif;
    line-height: 1.6;
    background-color: #fdf6e3;
    color: #333;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #b22222;
    color: #fff;
}
header .logo {
    display: flex;
    align-items: center;
}
header .logo img{
    width: 110px;
    background-color: white;
    padding: 10px;
}
header .title {
    text-align: center;
    flex: 1;
    font-size: 2.5em;
    font-weight: bold;
    font-family: 'Noto Serif SC', serif;
}
.banner {
    position: relative;
    background: url('banner.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    filter: brightness(0.8);
}
.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: brightness(0.5) blur(4px);
    z-index: 1;
}
.banner > * {
    position: relative;
    z-index: 2;
}
.banner .text{
    font-weight: bold;
    font-family: 'Noto Serif SC', serif;
    font-size: 20px;
}
.banner button {
    padding: 12px 25px;
    background-color: #b22222;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    font-family: 'Noto Serif SC', serif;
}
.banner button:hover {
    background-color: #8b0000;
}

.products {
    padding: 20px;
    background-color: #fff;
}
.products h2 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Noto Serif SC', serif;
    color: #b22222;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
/* .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
} */

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}
.product-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.product-item img {
    width: 150px;
    height: auto;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}
.product-item h3 {
    font-size: 1.2em;
    margin: 5px 0;
    font-family: 'Noto Serif SC', serif;
}
.product-item p {
    font-size: 0.9em;
    color: #666;
}
footer {
    background-color: #b22222;
    color: #fff;
    text-align: center;
    padding: 5px 20px;
    font-family: 'Noto Serif SC', serif;
}
footer a{
    text-decoration: none;
    color: #ffcd00;
}