#product_detail {
    padding: 120px 0;
}
.productHeader{
    display: none;
}
.productHeader > button{
    background-color: transparent;
    border:0;
    margin-right: auto;
    position: absolute;
    left: 20px;
}
.productHeader > button > i{
    font-size: 1.5rem;
}
.productHeader > .title{
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.025em;
    color: #111111;
}
#product_detail section{
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
.productInfo{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.productInfo .imageBox{
    flex: 0 0 59.38%;
    overflow: hidden;
}
.productInfo .infoBox{
    flex: 0 0 38.75%;
    display: flex;
    flex-wrap: wrap;
}
.productInfo .infoBox nav{
    width: 100%;
}
.productInfo .infoBox .breadcrumb{
   margin-bottom: 0;
}
.productInfo .infoBox .breadcrumb li{
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.025em;
    color: #111111;
}
.productInfo .infoBox .breadcrumb li a{
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: #767676;
}
.productInfo .infoBox .title{
    font-weight: 400;
    font-size: 48px;
    line-height: 62px;
    letter-spacing: -0.025em;
    color: #111111;
    width: 100%;
}
.productInfo .infoBox .colorList ul{
    display: flex;
    gap: 20px;
}
.productInfo .infoBox .colorList ul li{
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.025em;
    color: #767676;
    text-align: center;
    cursor: pointer;
}
.productInfo .infoBox .colorList ul li span{
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.productInfo .infoBox .colorList ul li span.WG{
    /* background-color: #ecddc0; */
    border: 1px solid #767676;
}
.productInfo .infoBox .colorList ul li span.NE{
    background-color: #ecddc0;
    /* border: 1px solid #767676; */
}
.productInfo .infoBox .colorList ul li span.BL{
    /* 블랙 */
    background-color: #111111;
}
.productInfo .infoBox .colorList ul li span.GN{
    /* 그린 */
    background-color: #64c478;
}
.productInfo .infoBox .colorList ul li span.BU{
    /* 블루 */
    background-color: #0f3f77;
}
.productInfo .infoBox .colorList ul li span.PK{
    /* 핑크 */
    background-color: #d1476a;
}
.productInfo .infoBox .colorList ul li span.YL{
    /* 옐로우 */
    background-color: #d9c766;
}
.productInfo .infoBox .colorList ul li span.GR{
    /* 그레이 */
    background-color: #b5aeae;
}
.productInfo .infoBox .colorList ul li span.BR{
    /* 브라운 */
    background-color: #6c473e;
}
.productInfo .infoBox .colorList ul li span.DB{
    /* 딥브라운 */
    background-color: #4d1712;
}
.productInfo .infoBox .info{
    align-self: flex-end;
}
.productInfo .infoBox .info dl{
    display: flex;
    border-bottom: 1px solid #F7F7FB;
}
.productInfo .infoBox .info dl dt{
    width: 200px;
    padding: 32px 24px;
    background-color: #F7F7FB;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.025em;
    color: #505050;
}
.productInfo .infoBox .info dl dd{
    width: calc(100% - 200px);
    padding: 32px 24px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.025em;
    color: #767676;
}
.productInfo .infoBox .info dl dd ul{
    padding-left: 20px;
}
.productInfo .infoBox .info dl dd ul li{
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    list-style: disc;
}
.productInfo .infoBox .info dl dd ul li a{
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-decoration: underline;
    color: #767676;
}
.cautions{
    margin-top: 120px;
}
#product_detail h4{
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: -0.025em;
    color: #111111;
    margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
    #product_detail{
        padding: 20px;
    }
    .productHeader{
        display: flex;
        justify-content: center;
    }
    .productInfo .imageBox{
        flex: 0 0 100%;
    }
    .productInfo .infoBox{
        flex: 0 0 100%;
    }
    .productInfo .infoBox nav{
        display: none;
    }
    .productInfo .infoBox .title{
        display: none;
    }
    .productInfo .infoBox .info dl dt{
        width: 40%;
    }
    .productInfo .infoBox .info dl dd{
        width: 60%;
    }
    .cautions{
        margin-top: 25px;
    }
}