.headerContainer,
main,
.footerContainer {
	max-width: 1064px;
}

main {
	flex: 1;
	margin: 0 auto;
	width: 88%;
	padding: 16px;
}

.breadCrumbContainer nav ul {
	display: flex;
}

.breadCrumbContainer nav ul li {
	color: #666666;
	font-size: 12px;
}

.breadCrumbContainer nav ul li a {
	text-decoration: none;
	color: #666666;
	cursor: pointer;
}

.breadCrumbContainer nav ul li:not(:first-child)::before {
	content: ">";
	font-size: 8px;
	line-height: 16px;
	height: 16px;
	display: inline-block;
	margin: 0 8px;
}

.productContainer {
	width: 100%;
	height: auto;
	margin-top: 32px;
}

.imgBox {
	aspect-ratio: 16/9;
	background-image: url(../asset/bg.png);
	background-repeat: no-repeat;
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 16px;
	box-shadow: 2px 2px 2px #e5e7eb;
}

.imgBox img {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain;
	border-radius: 16px 16px 0 0;
}

.productInfo {
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	box-shadow: 2px 2px 2px #e5e7eb;
	margin-top: 8px;
	padding: 16px;
	background: #ffffff;
	display: flex;
	flex-direction: column;
}

.category {
	display: inline-block;
	font-size: 16px;
	letter-spacing: 1px;
	padding: 8px 0;
	color: #666666;
}

.productName {
	display: inline-block;
	font-size: 24px;
}

.price {
	display: inline-block;
	font-size: 24px;
	margin-left: 8%;
	color: #ff5100;
}

.stock {
	display: inline-block;
	font-size: 14px;
	padding: 16px 0;
}

.order {
	display: flex;
}

.order label {   
	grid-column: 1;
	grid-row: 1;
	display: inline-block;
	font-size: 14px;
}

.order label::after {
	content: ":";
	font-size: 14px;
}

.order select {
	display: inline-block;
	text-align: right;
	width: 64px;
}

.orderContainer a {
	display: inline-block;
	margin-top: 16px;
	text-decoration: none;
	text-align: center;
	background: #ff5100;
	padding: 8px;
	border-radius: 8px;
	color: #ffffff;
	transition: 0.8s;
	width: 92%;
}

.orderContainer {
	text-align: center;
}

.orderContainer a:hover {
	transform: scale(1.1);
	background-color: #b83a00;
}

.orderContainer a.disabled,
.orderContainer a.disabled:hover {
	background: #e5e7eb;
	color: #222222;
	font-weight: bold;
	cursor: default;
	transform: none;
	pointer-events: none;
}

.description {
	margin-top: 8px;
	padding: 16px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	box-shadow: 2px 2px 2px #e5e7eb;
}

.description textarea {
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 1.6;
	border: none;
	outline: none;
	width: 100%;
	resize: none;
	pointer-events: none;
}

@media(min-width: 770px) {

	.productContainer {
		display: grid;
		gap: 16px;
		grid-template-columns: 1.6fr 1fr;
		grid-template-rows: auto;
	}

	.imgBox {
		grid-column: 1;
		grid-row: 1;
	}

	.productInfo {
		margin: 0;
	}

	.ProductInfo {
		grid-column: 2;
		grid-row: 1;
	}

	.description {
		grid-column: span 2;
		grid-row: 2;
	}

	.order {
		display: flex;
		flex-direction: column;
	}

	.order label::after {
		content: none;
	}

	.orderContainer {
		display: flex;
		align-items: center;
		justify-items: center;
		gap: 16px;
		margin: 0 auto;
		width: 88%;
	}

	.orderContainer a {
		display: inline-block;
		font-size: 10px;
		margin: 0;
	}
}

@media(min-width: 900px) {

	.productName {
		font-size: 24px;
	}

	.price {
		display: inline-block;
		font-size: 24px;
		padding: 32px 0;
		margin-left: 16%;
	}

	.stock {
		font-size: 16px;
	}

	.order label {
		font-size: 16px;
	}

	.order select {
		font-size: 16px;
	}

	.order select {
		width: 64px;
	}

	.orderContainer a {
		padding: 16px 0;
		font-size: 10px;
		width: 64%;
	}
}

@media(min-width: 950px) {

	.orderContainer a {
		font-size: 14px;
	}
}
