.bpc-chassis-search {
	max-width: 960px;
	margin: 0 auto;
	font-family: inherit;
}

.bpc-chassis-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
	background: #fafafa;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 20px;
	box-sizing: border-box;
}

.bpc-chassis-field label {
	display: block;
	font-weight: 600;
	font-size: 13px;
	margin-bottom: 4px;
	color: #333;
}

.bpc-chassis-field--main input[type="text"] {
	width: 100%;
	padding: 12px 14px;
	font-size: 16px;
	border: 2px solid #ddd;
	border-radius: 6px;
	box-sizing: border-box;
}

.bpc-chassis-field--main input[type="text"]:focus {
	border-color: #E8590C;
	outline: none;
}

.bpc-chassis-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: flex-end;
}

.bpc-chassis-filters .bpc-chassis-field {
	flex: 1 1 160px;
}

.bpc-chassis-filters select {
	width: 100%;
	padding: 9px 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	background: #fff;
	box-sizing: border-box;
}

.bpc-chassis-submit {
	background: #E8590C;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 10px 22px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
}

.bpc-chassis-submit:hover {
	background: #cf4e0a;
}

.bpc-chassis-results {
	margin-top: 24px;
	transition: opacity 0.15s ease;
}

.bpc-chassis-results[aria-busy="true"] {
	opacity: 0.5;
}

.bpc-chassis-hint,
.bpc-chassis-empty {
	color: #666;
	font-style: italic;
}

.bpc-chassis-result-count {
	font-size: 13px;
	color: #666;
	margin-bottom: 12px;
}

.bpc-chassis-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 16px;
}

.bpc-chassis-card {
	border: 1px solid #e5e5e5;
	border-left: 4px solid #E8590C;
	border-radius: 6px;
	padding: 14px 16px;
	background: #fff;
}

.bpc-chassis-card__vin {
	font-family: monospace;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 8px;
	word-break: break-all;
}

.bpc-chassis-card__specs {
	margin: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 4px;
	font-size: 13px;
}

.bpc-chassis-card__specs > div {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	border-bottom: 1px dashed #eee;
	padding-bottom: 3px;
}

.bpc-chassis-card__specs dt {
	color: #888;
}

.bpc-chassis-card__specs dd {
	margin: 0;
	text-align: right;
	font-weight: 500;
}

@media (max-width: 640px) {
	.bpc-chassis-filters {
		flex-direction: column;
		align-items: stretch;
	}
}
