:root{
    --cream:#F7F1E8;
    --beige:#E6D5C3;
    --brown:#3A2A20;
    --orange:#C7772A;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,sans-serif;
    background:var(--cream);
    color:var(--brown);
    padding-bottom:100px;
}

header{
    text-align:center;
    background:var(--brown);
    color:white;
    padding:20px;
}

.logo{
    width:120px;
    border-radius:15px;
    margin-bottom:10px;
}

.languages{
    margin-top:15px;
}

.languages button{
    border:none;
    padding:8px 12px;
    border-radius:8px;
    cursor:pointer;
}

.menu-nav{
    position:sticky;
    top:0;
    background:var(--cream);
    display:flex;
    justify-content:center;
    gap:10px;
    padding:15px;
    z-index:100;
}

.menu-nav a{
    text-decoration:none;
    background:var(--orange);
    color:white;
    padding:12px 18px;
    border-radius:12px;
    font-weight:bold;
}

.container{
    max-width:800px;
    margin:auto;
    padding:15px;
}

section{
    margin-bottom:40px;
}

section h2{
    margin-bottom:15px;
    color:var(--orange);
}

.card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    margin-bottom:15px;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.info{
    padding:15px;
}

.info h3{
    margin-bottom:8px;
}

.info p{
    margin-bottom:10px;
    font-weight:bold;
}

.info button{
    width:100%;
    background:var(--orange);
    color:white;
    border:none;
    padding:12px;
    border-radius:10px;
    cursor:pointer;
}

.cart{
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    background:var(--brown);
    color:white;
    padding:15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.order-btn{
    background:var(--orange);
    color:white;
    border:none;
    padding:12px 18px;
    border-radius:10px;
    cursor:pointer;

}

.cart-modal{
    position:fixed;
    left:0;
    right:0;
    bottom:-100%;
    background:white;
    border-radius:20px 20px 0 0;
    padding:20px;
    transition:0.3s;
    z-index:9999;
    max-height:80vh;
    overflow:auto;
}

.cart-modal.show{
    bottom:0;
}

.cart-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.cart-header button{
    border:none;
    background:none;
    font-size:20px;
}

.cart-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:10px 0;
    padding:10px;
    border-bottom:1px solid #ddd;
}

.cart-item button{
    background:#ffffff;
    color:white;
    border:none;
    border-radius:8px;
    padding:5px 10px;
}

.cart-footer{
    margin-top:20px;
}

.toast{
    position:fixed;
    bottom:90px;
    left:50%;
    transform:translateX(-50%);
    background:#3A2A20;
    color:white;
    padding:12px 20px;
    border-radius:12px;
    opacity:0;
    transition:0.3s;
    z-index:9999;
}

.toast.show{
    opacity:1;
}