.showroom{
	width: 100%;
}
.product__detail{
	margin-top: 5%;
}
.product{
	/*background: linear-gradient(to bottom right, #996633 0%, #ffff99 100%);*/
	background: linear-gradient(to bottom right, #bf953f, #fbf5b7, #aa771c);
	display: flex;
	padding: 10px;
	align-items: center;
	transform: translateX(.6rem);
	border-radius: .8rem;
	box-shadow: .001rem .3rem 2rem 1px rgba(0,0,0,.3);
	border: 1px solid;
}
.product__img{
	transform: translateX(-3rem);
	min-width: 350px;
	min-height: 350px;
	max-width: 350px;
	max-height: 350px;
	margin-bottom: 15px;
	margin-top: 15px;
	box-shadow: .5rem .5rem 3rem 1px rgba(0,0,0,.5);
}
.product__spec ul{
	display: block;
	width: 100%;
}
.product__spec ul li{
	display: block;
	width: 100%;
}
.product__spec ul li label{
	display: inline-block;
	width: 25%;
	vertical-align: top;
	font-weight: bold;
}
.product__spec ul li span{
	display: inline-block;
	width: 73%;
}
@media screen and (max-width: 1024px)
{			
	.product__spec ul li label{
		width: 42%;
	}
	.product__spec ul li span{
		width: 53%;
	}
}
@media screen and (max-width: 1020px)
{		
	.product{
		flex-direction: column;
		padding: 3rem 3rem 1.5rem 3rem;
		box-shadow: none;
		transform: translateX(0);
	}
	.product__img{
		min-width: 85%;
		max-width: 85%;
		min-height: 85%;
		max-height: 85%;
		transform: translate(0,-5rem);
		box-shadow: none;
		border: 1px solid;
	}
}
@media screen and (max-width: 768px)
{		
	.product{
		flex-direction: column;
		padding: 3rem 3rem 1.5rem 3rem;
		box-shadow: none;
	}
	.product__img{
		min-width: 100%;
		max-width: 100%;
		min-height: 100%;
		max-height: 100%;
		transform: translate(0,-5rem);
		box-shadow: none;
		border: 1px solid;
	}
	.product__spec ul li{
		font-size: 14px;
	}
	.product__spec ul li label{
		width: 36%;
	}
	.product__spec ul li span{
		width: 60%;
	}
}
@media screen and (max-width: 576px)
{
	.product{
		padding: 1.5rem;
		width: 95%;
	}
	.product__img{
		min-width: 95%;
		max-width: 95%;
		min-height: 95%;
		max-height: 95%;
		transform: translate(0,-3.5rem);
	}
	.product__spec ul li{
		font-size: 13px;
	}
	.product__spec ul li label{
		width: 40%;
	}
	.product__spec ul li span{
		width: 55%;
	}
}
@media screen and (max-width: 425px)
{
	.product{
		padding: 1rem;
		width: 100%;
	}
}