.intera-auto-products {
	box-sizing: border-box;
	clear: both;
	margin: clamp(36px, 5vw, 64px) 0 42px;
	padding: clamp(22px, 3vw, 36px);
	width: 100%;
	border: 1px solid rgba(15, 23, 42, 0.09);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
}

.intera-auto-products *,
.intera-auto-products *::before,
.intera-auto-products *::after {
	box-sizing: border-box;
}

.intera-auto-products__header {
	margin: 0 0 24px;
	text-align: center;
}

.intera-auto-products__title {
	margin: 0;
	padding: 0;
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.25;
	color: #172033;
}

.intera-auto-products__intro {
	max-width: 680px;
	margin: 10px auto 0;
	font-size: 15px;
	line-height: 1.65;
	color: #667085;
}

.intera-auto-products__grid .woocommerce {
	width: 100%;
}

.intera-auto-products__grid ul.products,
.intera-auto-products__grid .woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(var(--intera-desktop, 4), minmax(0, 1fr)) !important;
	gap: 24px 18px !important;
	float: none !important;
	clear: both !important;
	margin: 0 !important;
	padding: 0 !important;
}

.intera-auto-products__grid ul.products::before,
.intera-auto-products__grid ul.products::after {
	display: none !important;
	content: none !important;
}

.intera-auto-products__grid ul.products li.product,
.intera-auto-products__grid .woocommerce ul.products li.product {
	float: none !important;
	clear: none !important;
	width: auto !important;
	min-width: 0 !important;
	margin: 0 !important;
}

.intera-auto-products__grid ul.products li.product img {
	display: block;
	max-width: 100%;
	height: auto;
}

.intera-auto-products__footer {
	margin-top: 28px;
	text-align: center;
}

.intera-auto-products__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 24px;
	border: 1px solid #5526d9;
	border-radius: 10px;
	background: #5526d9;
	color: #fff !important;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none !important;
	transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.intera-auto-products__button:hover,
.intera-auto-products__button:focus-visible {
	border-color: #3f1caf;
	background: #3f1caf;
	color: #fff !important;
	transform: translateY(-1px);
}

@media (max-width: 1024px) {
	.intera-auto-products__grid ul.products,
	.intera-auto-products__grid .woocommerce ul.products {
		grid-template-columns: repeat(var(--intera-tablet, 3), minmax(0, 1fr)) !important;
	}
}

@media (max-width: 767px) {
	.intera-auto-products {
		margin: 32px 0;
		padding: 20px 14px 24px;
		border-radius: 14px;
	}

	.intera-auto-products__header {
		margin-bottom: 20px;
	}

	.intera-auto-products__grid ul.products,
	.intera-auto-products__grid .woocommerce ul.products {
		grid-template-columns: repeat(var(--intera-mobile, 2), minmax(0, 1fr)) !important;
		gap: 20px 10px !important;
	}

	.intera-auto-products__grid ul.products li.product .button {
		width: 100%;
		min-height: 40px;
		padding-left: 8px;
		padding-right: 8px;
		font-size: 12px;
		white-space: normal;
	}

	.intera-auto-products__button {
		width: 100%;
	}
}

