.page-top-container{
    background: url("../img/menu_new/menu-top-bg.jpg");
}
.tab-area{
    margin: 40px auto;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}
.tab-area .tab{
    color: #3C3C3C;
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -1px;
    border-radius: 21.5px;
    background: #D9D9D9;
    width: 135px;
    padding: 8px;
    cursor: pointer;
}
.tab-area .tab.active,
.tab-area .tab:hover{
    background: #11624A;
    color: #fff;
}
.tab-container{
    margin: 0 auto;
    max-width: 1280px;
    width: 90%;
}
.tab-container .tab-wrap{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 70px;
}
.tab-container .tab-wrap .item{
    width: 25%;
    border: 1px solid #CECECE;
    padding: 35px 20px 30px;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
    margin: -0.5px;
}
.tab-container .tab-wrap .item .menu-img{
    width: 100%;
    background-size: cover !important;
    background-position: center center !important;
    aspect-ratio: 1 / 1;
    margin-bottom: 25px;
}
.tab-container .tab-wrap .item .category,
.tab-container .tab-wrap .item .name{
    color: #000;
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px; /* 125% */
    letter-spacing: -1px;
}
.tab-container .tab-wrap .item:hover{
    background: #11624A;
}
.tab-container .tab-wrap .item:hover .category,
.tab-container .tab-wrap .item:hover .name{
    color: #fff;
}
.menu-modal{
    max-width: 830px;
    width: 90%;
    position: fixed; /* 화면 기준 중앙 배치 → absolute 대신 fixed 권장 */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10; /* 다른 요소 위에 보이도록 */
    background: #fff;
    box-shadow: 0 7px 8px 0 rgba(0, 0, 0, 0.25);
    display: none;
}
.menu-modal .modal-head{
    width: 100%;
    position: relative;
    border: 1px solid #FFF;
    background: #11624A;
    padding: 10px 0;
}
.menu-modal .modal-head .name{
    color: #FFF;
    text-align: center;
    font-family: Pretendard;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 35px; /* 116.667% */
    letter-spacing: -1.5px;
}
.menu-modal .modal-head .modal-close{
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 22px;
}
.menu-modal .modal-body{
    color: #1D1D1D;
    padding: 22px 0 25px;
}
.menu-modal .modal-body .desc{
    text-align: center;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 166.667% */
    width: 80%;
    margin: 0 auto;
    word-break: keep-all;
}

@media(max-width: 1100px) {
    .tab-container .tab-wrap .item .category, .tab-container .tab-wrap .item .name{
        font-size: 18px;
    }
    .tab-container .tab-wrap .item{
        padding: 25px 20px;
    }
}
@media(max-width: 900px) {
    .tab-container .tab-wrap .item{
        width: 33%;
    }
    .tab-area{
        width: 90%;
    }
}
@media(max-width: 650px) {
    .tab-container .tab-wrap .item{
        width: 50%;
    }
    .tab-container .tab-wrap .item .menu-img{
        background-size: 105% !important;   /* 모바일만 음식 약간 크게 (PC 유지) */
    }
    .tab-area{
        gap: 10px;
    }
    .tab-area .tab{
        font-size: 17px;
    }
    .menu-modal .modal-head .name{
        font-size: 23px;
    }
    .menu-modal .modal-body .desc{
        font-size: 15px;
        width: 90%;
    }
}
@media(max-width: 480px) {
    .tab-area{
        margin: 30px auto 15px;
    }
    .tab-area .tab {
        font-size: 15px;
        border-radius: 13.5px;
    }
    .tab-container .tab-wrap .item {
        padding: 15px 20px;
    }
    .tab-container .tab-wrap .item .menu-img{
        margin-bottom: 15px;
    }
    .tab-container .tab-wrap .item .category, .tab-container .tab-wrap .item .name {
        font-size: 15px;
        line-height: 22px;
    }
}
