body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    margin: 0; 
    padding: 0; 
}

#container { 
    background-color: #fdf2f2; 
    padding-bottom: 50px; 
}

/* Phần Banner */
#header { 
    margin: 0;
    padding: 0;
    line-height: 0;
    text-align: center;
}

#header img {
    width: 100%;
    height: auto;
    display: block;
}

/* Phần Menu */
#menu ul {
    list-style: none;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    background: #fff;
    margin: 0;
}

#menu a { 
    text-decoration: none; 
    color: brown; 
    font-weight: bold; 
    text-transform: uppercase; 
    font-size: 14px;
}

#menu a:hover { 
    color: #ff6b6b; 
}

/* Danh sách sản phẩm */
.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    list-style: none;
    padding: 40px 20px;
    margin: 0;
}

.product {
    background: white;
    border: 1px solid #e6a9a9;
    border-radius: 12px;
    width: 350px;
    height: 350px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4x 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.product:hover { 
    transform: translateY(-8px); 
    background-color: #e6a9a9;
    font-size: 18px;
}

.product p { 
    font-weight: bold; 
    color: #444; 
    margin-bottom: 12px; 
}

.product img {
    width: 100%;
    height: 300px;
    object-fit: cover; 
    border-radius: 8px;
}
/* Tùy chỉnh tiêu đề chào mừng */
#content h1 {
    text-align: center;
    color: #8b4513;
    font-size: 26px;
    margin-top: 30px;
    font-weight: 500;
    font-style: italic; 
}
/* Tùy chỉnh đường kẻ ngang */
hr {
    border: 0;
    height: 1px;
    background: #fce3e3;
    width: 60%; 
    margin: 20px auto; 
}
/* chỉnh chân trang */
#footer {
    background-color: #fce3e3;
    color: #a54b06;          
    text-align: center;
    padding: 30px 20px;       
    margin-top: 50px;         
    border-top: 1px solid #fab1b1;
}

#footer p {
    margin: 5px 0;
    font-weight: 500;
}