.mpa,
.mpa * {
	box-sizing: border-box;
}
.mpa {
	--mpa-orange: #ef5902;
	--mpa-black: #151923;
	--mpa-muted: #666c76;
	--mpa-line: #e6e8ec;
	--mpa-soft: #f6f7f9;
	--mpa-green: #16a34a;
	width: 100%;
	color: var(--mpa-black);
	font-family: Poppins, Arial, Helvetica, sans-serif;
	background: #fff;
}
body:has(.mpa),
.website-wrapper:has(.mpa),
.main-page-wrapper:has(.mpa),
.site-content:has(.mpa),
.entry-content:has(.mpa) {
	background: #fff !important;
}
.mpa a {
	color: inherit;
	text-decoration: none;
}
.mpa img {
	display: block;
	max-width: 100%;
}
.mpa [hidden] {
	display: none !important;
}
.mpa-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 22px;
	margin: 0 0 22px;
	padding-top: 18px;
}
.mpa-head h2 {
	margin: 0;
	color: var(--mpa-black);
	font-size: clamp(26px, 3vw, 38px);
	line-height: 1.08;
	font-weight: 900;
	letter-spacing: 0;
}
.mpa-head p {
	max-width: 760px;
	margin: 10px 0 0;
	color: var(--mpa-muted);
	font-size: 15px;
	line-height: 1.55;
	font-weight: 500;
}
.mpa-head strong {
	flex: 0 0 auto;
	border: 1px solid rgba(239, 89, 2, .22);
	border-radius: 8px;
	background: #fff7f1;
	color: var(--mpa-orange);
	font-size: 14px;
	font-weight: 900;
	padding: 10px 14px;
}
.mpa-filters {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin: 0 0 24px;
	padding: 16px;
	border: 1px solid var(--mpa-line);
	border-radius: 8px;
	background: var(--mpa-soft);
}
.mpa-filter-row {
	display: grid;
	gap: 14px;
	align-items: end;
}
.mpa-filter-row-top {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, calc((100% - 28px) / 3)));
	align-items: end;
	gap: 14px;
	min-width: 0;
	overflow: hidden;
	isolation: isolate;
}
.mpa-filter-row-bottom {
	grid-template-columns: minmax(260px, 1fr) auto;
	align-items: end;
}
.mpa-search {
	display: grid;
	grid-template-rows: 12px 50px;
	row-gap: 7px;
	align-items: start;
	position: relative;
	top: -4px;
	min-width: 0;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	z-index: 1;
}
.mpa-search-label,
.mpa-field span {
	display: flex !important;
	align-items: center;
	height: 12px !important;
	min-height: 12px !important;
	margin: 0 !important;
	padding: 0 !important;
	color: var(--mpa-muted);
	font-size: 12px;
	line-height: 12px !important;
	font-weight: 900;
	text-transform: uppercase;
}
.mpa .mpa-search-label {
	position: static !important;
	top: auto !important;
	transform: none !important;
}
.mpa-field {
	display: grid;
	grid-template-rows: 12px 50px;
	row-gap: 7px;
	align-items: start;
	min-width: 0;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 2;
}
.mpa-search svg {
	position: absolute;
	left: 16px;
	top: 44px;
	z-index: 2;
	width: 20px;
	height: 20px;
	color: var(--mpa-orange);
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transform: translateY(-50%);
	pointer-events: none;
}
.mpa .mpa-search .mpa-search-input,
.mpa-field select {
	appearance: none;
	box-sizing: border-box !important;
	display: block;
	align-self: start;
	width: 100% !important;
	inline-size: 100% !important;
	max-width: 100% !important;
	max-inline-size: 100% !important;
	min-width: 0 !important;
	min-inline-size: 0 !important;
	height: 50px !important;
	margin: 0 !important;
	border: 1px solid var(--mpa-line) !important;
	border-radius: 7px !important;
	background-color: #fff !important;
	color: var(--mpa-black) !important;
	font: 700 14px/50px Poppins, Arial, sans-serif !important;
	box-shadow: none !important;
	outline: none !important;
}
.mpa .mpa-search .mpa-search-input {
	padding: 0 16px 0 50px !important;
}
.mpa-field select {
	padding: 0 12px !important;
}
.mpa .mpa-search .mpa-search-input:focus,
.mpa-field select:focus {
	border-color: var(--mpa-orange);
	box-shadow: 0 0 0 3px rgba(239, 89, 2, .12);
}
.mpa .mpa-search .mpa-search-input::placeholder {
	color: #808792;
	font-weight: 600;
	opacity: 1;
}
.mpa-filters button {
	width: auto;
	min-width: 142px;
	height: 42px;
	border: 1px solid var(--mpa-orange);
	border-radius: 7px;
	background: #fff;
	color: var(--mpa-orange);
	font: 900 13px/1 Poppins, Arial, sans-serif;
	padding: 0 18px;
	cursor: pointer;
	transition: background .16s ease, color .16s ease, transform .16s ease;
}
.mpa-filters button:hover {
	background: var(--mpa-orange);
	color: #fff;
	transform: translateY(-1px);
}
.mpa-range {
	min-width: 0;
	padding: 2px 0 0;
}
.mpa-filter-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	margin-bottom: 1px;
}
.mpa-filter-actions a {
	min-height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 14px;
	color: var(--mpa-muted);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}
.mpa-filter-actions a:hover {
	color: var(--mpa-orange);
}
.mpa-range-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 14px;
}
.mpa-range-head span {
	color: var(--mpa-muted);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}
.mpa-range-head strong {
	color: var(--mpa-black);
	font-size: 13px;
	font-weight: 900;
	white-space: nowrap;
}
.mpa-range-control {
	position: relative;
	height: 28px;
}
.mpa-range-track {
	position: absolute;
	left: 0;
	right: 0;
	top: 11px;
	height: 4px;
	border-radius: 999px;
	background: #dde1e7;
}
.mpa-range-track span {
	position: absolute;
	top: 0;
	bottom: 0;
	border-radius: inherit;
	background: var(--mpa-orange);
}
.mpa-range-control input[type="range"] {
	appearance: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 28px;
	margin: 0;
	padding: 0;
	background: transparent;
	pointer-events: none;
	outline: none;
}
.mpa-range-control input[type="range"]::-webkit-slider-runnable-track {
	height: 4px;
	background: transparent;
}
.mpa-range-control input[type="range"]::-webkit-slider-thumb {
	appearance: none;
	width: 18px;
	height: 18px;
	margin-top: -7px;
	border: 3px solid var(--mpa-orange);
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 4px 12px rgba(15, 20, 30, .18);
	cursor: pointer;
	pointer-events: auto;
}
.mpa-range-control input[type="range"]::-moz-range-track {
	height: 4px;
	background: transparent;
}
.mpa-range-control input[type="range"]::-moz-range-thumb {
	width: 14px;
	height: 14px;
	border: 3px solid var(--mpa-orange);
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 4px 12px rgba(15, 20, 30, .18);
	cursor: pointer;
	pointer-events: auto;
}
.mpa-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}
.mpa-card {
	min-width: 0;
	border: 1px solid var(--mpa-line);
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 8px 22px rgba(15, 20, 30, .035);
	transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.mpa-card:hover {
	transform: translateY(-4px);
	border-color: rgba(239, 89, 2, .38);
	box-shadow: 0 18px 38px rgba(15, 20, 30, .11);
}
.mpa-card-image {
	position: relative;
	height: 210px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: #fff;
}
.mpa-card-image span {
	position: absolute;
	left: 12px;
	top: 12px;
	z-index: 2;
	border: 0;
	border-radius: 999px;
	background: var(--mpa-orange);
	color: #fff;
	font-size: 11px;
	line-height: 1.2;
	font-weight: 900;
	min-width: 50px;
	padding: 5px 10px;
	text-align: center;
	white-space: nowrap;
	box-shadow: none;
}
.mpa-card-image img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform .2s ease;
}
.mpa-card:hover .mpa-card-image img {
	transform: scale(1.045);
}
.mpa-card-body {
	padding: 0 16px 16px;
}
.mpa-card-body small {
	display: block;
	min-height: 18px;
	margin-bottom: 6px;
	color: var(--mpa-muted);
	font-size: 12px;
	font-weight: 800;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.mpa-card-title {
	display: -webkit-box;
	min-height: 58px;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--mpa-black);
	font-size: 15px;
	line-height: 1.3;
	font-weight: 900;
}
.mpa-card-title:hover {
	color: var(--mpa-orange);
}
.mpa-card-price {
	min-height: 30px;
	margin-top: 10px;
	color: var(--mpa-black);
	font-size: 17px;
	line-height: 1.25;
	font-weight: 900;
}
.mpa-card-price del {
	margin-right: 6px;
	color: #a6a8ad;
	font-size: 13px;
	font-weight: 700;
}
.mpa-card-price ins {
	color: var(--mpa-orange);
	text-decoration: none;
}
.mpa-card-meta,
.mpa-card-stock {
	min-height: 18px;
	margin: 8px 0 12px;
	font-size: 12px;
	font-weight: 800;
}
.mpa-card-meta {
	color: var(--mpa-orange);
}
.mpa-card-stock {
	color: var(--mpa-green);
}
.mpa-card-button {
	width: 100%;
	min-height: 42px;
	border: 1px solid var(--mpa-orange);
	border-radius: 7px;
	background: #fff;
	color: var(--mpa-orange);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	font-size: 13px;
	font-weight: 900;
	text-align: center;
	transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.mpa-card:hover .mpa-card-button,
.mpa-card-button:hover {
	background: var(--mpa-orange);
	color: #fff;
	border-color: var(--mpa-orange);
}
.mpa-empty {
	border: 1px solid var(--mpa-line);
	border-radius: 8px;
	background: var(--mpa-soft);
	padding: 24px;
	color: var(--mpa-muted);
	font-size: 15px;
	font-weight: 800;
	text-align: center;
}
.mpa-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	margin-top: 28px;
}
.mpa-pagination .page-numbers {
	min-width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--mpa-line);
	border-radius: 7px;
	background: #fff;
	color: var(--mpa-black);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}
.mpa-pagination .page-numbers.current,
.mpa-pagination a.page-numbers:hover {
	border-color: var(--mpa-orange);
	background: var(--mpa-orange);
	color: #fff;
}
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}
@media (max-width: 1200px) {
	.mpa-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.mpa-filter-row-top {
		grid-template-columns: repeat(3, minmax(0, calc((100% - 28px) / 3)));
	}
	.mpa-filter-row-bottom {
		grid-template-columns: 1fr 1fr auto;
	}
}
@media (max-width: 900px) {
	.mpa-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.mpa-filter-row-top,
	.mpa-filter-row-bottom {
		grid-template-columns: 1fr;
	}
	.mpa-filter-row-bottom button {
		justify-self: stretch;
		width: 100%;
	}
}
@media (max-width: 640px) {
	.mpa-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}
	.mpa-grid {
		grid-template-columns: 1fr;
	}
	.mpa-card-image {
		height: 190px;
	}
}