.bs-wizard {
	max-width: 1100px;
	margin: 0 auto;
	background: #2b2b2b;
	padding: 20px;
	border-radius: 4px;
}

.bs-panel {
	background: #f5f7fb;
	padding: 40px;
	border-radius: 2px;
}

.bs-h {
	font-size: 22px;
	font-weight: 600;
	margin: 0 0 16px;
}

.bs-h:not(:first-child) {
	margin-top: 32px;
}

.req { color: #d33; margin-left: 2px; }

.bs-options {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.bs-opt {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	font-size: 16px;
}

.bs-opt input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.bs-box {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	border: 1px solid #b9bec7;
	border-radius: 4px;
	background: #e9ebef;
	position: relative;
}

.bs-opt input:checked + .bs-box {
	background: #1976d2;
	border-color: #1976d2;
}

.bs-opt input:checked + .bs-box::after {
	content: "";
	position: absolute;
	left: 7px;
	top: 3px;
	width: 6px;
	height: 11px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.bs-select {
	width: 100%;
	max-width: 400px;
	padding: 12px 14px;
	border: 1px solid #b9bec7;
	border-radius: 4px;
	font-size: 15px;
	background: #fff;
}

.bs-hint {
	font-style: italic;
	font-size: 13px;
	color: #666;
	margin-top: 8px;
}

.bs-field-label {
	display: block;
	font-size: 15px;
	font-weight: 500;
	margin: 18px 0 6px;
}

.bs-input {
	width: 100%;
	max-width: 420px;
	padding: 10px 12px;
	border: 1px solid #b9bec7;
	border-radius: 4px;
	font-size: 15px;
}

.bs-phone-row {
	display: flex;
	gap: 8px;
	max-width: 420px;
}

.bs-phone-row .bs-input {
	max-width: none;
	text-align: center;
}

.bs-phone-cc {
	flex: 0 0 60px;
	background: #f0f1f3;
}

.bs-tabs {
	display: flex;
	background: #efefef;
	margin-top: 20px;
}

.bs-tab {
	flex: 1;
	text-align: center;
	padding: 18px 10px;
	font-weight: 700;
	font-size: 18px;
	color: #9aa0a8;
	border-bottom: 4px solid transparent;
	cursor: default;
}

.bs-tab.active {
	color: #1a1a1a;
	border-bottom-color: #1976d2;
	background: #fff;
}

.bs-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #2b2b2b;
	padding: 16px 0;
}

.bs-btn {
	padding: 14px 28px;
	border: none;
	border-radius: 4px;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
}

.bs-btn-primary {
	background: #1976d2;
	color: #fff;
}

.bs-btn-primary:hover { background: #1560ac; }

.bs-btn-light {
	background: #bfe0ff;
	color: #14314f;
}

.bs-error {
	color: #ff6b6b;
	background: #2b2b2b;
	padding: 0 0 10px;
	text-align: center;
	font-size: 14px;
	min-height: 18px;
}

.bs-results {
	background: #f5f7fb;
	padding: 30px 40px;
}

.bs-results h4 {
	margin: 0 0 20px;
	font-size: 20px;
}

.bs-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
}

.bs-card {
	border: 1px solid #cfe3f7;
	border-radius: 4px;
	padding: 16px;
	background: #fff;
	text-align: center;
}

.bs-card img {
	max-width: 100%;
	height: 180px;
	object-fit: contain;
	margin-bottom: 12px;
}

.bs-card h5 {
	margin: 0 0 6px;
	font-size: 18px;
}

.bs-card p {
	font-size: 14px;
	color: #555;
	min-height: 40px;
}

.bs-card .bs-price {
	color: #2e8b2e;
	font-weight: 700;
	font-size: 18px;
	margin: 10px 0;
}

.bs-card-actions {
	display: flex;
	gap: 8px;
}

.bs-card-actions a {
	flex: 1;
	padding: 10px;
	border-radius: 4px;
	font-weight: 700;
	font-size: 13px;
	text-decoration: none;
	text-align: center;
}

.bs-card-actions .bs-view {
	background: #1976d2;
	color: #fff;
}

.bs-card-actions .bs-quote {
	border: 1px solid #333;
	color: #333;
}

.bs-no-match {
	grid-column: 1 / -1;
	text-align: center;
	padding: 30px;
	background: #fff3cd;
	border-radius: 4px;
}

.bs-lead-success {
	text-align: center;
	padding: 20px;
	font-size: 16px;
	color: #1a1a1a;
}

@media (max-width: 767px) {
	.bs-panel { padding: 20px; }
	.bs-tab { font-size: 13px; padding: 12px 4px; }
	.bs-nav { flex-wrap: wrap; gap: 10px; padding: 16px 12px; }
	.bs-btn { width: 100%; }
	.bs-results { padding: 20px; }
	.bs-phone-row { flex-wrap: wrap; }
}
