{ margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; } /* Header */ header { background: #000; color: white; padding: 15px; text-align: center; } nav ul { list-style: none; text-align: center; margin-top: 10px; } nav ul li { display: inline; margin: 0 15px; } nav ul li a { color: white; text-decoration: none; font-weight: bold; } /* Banner */ .banner img { width: 100%; height: auto; display: block; } /* Sản phẩm */ .products { text-align: center; padding: 20px; background: #f4f4f4; } .product-list { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; } .product { background: white; padding: 15px; border-radius: 5px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); width: 250px; } .product img { width: 100%; border-radius: 5px; } .product h3 { margin: 10px 0; } .product p { font-size: 16px; color: #e60000; } .product button { background: #000; color: white; padding: 10px; border: none; cursor: pointer; width: 100%; margin-top: 10px; } .product button:hover { background: #444; } /* Footer */ footer { background: #222; color: white; text-align: center; padding: 10px; margin-top: 20px; }