.lf-finder { --lf-blue:#00aeef; --lf-ink:#111; --lf-line:#e3e6ea; font-family: inherit; color: var(--lf-ink); width: 100%; }

.lf-bar {
	display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-end;
	background: #0d0d10; border: 1px solid #20242b;
	border-radius: 12px; padding: 16px; margin-bottom: 18px;
}
.lf-field { display: flex; flex-direction: column; gap: 5px; min-width: 150px; }
.lf-field.lf-grow { flex: 1 1 220px; }
.lf-field label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: #8b93a1; font-weight: 700; }
.lf-field select, .lf-field input {
	height: 42px; border: 1px solid #2a2d34; background: #16181d; color: #fff;
	border-radius: 8px; padding: 0 12px; font-size: 14px; outline: none;
}
.lf-field select:focus, .lf-field input:focus { border-color: var(--lf-blue); }

.lf-btn {
	height: 42px; padding: 0 22px; border: 0; border-radius: 8px; cursor: pointer;
	background: var(--lf-blue); color: #00131b; font-weight: 800; font-size: 14px;
	text-transform: uppercase; letter-spacing: .04em;
}
.lf-btn:hover { filter: brightness(1.08); }
.lf-btn.lf-ghost { background: transparent; color: #c4cad4; border: 1px solid #2a2d34; }

.lf-meta { margin: 4px 2px 18px; color: #5a6470; font-size: 14px; }
.lf-meta strong { color: var(--lf-ink); font-weight: 800; }

.lf-results {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px;
}
/* product cards — matched to the site's shop cards */
.lf-card {
	border: 1px solid #e4e8ec; border-radius: 9px; overflow: hidden; background: #fff;
	display: flex; flex-direction: column; transition: transform .18s, box-shadow .18s, border-color .18s;
	text-decoration: none; color: inherit;
}
.lf-card:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(16,22,28,.16); border-color: var(--lf-blue); }
.lf-card-img { aspect-ratio: 4/3; background: #0c0f12; border-bottom: 3px solid var(--lf-blue); display: flex; align-items: center; justify-content: center; padding: 12px; }
.lf-card-img img { max-height: 100%; max-width: 100%; object-fit: contain; }
.lf-noimg { color: #00aeef; font-weight: 800; font-size: 20px; letter-spacing: .04em; }
.lf-card-body { padding: 1em 1.1em 1.15em; display: flex; flex-direction: column; gap: .45em; flex: 1; }
.lf-card-meta { font-size: 11px; color: #8b93a1; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.lf-card h3 { margin: 0; font-size: .98rem; line-height: 1.3; color: #1a1f24; font-weight: 800;
	text-transform: uppercase; letter-spacing: .01em;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.lf-card:hover h3 { color: var(--lf-blue); }
.lf-price { margin-top: auto; padding-top: .3em; font-size: 1.15rem; font-weight: 800; color: #0090c8; }
.lf-price del { color: #9aa3b0; font-weight: 600; font-size: .8em; margin-right: 5px; }
.lf-price ins { text-decoration: none; color: var(--lf-blue); }
.lf-empty { padding: 40px; text-align: center; color: #888; border: 1px dashed var(--lf-line); border-radius: 12px; }

@media (max-width: 600px) {
	.lf-bar { flex-direction: column; align-items: stretch; }
	.lf-field, .lf-field.lf-grow { min-width: 0; width: 100%; }
}

/* ---- Single product: visible fitment + specs ---- */
.lf-prod-block { margin: 28px 0; }
.lf-prod-block h2 {
	font-size: 20px; margin: 0 0 14px; padding-bottom: 8px; border-bottom: 2px solid #00aeef;
	display: flex; align-items: center; gap: 12px;
}
.lf-fit-count {
	font-size: 12px; font-weight: 700; background: #eaf8ff; color: #007bb0;
	padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: .04em;
}
.lf-spec-table { width: 100%; border-collapse: collapse; }
.lf-spec-table th, .lf-spec-table td { text-align: left; padding: 8px 12px; border-bottom: 1px solid #e3e6ea; font-size: 14px; }
.lf-spec-table th { color: #555; font-weight: 600; width: 38%; background: #f7f9fb; }

.lf-fit-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.lf-fit-make { border: 1px solid #e3e6ea; border-radius: 10px; padding: 12px 14px; background: #fff; }
.lf-fit-make h3 { margin: 0 0 8px; font-size: 15px; color: #111; display: flex; justify-content: space-between; align-items: baseline; }
.lf-fit-make h3 span { font-size: 12px; color: #8b93a1; font-weight: 600; }
.lf-fit-make ul {
	list-style: none; margin: 0; padding: 0 6px 0 0; max-height: 220px; overflow-y: auto;
	/* Always show a visible scrollbar (Firefox) so customers know to scroll. */
	scrollbar-width: thin; scrollbar-color: #00aeef #e6eaee;
}
/* Overflowing groups: FORCE the scrollbar track to stay visible (not overlay). */
.lf-fit-make.lf-scrolls ul { overflow-y: scroll; }
/* Always-visible, branded scrollbar (Chrome/Safari) — non-overlay so it's obvious. */
.lf-fit-make ul::-webkit-scrollbar { width: 11px; }
.lf-fit-make ul::-webkit-scrollbar-track { background: #e6eaee; border-radius: 8px; }
.lf-fit-make ul::-webkit-scrollbar-thumb { background: #00aeef; border-radius: 8px; border: 2px solid #e6eaee; min-height: 30px; }
.lf-fit-make ul::-webkit-scrollbar-thumb:hover { background: #0090c8; }
.lf-fit-make li { font-size: 13px; color: #333; padding: 4px 0; border-bottom: 1px solid #f0f2f4; line-height: 1.35; }
.lf-fit-make li:last-child { border-bottom: 0; }
.lf-fit-make li b { color: #00aeef; }
/* "scroll for more" hint appears only when the list overflows */
.lf-fit-make.lf-scrolls h3::after { content: "↕ scroll"; font-size: 10px; color: #00aeef; font-weight: 700; margin-left: 6px; }
