body {
    margin: 0;
    font-family: Arial;
}

.menu {
    list-style: none;
    display: flex;
    background: #f8b400;
    margin: 0;
    padding: 15px;
}

.menu li {
    margin-right: 20px;
}

.menu a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.slider img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
#shop {
    padding: 30px;
}

.categories button {
    padding: 10px;
    margin-right: 10px;
    background: #f8b400;
    border: none;
    color: white;
    cursor: pointer;
}

.products {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.product {
    border: 1px solid #ccc;
    padding: 15px;
    width: 200px;
    text-align: center;
}

.product img {
    width: 100%;
}
#about {
    background: #f9f9f9;
    padding: 40px;
    text-align: center;
}

#about h2 {
    margin-bottom: 15px;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f4b400;
    padding: 15px 30px;
}

header nav a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    font-weight: bold;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: white;
}
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    background: #fff;
}

/* QUAN TRỌNG: CÂN BẰNG HÌNH ẢNH */
.product img {
    width: 100%;
    height: 200px;          /* CHIỀU CAO CỐ ĐỊNH */
    object-fit: cover;      /* CẮT ẢNH – KHÔNG MÉO */
    border-radius: 6px;
}

/* TÊN BÁNH */
.product h3 {
    font-size: 16px;
    margin: 10px 0 5px;
}

/* GIÁ */
.product p {
    font-weight: bold;
    color: #e6a822;
}
