.menu-header{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.left{
    visibility: hidden;
}

.menu-content, .cart-content{
    width: 100%;
    height: 100%;
    background-color: var(--light-blue);
    margin-top: 8px;
    padding-bottom: 20px;
    min-height: 630px;
}

.menu-item{
    width: 90%;
    background-color: var(--background);
    border-radius: 10px;
    margin-top: 15px;
    display: flex;
    text-decoration: none;
    height: fit-content;
}

.menu-details{
    width: 70%;
    padding: 8px 12px;
}

.menu-details p {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: pre-wrap;
    line-height: 1.5em;
    max-height: 11.5em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    padding: 5px;
    margin: 0;
}

.menu-details h2:first-child{
    color: var(--black);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.menu-details h2:last-child{
    color: var(--body-text) !important;
}


.menu-image{
    display: block;
    background-image: url(../../images/menu-items/01_generaltsochicken.webp);
    background-size: cover;
    background-position: center;
    width: 30%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.filter-popup-content{
    height: 0;
    margin-top: -70px;
}

#filter-popup{
    visibility: hidden;
    cursor: pointer;
}
.filter-options{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 250px;
    border-radius: 20px;
    gap: 8px;
    padding: 8px;
    position: relative;
    z-index: 10;
    background-color: var(--background);
    padding-top: 58px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.filter-options h3{
    border: 3px var(--orangey) solid;
    border-radius: 10vw;
    padding: 4px 8px;
    background-color: var(--background);
    cursor: pointer;
}

.filter-btn{
    z-index: 12;
    padding: 12px 20px;
    width: 140px;
    transition: width 0.3s ease-in-out;
}

.active-filter{
    background-color: var(--orangey) !important;
    color: var(--background);
}