.lf-finder {
	--lf-finder-accent: #e25420;
	--lf-finder-accent-dark: #bd3d12;
	--lf-finder-ink: #17212b;
	--lf-finder-muted: #617080;
	--lf-finder-line: #dfe4e8;
	--lf-finder-surface: #ffffff;
	--lf-finder-soft: #f4f6f8;
	box-sizing: border-box;
	min-width: 0;
	width: 100%;
	max-width: 1180px;
	margin: 28px auto;
	padding: clamp(20px, 4vw, 44px);
	border: 1px solid var(--lf-finder-line);
	border-radius: 22px;
	background: var(--lf-finder-surface);
	box-shadow: 0 18px 50px rgba(23, 33, 43, 0.08);
	color: var(--lf-finder-ink);
	font-family: inherit;
}

.lf-finder *,
.lf-finder *::before,
.lf-finder *::after {
	box-sizing: border-box;
}

.lf-finder [hidden] {
	display: none !important;
}

.lf-finder__header {
	max-width: 760px;
	margin: 0 auto 28px;
	text-align: center;
}

.lf-finder .lf-finder__eyebrow,
.lf-finder .lf-finder__title,
.lf-finder .lf-finder__intro {
	text-align: center;
}

.lf-finder__eyebrow {
	margin: 0 0 6px;
	color: var(--lf-finder-accent);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.lf-finder__title {
	margin: 0;
	color: var(--lf-finder-ink);
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 800;
	line-height: 1.08;
}

.lf-finder__intro {
	margin: 12px 0 0;
	color: var(--lf-finder-muted);
	font-size: 16px;
	line-height: 1.6;
}

.lf-finder__modes {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 22px;
}

.lf-finder__mode {
	min-height: 58px;
	padding: 10px 16px;
	border: 1px solid var(--lf-finder-line);
	border-radius: 12px;
	background: var(--lf-finder-soft);
	color: var(--lf-finder-muted);
	font: inherit;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	cursor: pointer;
	transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.lf-finder__mode:hover:not(.is-active) {
	border-color: #b9c2ca;
	background: #eef1f3;
	color: var(--lf-finder-ink);
}

.lf-finder__mode.is-active,
.lf-finder__mode[aria-selected="true"] {
	border-color: var(--lf-finder-accent);
	background: rgba(226, 84, 32, 0.08);
	box-shadow: inset 0 -3px 0 var(--lf-finder-accent);
	color: var(--lf-finder-accent-dark);
}

.lf-finder__mode:focus-visible {
	outline: 3px solid rgba(226, 84, 32, 0.22);
	outline-offset: 2px;
}

.lf-finder__mode small {
	display: block;
	margin-top: 2px;
	font-size: 11px;
	font-weight: 500;
}

.lf-finder__form {
	min-width: 0;
	padding: clamp(16px, 3vw, 26px);
	border: 1px solid rgba(223, 228, 232, 0.85);
	border-radius: 16px;
	background: var(--lf-finder-soft);
}

.lf-finder__fields {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.lf-finder__fields--vehicle {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lf-finder__field {
	display: grid;
	min-width: 0;
	gap: 7px;
	margin: 0;
	color: var(--lf-finder-ink);
	font-size: 13px;
	font-weight: 750;
}

.lf-finder__field select {
	display: block;
	max-width: 100%;
	width: 100%;
	min-height: 48px;
	margin: 0;
	padding: 0 42px 0 14px;
	border: 1px solid #c7cfd6;
	border-radius: 10px;
	background-color: #fff;
	color: var(--lf-finder-ink);
	font: inherit;
	font-size: 15px;
	font-weight: 500;
	line-height: normal;
}

.lf-finder__field select:focus,
.lf-finder__submit:focus-visible {
	outline: 3px solid rgba(226, 84, 32, 0.22);
	outline-offset: 2px;
}

.lf-finder__field select:disabled {
	border-color: #d3d9de;
	background-color: #e8ecef;
	color: #6f7d89;
	cursor: not-allowed;
	opacity: 1;
}

.lf-finder__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 190px;
	min-height: 50px;
	margin-top: 18px;
	padding: 10px 22px;
	border: 0;
	border-radius: 999px;
	background: var(--lf-finder-accent);
	box-shadow: 0 8px 18px rgba(226, 84, 32, 0.2);
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 800;
	line-height: 1.25;
	transition: background-color 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.lf-finder__submit:hover:not(:disabled) {
	background: var(--lf-finder-accent-dark);
}

.lf-finder__submit:disabled {
	box-shadow: none;
	cursor: not-allowed;
	opacity: 0.5;
}

.lf-finder__status {
	min-height: 24px;
	margin-top: 14px;
	color: var(--lf-finder-muted);
	font-size: 14px;
	line-height: 1.5;
}

.lf-finder__status.is-error {
	color: #a61b1b;
}

.lf-finder__status.is-loading::before {
	display: inline-block;
	width: 13px;
	height: 13px;
	margin-right: 8px;
	border: 2px solid rgba(226, 84, 32, 0.25);
	border-top-color: var(--lf-finder-accent);
	border-radius: 50%;
	content: "";
	vertical-align: -2px;
	animation: lf-finder-spin 0.7s linear infinite;
}

.lf-finder__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 8px;
}

.lf-finder-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--lf-finder-line);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(23, 33, 43, 0.07);
}

.lf-finder-card__media {
	display: grid;
	height: 210px;
	place-items: center;
	overflow: hidden;
	background: linear-gradient(145deg, #f8f9fa, #e8ecef);
}

.lf-finder-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 14px;
}

.lf-finder-card__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	color: #8b98a4;
}

.lf-finder-card__placeholder span {
	font-size: 76px;
	line-height: 1;
}

.lf-finder-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 20px;
}

.lf-finder-card__brand {
	margin: 0 0 4px;
	color: var(--lf-finder-accent-dark);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lf-finder-card__model {
	margin: 0;
	color: var(--lf-finder-ink);
	font-size: 21px;
	font-weight: 800;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

.lf-finder-card__measure {
	margin: 7px 0 0;
	color: var(--lf-finder-muted);
	font-size: 15px;
	font-weight: 650;
}

.lf-finder-card__price {
	margin: 18px 0 0;
	color: var(--lf-finder-ink);
	font-size: 21px;
	font-weight: 850;
}

.lf-finder-card__availability {
	margin: 5px 0 0;
	font-size: 13px;
	font-weight: 800;
}

.lf-finder-card__availability.is-available {
	color: #14723a;
}

.lf-finder-card__availability.is-sold-out {
	color: #a61b1b;
}

.lf-finder-card__promotion {
	margin-top: 16px;
	padding: 12px;
	border: 1px solid rgba(226, 84, 32, 0.24);
	border-radius: 10px;
	background: rgba(226, 84, 32, 0.07);
}

.lf-finder-card__promotion strong {
	display: inline-block;
	padding: 3px 8px;
	border-radius: 999px;
	background: var(--lf-finder-accent);
	color: #fff;
	font-size: 12px;
	line-height: 1.2;
}

.lf-finder-card__promotion p {
	margin: 7px 0 0;
	color: var(--lf-finder-ink);
	font-size: 13px;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.lf-finder-card__actions {
	margin-top: auto;
	padding-top: 18px;
}

.lf-finder-card__quote {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 46px;
	margin-top: 0;
	padding: 10px 16px;
	border: 0;
	border-radius: 999px;
	background: #14723a;
	box-shadow: 0 8px 18px rgba(20, 114, 58, 0.18);
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
}

.lf-finder-card__quote:hover:not(:disabled),
.lf-finder-card__quote:focus-visible {
	background: #0f5b2d;
	color: #fff;
	text-decoration: none;
}

.lf-finder-card__quote:focus-visible {
	outline: 3px solid rgba(20, 114, 58, 0.22);
	outline-offset: 2px;
}

.lf-finder-card__quote:disabled {
	box-shadow: none;
	cursor: not-allowed;
	opacity: 0.5;
}

.lf-finder__empty,
.lf-finder__noscript {
	margin: 12px 0 0;
	padding: 20px;
	border: 1px solid var(--lf-finder-line);
	border-left: 4px solid var(--lf-finder-accent);
	border-radius: 12px;
	background: var(--lf-finder-soft);
	color: var(--lf-finder-muted);
	line-height: 1.55;
}

@keyframes lf-finder-spin {
	to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
	.lf-finder {
		padding: clamp(20px, 4vw, 32px);
	}

	.lf-finder__fields--vehicle,
	.lf-finder__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.lf-finder {
		margin: 18px auto;
		padding: 18px;
		border-radius: 16px;
	}

	.lf-finder__header {
		margin-bottom: 22px;
	}

	.lf-finder__title {
		font-size: clamp(27px, 9vw, 36px);
	}

	.lf-finder__modes,
	.lf-finder__fields,
	.lf-finder__grid {
		grid-template-columns: 1fr;
	}

	.lf-finder__submit {
		width: 100%;
	}

	.lf-finder-card__media {
		height: 210px;
	}

	.lf-finder-card__content {
		padding: 18px;
	}
}

@media (max-width: 400px) {
	.lf-finder {
		padding: 14px;
	}

	.lf-finder__form {
		padding: 14px;
	}

	.lf-finder__fields {
		gap: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lf-finder__mode,
	.lf-finder__submit {
		transition: none;
	}

	.lf-finder__status.is-loading::before {
		animation: none;
	}
}
