*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;

    color:#222;

    line-height:1.5;

}

.container{

    max-width:750px;

}

.menu-wrapper{

    background:#fff;

    border-radius:20px;

    padding:30px;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

}

.menu-logo{

    max-width:220px;

    max-height:120px;

    object-fit:contain;

}

h1{

    font-size:2rem;

    font-weight:700;

    margin-bottom:.5rem;

}

.menu-category{

    margin-top:45px;

}

.menu-category h2{

    color:var(--accent);

    font-size:1.5rem;

    font-weight:700;

    margin-bottom:20px;

    padding-bottom:8px;

    border-bottom:3px solid var(--accent);

}

.category-description{
    margin-top:-10px;
    margin-bottom:18px;
    color:#777;
    font-size:.95rem;
}

.menu-product{

    padding:18px 0;

    border-bottom:1px solid #ececec;

}

.menu-product:last-child{

    border-bottom:none;

}

.product-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:20px;

}

.product-header h5{

    font-size:1.1rem;

    margin-bottom:5px;

    font-weight:600;

}

.description{

    color:#777;

    font-size:.92rem;

}

.product-allergens{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    margin-top:9px;
}

.product-allergen{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:30px;
    height:30px;
    gap:5px;
    padding:0 9px;
    border:1px solid #dedede;
    border-radius:999px;
    background:#f7f7f7;
    color:var(--accent);
    font-size:.76rem;
    font-weight:600;
    line-height:1;
}

.product-allergen svg{
    width:18px;
    height:18px;
    flex:0 0 18px;
}

.product-allergen-name{
    color:#555;
}

.product-image{

    width:100%;

    max-height:220px;

    object-fit:cover;

    border-radius:12px;

    margin-top:15px;

    margin-bottom:15px;

}

.price-list{

    margin-top:12px;

}

.price-single{

    font-size:1.35rem;

    font-weight:700;

    color:var(--accent);

    text-align:right;

}

.price-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:4px 0;

    font-size:1rem;

}

.price-row span:last-child{

    font-weight:700;

    color:var(--accent);

}

@media (max-width:768px){

    .menu-wrapper{

        padding:20px;

        border-radius:0;

        box-shadow:none;

    }

    h1{

        font-size:1.7rem;

    }

    .menu-category h2{

        font-size:1.3rem;

    }

    .price-single{

        font-size:1.2rem;

    }

}

@media (prefers-color-scheme:dark){

    .menu-wrapper{

        background:#1d1d1d;

    }

    body{

        color:#eee;

    }

    .description{

        color:#bbb;

    }

    .category-description{

        color:#bbb;

    }

    .menu-product{

        border-color:#333;

    }

    .product-allergen{

        border-color:#444;
        background:#292929;

    }

    .product-allergen-name{

        color:#ddd;

    }

}

.category-nav{

    position:sticky;

    top:0;

    z-index:1000;

    display:flex;

    gap:10px;

    overflow-x:auto;

    padding:12px;

    margin-bottom:25px;

    background:#fff;

    border-bottom:1px solid #e5e5e5;

    scrollbar-width:none;

}

.category-nav::-webkit-scrollbar{

    display:none;

}

.category-link{

    flex-shrink:0;

    text-decoration:none;

    color:#444;

    padding:8px 16px;

    border-radius:999px;

    background:#f4f4f4;

    font-size:.95rem;

    transition:.2s;

}

.category-link.active{

    background:var(--accent);

    color:#fff;

    font-weight:600;

}

.product-info{

    flex:1;

}

.product-price{

    white-space:nowrap;

    margin-left:20px;

    font-size:1rem;

    font-weight:700;

    color:var(--accent);

    align-self:flex-start;

}
