/*
--------------------------------------
Containers
--------------------------------------
*/

.products-container {
	display: flex;
	justify-content: center;
	gap: 15px;
}

/*
--------------------------------------
Item
--------------------------------------
*/

.product-item {
	background-color: var(--e-global-color-accent);
	width: 100%;
}

/*Link*/

.products-container .product-item-link {
	position: relative;
	display: block;
	height: calc(450px + (600 - 450) * ((100vw - 320px) / (1920 - 320)));
}

/*Img*/

.products-container .product-item-img-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.products-container .product-item-img-container img {
	width: 100%;
}

/*Content*/

.product-item-content-container {
	position: absolute;
	bottom: calc(0px + (20 - 0) * ((100vw - 320px) / (1920 - 320)));
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/*Title*/

.product-item-content-container .product-item-title {
	font-size: calc(20px + (35 - 20) * ((100vw - 320px) / (1920 - 320)));
	font-weight: 600;
	color: var(--e-global-color-primary, #20222B);
	text-align: center;
	line-height: calc(20px + (50 - 20) * ((100vw - 320px) / (1920 - 320)));
	letter-spacing: -1.4px;
}

/*Btn*/

.product-item-btn-container {
	padding: 1em;
}