#main-menu {
    padding: 0 12px 12px;
}

#main-menu header {
    position: relative;
}

#main-menu header img {
    position: absolute;
}

#main-menu header img:nth-child(1) {
    top: -20px;
    left: -70px;
}

#main-menu header img:nth-child(2) {
    top: 30px;
    right: 0;
}


#main-menu h1 {
    font-size: 40px;
    padding: 25px 0;
    margin: 10px 0 0;
    text-align: center;
    background-color: var(--color-primary);
    border-radius: 50px 0 50px 0;
    color: white;
}

#menu-tabs {
    position: relative;
    text-align: center;
    padding: 20px 0;
}

#menu-tabs #menu-leaf {
    top: -80px;
    left: 0;
}

.menu-tab, .order-btn {
    border: none;
    width: 100px;
    height: 40px;
    font-size: 16px;
    font-weight: bold;
    transition: 0.4s;
    color: #fff;
    margin: 0 4px;
}

.btn-disabled {
    opacity: 0.4;
}

.menu-tab:hover, .order-btn:hover {
    box-shadow: 0 15px 15px 8px rgba(12, 76, 53, .1);
    color: var(--color-text-primary);
}

.menu-description {

}

.total-meal-qty {
    font-weight: bold;
}

#menu-wrapper {
    margin-top: 32px;
    display: flex;
    position: relative;
    justify-content: space-between;
}

#menu-wrapper,
.order-summary {
    max-height: 400px;
}

#menu-grid {
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
    box-shadow: 10px 4px 16px 8px rgba(12, 76, 53, .1);
}

.menu-card {
    height: 200px;
    display: flex;
    gap: 8px;
}

.menu-img {
    width: 200px;
    height: 200px;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-text {
    width: 66%;
}

.menu-title {
    margin: 0;
}

.menu-desc {
    height: 92px;
    overflow-y: auto;
}

.menu-btn {
    width: 120px;
    height: 48px;
}

.qty-wrapper {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 12px;
}

.qty-btn {
    background-color: var(--color-primary);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    position: relative;
    cursor: pointer;
}

.qty-btn img {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.qty {
    width: 60px;
    height: 40px;
    font-size: 16px;
    padding: 0;
    text-align: center;
    text-indent: 0;
}

.add img {
    width: 32px;
    height: 32px;
}

.order-summary {
    padding: 20px;
    border-radius: 0 50px 0 50px;
    flex-shrink: 0;
    align-self: baseline;
    width: 360px;
    display: none;
    max-height: 100vh;
    background-color: var(--color-complimentary);
    right: 0;
    box-shadow: 10px 15px 15px 8px rgba(12, 76, 53, .1);
    border: solid 2px var(--color-primary);
    position: relative;
}

.order-summary-mobile {
    width: 40px;
    height: 40px;
    position: absolute;
    border-radius: 8px;
    background-color: var(--color-text-primary);
    top: -60px;
    right: 0;
}

.order-summary-mobile img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
}

.summary-dropdown {
    width: 200px;
    height: 200px;
    background-color: #fff;
    border-radius: 20px;
    display: none;
    position: absolute;
    border: solid 1px;
    top: 40px;
    right: 0;
}

.order-summary-mobile:hover .summary-dropdown {
    display: block;
}

@media screen and (min-width: 880px) {

    .menu-tab, .order-btn {
        width: 137px;
        height: 52px;
        margin: 0 10px;
    }

    .order-summary-mobile {
        width: 80px;
        height: 80px;
        display: none;
    }

    .order-summary {
        display: block;
    }

}

@media screen and (min-width: 1200px) {

    #main-menu {
        padding: 0 100px 100px;
    }

}

@media screen and (min-width: 1400px) {

    #menu-grid {
        grid-template-columns: 1fr 1fr;
    }

}

.order-page {
    top: 50px;
    width: auto;
}

.order {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 0 30px 0 30px;
    padding: 10px;
}

.order > * {
    margin: 0;
    padding: 0;
}

.order-header {
    font-size: 24px;
    text-decoration: underline;
    text-align: center;
}

.order-btn {
    display: block;
    margin: 12px auto 0;
}