
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    background:#0e0e12;
    color:#fff;
}

/* HEADER */
.menu-header{
    text-align:center;
    padding:60px 20px 30px;
}

.menu-header h1{
    font-size:40px;
    letter-spacing:3px;
    color:#D4AF37;
}

.menu-header p{
    color:#ccc;
    margin-top:10px;
}

/* GRID */
.menu-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    padding:20px 8%;
    padding-bottom:120px;
}

.menu-item{
    background:#1a1a22;
    padding:20px;
    border-radius:15px;
    transition:0.3s;
    position:relative;
}

.menu-item:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

.menu-item h3{
    display:flex;
    justify-content:space-between;
    font-size:18px;
    margin-bottom:10px;
    color:#D4AF37;
}

.menu-item p{
    font-size:14px;
    color:#bbb;
}

/* BOUTON PLUS */
.add-btn{
    position:absolute;
    top:15px;
    right:15px;
    width:30px;
    height:30px;
    border-radius:50%;
    border:none;
    background:#D4AF37;
    color:#000;
    font-size:20px;
    cursor:pointer;
}

/* PANIER */
.cart{
    position:fixed;
    bottom:20px;
    left:20px;
    width:300px;
    background:#1c1c24;
    padding:20px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.5);
    max-height:400px;
    overflow-y:auto;
}

.cart h2{
    font-size:18px;
    margin-bottom:15px;
    color:#D4AF37;
}

.cart ul{
    list-style:none;
    margin-bottom:15px;
}

.cart li{
    font-size:14px;
    margin-bottom:8px;
}

.total{
    font-weight:bold;
    margin-bottom:15px;
}

.whatsapp-btn{
    width:100%;
    padding:10px;
    background:#25D366;
    border:none;
    color:white;
    font-weight:bold;
    cursor:pointer;
    border-radius:8px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .cart{
        width:90%;
        left:5%;
    }
}
