.outLine {
	display: flex;
	flex-direction: column;
	flex:1;
}

main {
	flex: 1;
	margin: 0 auto;
	width: 88%;
	padding: 16px;
}

.breadCrumbContainer {
	width: 100%;
}

.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;
}

section h2 {
	margin: 16px 0;
	font-size: 24px;
}

.products {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 16px;
}

.itemLink {
	text-decoration: none;
	color: #222222;
	cursor: pointer;
}

.productContainer {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	box-shadow: 2px 2px 2px #e5e7eb;
	width: 100%;
	height: auto;
	transition: box-shadow .4s, transform .4s;
}

.productContainer:hover {
	top: -3px;
	box-shadow: 2px 2px 2px #222222;
	transform: translateY(-8px);
}

.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 16px 0 0;
}

.imgBox img {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain;
	border-radius: 16px 16px 0 0;
}

.productName {
	font-size: 24px;
	font-weight: bold;
	padding: 16px;
	letter-spacing: 1px;
}

.price {
	text-align: center;
	font-size: 24px;
	padding: 0 16px;
}

.stock {
	text-align: right;
	padding: 16px;
}

.description h3 {
	margin: 0;
	font-size: 14px;
}

@media(min-width: 590px) {

	.products {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media(min-width: 900px) {

	.products {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}