/*
--------------------------------------
items
--------------------------------------
*/

.product-items {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(345px, 1fr) );
	grid-auto-flow: dense;
	grid-gap: 35px;
}

/*
--------------------------------------
item
--------------------------------------
*/

.product-item {
	display: flex;
	flex-direction: column;
	background: #fff;
	height: 100%;
}

/*content*/

.product-item__content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 2em 1em 1.25em;
}

/*title*/

.product-item__content .product-item__title {
	font-family: var(--e-global-typography-primary-font-family), sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--e-global-color-text);
	text-align: center;
}


/*price*/

.product-item__content .product-item__price {
	font-family: var(--e-global-typography-032f926-font-family), sans-serif;
	font-size: 16px;
	font-weight: 300;
	color: #000;
	text-align: center;
	letter-spacing: -0.64px;
}

/*image*/

.product-item__img {
	position: relative;
	width: 100%;
	padding-bottom: 75%;
	height: 0;
}

.product-item__img img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 210px;
	width: 210px;
	object-fit: contain;
}

/*btn*/

.product-item__link {
	display: flex;
	justify-content: center;
	padding-top: 1em;
	margin-top: auto;
}