/* BASIC css start */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

img {
    width: 100%;
}

.wrap {
    width: 100%;
    text-align: center;
    margin-top: 40px;
}

.wrap > div {
    position: relative;
    width: 100%;
}

.flex {
    display: flex;
}

.bcate {
    padding: 50px 0 20px;
    font-size: 24px;
    color: #000;
    font-weight: 500;
    font-family: 'Lato', sans-serif;
    text-align: center;
    border-bottom: solid 1px #eee;
}

.list_wrap_line {
    padding: 0 10px;
    margin: 10% auto;
}

.prod_list_r {
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 5px;
    row-gap: 20px;
}

.prod_list_r li {
    flex-basis: calc(50% - 5px);  /* 모바일에서 두 개씩 나열 */
}

.item_list_name {
    margin-top: 10px;
}

.item_em, .item_span {
    font-style: normal;
    font-size: 12px;
    display: block;
    margin-bottom: 4px;
    line-height: 15px;
}

.item_list {
    margin-right: 0;
}
/* BASIC css end */

