*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}

body{
    background: #f5f0df;
}

/* MENU */

.menu{
    background: #8b1e00;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    color: white;
    font-size: 30px;
    font-weight: bold;
}

.menu ul{
    list-style: none;
    display: flex;
}

.menu ul li{
    margin-left: 25px;
}

.menu ul li a{
    color: yellow;
    text-decoration: none;
    font-weight: bold;
}

.menu ul li a:hover{
    color: white;
}

/* CONTAINER */

.container{
    width: 1200px;
    margin: auto;
    margin-top: 20px;
    display: flex;
}

/* LEFT */

.left{
    width: 25%;
}

.box{
    background: white;
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 10px;
}

.box h2{
    margin-bottom: 15px;
    color: #8b1e00;
}

.category li{
    list-style: none;
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.category li:hover{
    background: #ffe7c2;
    cursor: pointer;
}

/* RIGHT */

.right{
    width: 75%;
    padding-left: 25px;
}

.title{
    margin-bottom: 20px;
    color: #8b1e00;
}

/* PRODUCT */

.product-list{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
}

.product{
     width:31%;
    background:white;
    margin-bottom:25px;
    border-radius:10px;
    overflow:hidden;
    transition:0.3s;
}

.product:hover{
    transform: translateY(-5px);
}

.product img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.product-info{
    padding: 15px;
    text-align: center;
}

.product-info h3{
    margin-bottom: 10px;
}

.price{
    color: red;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.btn{
    background: #8b1e00;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.btn:hover{
    background: orange;
}

footer{
    background: #8b1e00;
    color: white;
    margin-top: 40px;
    padding: 30px;
    text-align: center;
}

.food-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

/* PHÂN TRANG */

.pagination{
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.pagination a{
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: #8b1e00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.pagination a:hover{
    background: orange;
}

.pagination .active{
    background: orange;
}

/* SEARCH + CART */

.menu-right{
    display:flex;
    align-items:center;
    gap:15px;
}

#search{
    width:220px;
    padding:10px 15px;
    border:none;
    border-radius:20px;
    outline:none;
}

.cart{
    background:white;
    color:#8b1e00;
    padding:10px 15px;
    border-radius:20px;
    font-weight:bold;
    cursor:pointer;
}

.cart:hover{
    background:orange;
    color:white;
}



/* CHI TIẾT SẢN PHẨM */

.product-detail{
    width: 1200px;
    margin: 40px auto;
    display: flex;
    gap: 40px;
    background: #f5f0df;
    padding: 30px;
}

.detail-image{
    width: 45%;
}

.detail-image img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.detail-info{
    width: 55%;
}

.detail-info h1{
    font-size: 40px;
    margin-bottom: 20px;
    color: #333;
}

.price-box{
    margin-bottom: 25px;
}

.normal-price{
    color: red;
    font-size: 40px;
    font-weight: bold;
}

.info-box{
    background: #fff8e8;
    border-left: 5px solid orange;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.info-box h3{
    margin-bottom: 15px;
    color: #8b1e00;
}

.info-box p{
    line-height: 1.8;
    font-size: 18px;
}

.quantity-box{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.quantity-box button{
    width: 40px;
    height: 40px;
    border: none;
    background: #ddd;
    font-size: 20px;
    cursor: pointer;
}

.quantity-box input{
    width: 60px;
    height: 40px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #ccc;
}

.buy-btn{
    width: 300px;
    padding: 18px;
    border: none;
    background: orange;
    color: white;
    font-size: 28px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
}

.buy-btn:hover{
    background: #ff8800;
}