.mantor-products-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: 1fr;
	gap: 72px 30px;
	align-items: stretch;
}

.mantor-product-card {
	position: relative;
	display: flex;
	min-width: 0;
	height: 100%;
	min-height: 559px;
	flex-direction: column;
	border: 1px solid rgba(8, 54, 114, 0.2);
	background: #fff;
	overflow: hidden;
	transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 360ms cubic-bezier(0.16, 1, 0.3, 1), border-color 240ms ease;
}

.mantor-product-card:hover {
	border-color: rgba(8, 54, 114, 0.34);
	box-shadow: 0 18px 46px rgba(5, 29, 63, 0.1);
	transform: translateY(-6px);
}

.mantor-product-card__media {
	position: relative;
	display: grid;
	width: 100%;
	aspect-ratio: 1 / 1;
	flex: 0 0 auto;
	place-items: center;
	background: #eeeeef;
	overflow: hidden;
}

.mantor-product-card__media > a {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	text-decoration: none;
}

.mantor-product-card__media > a > img,
.mantor-product-card__media > img {
	display: block;
	width: 100%;
	height: 100%;
	padding: 20px;
	object-fit: contain;
	transform: scale(1);
	transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mantor-product-card:hover .mantor-product-card__media > a > img,
.mantor-product-card:hover .mantor-product-card__media > img {
	transform: scale(1.035);
}

.mantor-product-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: #eeeeef;
}

.mantor-product-card__labels {
	position: absolute;
	z-index: 2;
	top: 16px;
	left: 16px;
	display: flex;
	max-width: calc(100% - 32px);
	flex-wrap: wrap;
	gap: 3px;
	pointer-events: none;
}

.mantor-product-card__labels span {
	display: inline-flex;
	min-height: 28px;
	padding: 6px 11px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	color: #fff;
	background: #083672;
	font-size: 11px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
}

.mantor-product-card__body {
	display: flex;
	min-width: 0;
	min-height: 237px;
	padding: 16px 15px 14px;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: stretch;
}

.mantor-product-card h3 {
	min-width: 0;
	margin: 0 0 8px;
	font-size: clamp(18px, 1.35vw, 22px);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.012em;
	overflow-wrap: anywhere;
}

.mantor-product-card h3 a {
	color: #000;
	text-decoration: none;
	transition: color 180ms ease;
}

.mantor-product-card h3 a:hover {
	color: #083672;
}

.mantor-product-card__article,
.mantor-product-card__oem {
	margin: 0 0 5px;
	font-size: 13px;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.mantor-product-card__article {
	color: #111;
}

.mantor-product-card__oem {
	color: rgba(8, 54, 114, 0.48);
}

.mantor-product-card__purchase {
	display: flex;
	margin: auto 0 0;
	padding-top: 20px;
	padding-bottom: 13px;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.mantor-product-card__purchase strong {
	min-width: 0;
	font-size: 24px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
}

.mantor-product-card__cart-form {
	margin: 0;
	flex: 0 0 auto;
}

.mantor-product-card__cart-form button {
	display: grid;
	width: 34px;
	height: 34px;
	padding: 2px;
	place-items: center;
	border: 0;
	border-radius: 8px;
	background: transparent;
	cursor: pointer;
	transition: background-color 220ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mantor-product-card__cart-form button:hover {
	background: rgba(8, 54, 114, 0.08);
	transform: translateY(-2px);
}

.mantor-product-card__cart-form img {
	display: block;
	width: 30px;
	height: 30px;
	object-fit: contain;
}

.mantor-product-card__body > .mantor-catalog-button {
	width: 100%;
	min-height: 36px;
	margin-top: 0;
	flex: 0 0 auto;
}

.mantor-related-products__viewport .mantor-products-grid {
	grid-template-columns: repeat(8, 322px);
	grid-auto-columns: 322px;
	grid-auto-rows: 1fr;
	gap: 30px;
	width: max-content;
}

@media (min-width: 1380px) {
	.mantor-catalog-products > .mantor-products-grid,
	.mantor-catalog-section > .mantor-products-grid {
		grid-template-columns: repeat(4, minmax(0, 322px));
		justify-content: space-between;
	}
}

@media (max-width: 1180px) {
	.mantor-products-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 860px) {
	.mantor-products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 36px 22px;
	}
}

@media (max-width: 560px) {
	.mantor-products-grid {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.mantor-product-card {
		min-height: 0;
	}

	.mantor-product-card__media {
		aspect-ratio: 1 / 0.88;
	}

	.mantor-product-card__body {
		min-height: 220px;
	}

	.mantor-related-products__viewport .mantor-products-grid {
		grid-template-columns: repeat(8, 280px);
		grid-auto-columns: 280px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mantor-product-card,
	.mantor-product-card *,
	.mantor-product-card *::before,
	.mantor-product-card *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}
