/* product_list */
#product_list{display:grid;grid-template-columns: repeat(2, 1fr);gap: 50px;margin-bottom: 5vw;}
#content_wrap .list_box#product_list li{box-shadow: 0 0 30px rgb(114 47 55 / 10%);display: grid;grid-template-columns: 60px 1fr;gap: 50px;align-items: start;padding: 40px;margin: 0;}
#product_list li .price_box {display:flex;flex-direction: column;align-items: flex-start;}
#product_list li h3 {height: auto;font-size: 20px;font-weight: 500;}
#product_list li .price_box p {font-family: "EB Garamond", serif;color: var(--primary);}
#product_list li .price_box article {-webkit-line-clamp: 2;height: auto;font-size: 15px;margin: 10px 0 30px;font-weight: 300;color: #474747;}
#product_list li .price_box span{display: inline-flex;align-items: center;font-family: "EB Garamond", serif;gap: 10px;border-bottom: 1px solid #d5d5d5;padding-bottom: 8px;}
#product_list li:hover .price_box span{color:var(--primary)}
#product_list li .price_box svg {width: 15px;height: 15px;}

/* productdetail */
#productdetail { margin: 50px 0 80px; }

/* imglist */
#imglist .clip { -webkit-clip-path: url(#clip_product_detail); clip-path: url(#clip_product_detail); }

/* productinfo */
#productinfo .cate { padding: 2px 15px; max-width: calc(100% - 105px); height: 22px; font-weight: 100; font-size: 13px; z-index: 6; }
#productinfo h1 { margin: 10px 0 20px; }
#productinfo .txt { margin-bottom: 15px; }
#productinfo .txt label { margin-right: 15px; width: 50px; }
#productinfo .price font { font-weight: 600; font-size: 25px; }
#productinfo article { margin-bottom: 30px; padding-bottom: 15px; border-bottom: 1px rgba(var(--primary-rgb), .6) dashed; font-weight: 300; font-size: 14px; }
#productinfo .sell_box >* { line-height: 100%; font-size: 17px; vertical-align: baseline; }
#productinfo .sell_box span { margin: 0 3px 0 15px; }
#productinfo .sell_box b { font-size: 36px; }
#productinfo .buyBtns {margin-top: 30px;text-align: center;}
#productinfo .buyBtns a {padding: 15px 40px;width: auto;border-radius: 50px;}
#productinfo .buyBtns a:hover{background:var(--primary)}

/* orderfunction */
#orderfunction a[data-action="plusBtn"] { margin: 0 2px; width: 35px; height: 35px; background: rgba(var(--secondary-rgb), .3); border-radius: 5px; line-height: 30px; font-weight: 600; font-size: 28px; }
#orderfunction a.limit[data-action="plusBtn"] { line-height: 27px; font-size: 33px; }
#orderfunction input { margin: 0 5px; width: 30px; border-width: 0 0 1px; }
#orderfunction .addcar { float: right; }

/* productTabs */
#productTabs .tabs { margin-bottom: 30px; background: rgba(var(--black-rgb), .08); }
#productTabs .tabs li a { padding: 15px 30px; }
#productTabs .tabs li a:before { position: absolute; width: 0; height: 3px; background: var(--primary); display: block; bottom: 0; left: 0; content: ""; }
#productTabs .tabs li.active a:before { width: 100%; }

@media screen and (max-width: 980px){
	#product_list{grid-template-columns:1fr}
}
@media screen and (max-width: 980px){
	#productinfo { margin-top: 5vw; }
}
@media screen and (min-width: 761px){
}
@media screen and (max-width: 640px){
    #content_wrap .list_box#product_list li{gap: 30px;padding: 30px;}
}