/*------------------------------------*\
   Product Category Archive Page
\*------------------------------------*/
.product-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.product-title {
	font-weight: 600;
    font-size: var(--larger-font);
    line-height: 1.1;
    margin: 10px 0;
}
.short-description {
	flex-grow: 1;
}
.product-inner {
	height: 100%;
	border-radius: 8px;
	margin: 0 0.5em 1em;
}
.product-info {
	border: 1px solid rgba(0,0,0,0.1);
	background:white;
	box-shadow: 0px 2px 2px rgba(0,0,0,0.3);
	padding: 150px 1em 1em;
	margin-top: -150px;
	border-radius: 10px;
	flex-grow: 1;
	display: flex;
	flex-flow: column;
}
.product-item {
	margin-bottom: 2.5em;
}
.main-image {
	opacity: 1;
	transition: all 0.5s ease;
}
.secondary-image {
	opacity: 0;
	transition: all 0.5s ease;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
}
.image-container:hover .main-image {
	opacity: 0;
}
.image-container:hover .secondary-image {
	opacity: 1;
}
.pagination {
	display: flex;
	justify-content: center;
}
.pagination > * {
	padding: 1.5rem;
}
.product-highlights {
	text-align: left;
	font-size:var(--medium-font);
	list-style-type:none;
	flex-grow: 1;
}
.product-highlights ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.product-highlights li {
	padding-left: 1.5em;
	position: relative;
	margin-bottom: 0.33em;  
}
.product-highlights li:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f00C";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	color: var(--green);
}
.detail-image {
	padding: 1em 0;
}
.detail-image img {
	width: 100%;
}