#page-home {
    .modal-dish {
        position: fixed;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        background: #fff;
        z-index: 10;
        border-radius: 12px;
        .preview {
            width: 350px;
            height: 350px;
            -o-object-fit: cover;
            object-fit: cover;
            -o-object-position: center center;
            object-position: center center;
            border-radius: 9px;
        }
        padding: 24px;
        text-align: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        max-width: 600px;
        display: none;
        &.active {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }
        .close {
            position: absolute;
            right: 24px;
            top: 24px;
            background: #1c5257;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-sizing: content-box;
            box-sizing: content-box;
            padding: 10px;
        }
        button {
            width: 100%;
        }
        .text {
            margin-top: 24px;
            margin-bottom: 24px;
            h4 {
                color: #1c5257;
            }
            p {
                font-size: 18px;
                font-family: sans-serif;
                line-height: 1.2;
                color: #3d3f41;
                margin: 7px 0 20px;
            }
            .price {
                color: #1c5257;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                font-style: italic;
                grid-gap: 16px;
                gap: 16px;
            }
        }
    }

    .bg {
        position: fixed;
        z-index: 9;
        backdrop-filter: blur(10px);
        background-color: rgba(0, 0, 0, 0.3);
        left: 0;
        top: 0rem;
        right: 0;
        bottom: 0;
        display: none;
        &.active {
            display: block;
        }
    }

    header {
        position: relative;
        padding: 30px 85px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 25px;
        font-style: italic;
        .left,
        .right {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            grid-gap: 24px;
        }
    }

    video {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        z-index: -2;
    }

    &:before {
        content: '';
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        background: -webkit-gradient(linear, left top, right top, from(#dcb18b), color-stop(#dcb18b), to(transparent));
        background: linear-gradient(90deg, #dcb18b, #dcb18b, transparent);
        z-index: -1;
    }

    main {
        margin-top: 15px;
        margin-left: 85px;
        max-width: 725px;
        .choose-menu {
            text-transform: uppercase;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            grid-gap: 32px;
            margin-bottom: 24px;
            span {
                cursor: pointer;
                font-size: 64px;
                color: #1c5257;
                opacity: 0.3;
                -webkit-transition: 0.3s ease;
                transition: 0.3s ease;
                -webkit-transform: scale(0.96);
                transform: scale(0.96);
                &:hover {
                    opacity: 1;
                }
                &.active {
                    -webkit-transform: scale(1);
                    transform: scale(1);
                    opacity: 1;
                    text-decoration: underline;
                }
            }
        }
        #menus {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            width: 100%;
            .menu-item {
                width: 100%;
                opacity: 0;
                display: none;
                &.active {
                    opacity: 1;
                    display: block;
                }
            }
            .menu-category-block {
                -webkit-transition: 0.3s ease;
                transition: 0.3s ease;
                margin-bottom: 32px;
                &:hover {
                    background-color: var(--bg);
                }
                .menu-category-header {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-pack: justify;
                    -ms-flex-pack: justify;
                    justify-content: space-between;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    font-style: italic;
                    padding-bottom: 4px;
                    border-bottom: var(--border);
                    font-size: 22px;
                    padding: 12px 16px;
                }
                .menu-category-title {
                    text-transform: capitalize;
                }
                .menu-items-wrap {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-orient: vertical;
                    -webkit-box-direction: normal;
                    -ms-flex-direction: column;
                    flex-direction: column;
                    .menu-item-card {
                        padding: 10px 16px;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        cursor: pointer;
                        -webkit-box-pack: justify;
                        -ms-flex-pack: justify;
                        justify-content: space-between;
                        -webkit-box-align: start;
                        -ms-flex-align: start;
                        align-items: flex-start;
                        -webkit-transition: 0.3s ease;
                        transition: 0.3s ease;
                        border-top: 1px solid transparent;
                        border-bottom: 1px solid transparent;
                        &:hover {
                            border-top: 1px solid var(--corp);
                            border-bottom: 1px solid var(--corp);
                            background-color: var(--status-yellow-light);
                            h4 {
                                color: var(--corp);
                            }
                        }
                        .menu-item-left {
                            .menu-item-desc {
                                font-style: italic;
                                color: #3d3f41;
                                font-family: sans-serif;
                                font-size: 14px;
                                max-width: 40ch;
                            }
                        }
                        .menu-item-right {
                            text-align: right;
                            font-style: italic;
                            .menu-item-price-usd {
                                font-size: 28px;
                            }
                            .menu-item-price-vnd {
                                color: #3d3f41;
                                font-size: 14px;
                            }
                            h4 {
                                font-size: 34px;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media only screen and (max-width: 768px) {
    #page-home {
        header {
            padding: 15px;
            font-size: 18px;
            img {
                width: 52px;
                height: 52px;
            }
        }
        video {
            display: none;
        }
        .modal-dish {
            width: calc(100% - 30px);
            h4 {
                font-size: 24px !important;
            }
        }
        &:before {
            background: #dcb18b;
        }
        main {
            margin-left: 15px;
            max-width: calc(100% - 30px);
            .menu-category-block {
                &:hover {
                    background-color: transparent !important;
                }
            }
            .choose-menu {
                grid-gap: 12px;
                span {
                    font-size: 24px;
                }
            }
            .menu-category-header {
                padding-left: 0 !important;
                padding-right: 0 !important;
            }
            .menu-item-card {
                &:hover {
                    background-color: transparent !important;
                }
                .menu-item-price-vnd {
                    font-size: 12px;
                }
                .menu-item-price-usd {
                    font-size: 22px !important;
                }
                padding: 10px 0 !important;
            }
        }
    }
}
