#product {
    padding: 120px 0;
}
#product section{
    width: 100%;
    max-width: 1540px;
    margin-left: auto;
    margin-right: auto;
}
.productType{
    font-weight: 700;
    font-size: 28px;
    line-height: 48px;
    text-align: center;
    color: #111111;
}
.categoryList{
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.categoryList li{
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.025em;
    color: #999999;
    position: relative;
    cursor: pointer;
    padding: 3px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.5s;
}
.categoryList li:hover,.categoryList li.on{
    color: #111111;
    border-color: #111111;
}
.productList{
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px 20px;
}
/* .productList > :only-child{
    grid-column: 1/-1;
 } */

.productList .imageBox{
    /* background-color: rgba(0, 0, 0, 0.03); */
    display: flex;
    align-items: center;
    justify-content: center;
}
.productList .imageBox img{
    max-height: 334px;
}
.productList li a .infoBox{
    margin-top: 15px;
}
.productList li a .infoBox .productName{
    font-weight: 700;
    font-size: 15px;
    line-height: 22px;
    color: #111111;
}
.productList li a .infoBox .productInfo{
    margin-top: 5px;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #505050;
}
.btnMore{
    background: #111111;
    border-radius: 100px;
    padding: 10px 30px;
    color: #fff;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    margin: 50px auto 0;
    display: block;
    width: fit-content;
    border: 1px solid #111111;
    transition: all 0.5s;
}
.btnMore:active,.btnMore:focus{
    color: #fff;
}
.btnMore:hover{
    background-color: transparent;
    color: #111111;
}
@media screen and (max-width: 768px) {
    #product {
        padding: 20px;
    }
    .productType{
        text-align: left;
        font-weight: 600;
        font-size: 20px;
        line-height: 28px;
        letter-spacing: -0.025em;
    }
    .categoryList{
        display: flex;
        align-items: stretch;
        box-sizing: border-box;
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
        -ms-overflow-style: none; /* IE and Edge */ 
        scrollbar-width: none; /* Firefox */
        margin-top: 15px;
    }
    .categoryList::-webkit-scrollbar {
        display: none;
    }
    .categoryList li{
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -0.025em;
    }
    .productList{
        margin-top: 15px;
        grid-template-columns: 1fr 1fr;
        grid-gap: 10px 10px;
    }
}