/* product_list */
#product_list {
	padding-bottom: 5vw
}

#product_list li {
	display: grid;
	grid-template-columns: 60% 30%;
	justify-content: space-between;
	align-items: center;
}

#product_list li:after {
	content: '';
	position: absolute;
	width: 50%;
	height: 1px;
	background: rgb(171 171 171 / 25%);
	bottom: 50px;
	right: 0;
	z-index: 2;
}

#product_list li:nth-child(even):after {
	right: unset;
	left: 0;
}

#product_list li:nth-child(even) {
	grid-template-columns: 30% 60%;
}

#product_list li:nth-child(even) .clip {
	order: 2
}

#product_list li img {
	aspect-ratio: 4 / 3;
	height: auto;
}

#product_list li h3 {
	height: auto;
	letter-spacing: 1px;
	font-family: "Heebo", var(--font-family), sans-serif;
	color: #666666;
	font-size: 28px;
	font-weight: 600;
	text-transform: uppercase;
}

#product_list li h5 {
	color: #414141;
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 30px;
}

#product_list li p {
	-webkit-line-clamp: 3;
	height: auto;
	line-height: 2.2;
	text-align: justify;
	letter-spacing: 1.5px;
}

/* productdetail */
#productdetail {
	margin: 50px 0;
}

/* imglist */
#imglist {
	margin-bottom: 50px;
}

#imglist img {
	aspect-ratio: 5 / 3;
}

/* productinfo */
#productinfo {
	margin-bottom: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#productinfo .cate {
	letter-spacing: 1px;
	font-family: "Heebo", var(--font-family), sans-serif;
	color: #666666;
	font-size: 28px;
	font-weight: 600;
	background: none;
	display: inline-block;
	padding: 0;
	height: auto;
	border-radius: 0;
	font-weight: 300;
}

#productinfo h1 {
	margin: 10px 0 20px;
	letter-spacing: 1px;
	font-family: "Heebo", var(--font-family), sans-serif;
	color: #666666;
	font-size: 48px;
	font-weight: 600;
	line-height: 1.5;
}

#productinfo .txt {
	color: #414141;
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 30px;
	letter-spacing: 2px;
}

#productinfo .txt label {
	margin-right: 15px;
	width: 50px;
}

#productinfo .price font {
	font-weight: 600;
	font-size: 25px;
}

#productinfo article {
	padding-bottom: 15px;
	font-weight: 300;
	font-size: 16px;
	text-align: center;
	width: 70%;
	margin: 0 auto 30px;
	letter-spacing: 1px;
	line-height: 2.2;
}

#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;
}

#productinfo .buyBtns a {
	padding: 30px 40px;
	background: var(--primary);
	color: #fff;
	text-align: left;
	width: auto;
}

#productinfo .buyBtns a span {
	width: 9px;
	height: 9px;
	background: #fff;
	border-radius: 50px;
	margin-left: 110px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative
}

#productinfo .buyBtns a span:after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	background: #fff;
	border-radius: 50px;
	opacity: .25
}

#productinfo .buyBtns a:hover span:after {
	width: 40px;
	height: 40px
}

/* productimg */
#productimg {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

#productimg img {
	aspect-ratio: 3 / 4;
	height: auto;
}

#productimg>div {
	margin: 5px;
}

/* 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: 1024px) {
	#productdetail #imglist {
		display: block;
		width: 100%;
		margin: 0 0 40px;
	}

	#productdetail #imglist>div {
		width: 100%;
	}

	#productimg {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 980px) {
	#productinfo article {
		width: 90%;
	}

	#product_list li {
		margin-left: 0;
		margin-right: 0;
		display: block;
	}

	#product_list li .info {
		margin-top: 20px;
	}

	#productinfo {
		margin-top: 5vw;
	}
}

@media screen and (min-width: 761px) {}

@media screen and (max-width: 640px) {
	#productinfo h1 {
		font-size: 38px;
		text-align: center;
	}
}