@charset "utf-8";
/* 새글 스킨 (latest) */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.food-category{
    max-width: 1410px;
    margin: 0 auto;

}

.food-category-name{
    max-width: 1410px;
    display: flex;
    margin: 0 auto 30px;
    cursor: pointer;
    width: 100%;
}

.food-category-item{
    padding: 10px;
    font-size: 20px;
}

.food-category-item.on{
    background-color: #1a202a;
    color: #fff;
}

.food-wrapper{
    margin-bottom: calc(100px + 1.5vw);
}
.food-list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 20px;
    margin: 0 auto;
    line-height: 1.5;
}
.food-item{
    width: calc(100%/4 - 15px);
}
.food-image{
    margin-bottom: 20px;
    height: 250px;
}
.food-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.food-tit{
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 700;
}
.food-price{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.food-price-inner{
    display: flex;
    align-items: center;
}

.food-bar{
    display: block;
    width: 100%;
    height: 1px;
    background-color: #1a202a;
    margin: 10px 0;
}
.food-txt{
    font-size: 14px;
    font-weight: 400;
}
.menu-name{
    margin-right: 10px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
}
.menu-name img{
    width: 100%;
}
.food-item.off{
    display: none;
}

.deco-list{
    font-size: 10px;
    margin-left: 10px;
    display: flex;
    align-items: flex-end;
    line-height: 1;
}
.food-suggest{
    padding: 3px;
    background-color: rgb(33, 88, 70);
    color: #fff;
    margin-right: 5px;
}
.food-popular{
    padding: 3px;
    background-color: #f0ae40;
    color: #fff;
}
.food-new{
    padding: 3px;
    background-color: red;
    color: #fff;
    margin-right: 5px;
}




@media screen and (max-width: 769px) {
    .food-item{
        width: calc(100% / 3 - 15px);
    }
    .food-category-item{
        font-size: 16px;
    }
    .food-wrapper{
        margin-bottom: calc(70px);
    }
}


@media screen and (max-width: 560px) {
    .food-price{
        flex-direction: column;
        align-items: flex-start;
    }

    .food-price-inner{
        display: flex;
        margin-bottom: 10px;
        align-items: center;
    }

    .deco-list{
        margin-left: 0;
    }

    .food-category-item{
        font-size: 14px;
    }

    .food-category{
        overflow: auto;
    }
    .food-category-name{
        white-space: nowrap;
    }
    .food-tit{
        font-size: 16px;
    }
    .food-item{
        width: calc(100% / 2 - 15px);
    }
    .food-image{
        height: 135px;
    }
}