.wsbb-wrapper {
	max-width: 1080px;
	margin: 20px auto;
	padding: 16px;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	background: #fff;
}

.wsbb-progress {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.wsbb-progress-step {
	padding: 6px 10px;
	border-radius: 99px;
	background: #f0f0f0;
	color: #666;
	font-size: 13px;
	font-weight: 600;
}

.wsbb-progress-step.active {
	background: #2271b1;
	color: #fff;
}

.wsbb-progress-step.done {
	background: #4caf50;
	color: #fff;
}

.wsbb-progress-arrow {
	color: #999;
}

.wsbb-step-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 12px;
}

.wsbb-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 14px;
	margin-bottom: 16px;
}

.wsbb-card {
	border: 2px solid #ececec;
	border-radius: 10px;
	padding: 12px;
	cursor: pointer;
	transition: all 0.2s ease;
	background: #fff;
}

.wsbb-card:hover {
	border-color: #2271b1;
	transform: translateY(-2px);
}

.wsbb-card.selected {
	border-color: #2271b1;
	box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.15);
}

.wsbb-card img,
.wsbb-image-placeholder {
	width: 100%;
	height: 160px;
	object-fit: cover;
	border-radius: 8px;
	background: #f7f7f7;
	margin-bottom: 8px;
}

.wsbb-card h4 {
	font-size: 15px;
	margin: 0 0 6px;
}

.wsbb-price {
	font-weight: 700;
	color: #222;
}

.wsbb-navigation {
	display: flex;
	justify-content: space-between;
	margin: 14px 0 16px;
}

.wsbb-btn[disabled] {
	opacity: 0.55;
	cursor: not-allowed;
}

.wsbb-summary {
	border-top: 1px solid #ececec;
	padding-top: 16px;
}

.wsbb-summary-step {
	padding: 10px 12px;
	background: #fafafa;
	border-radius: 8px;
	margin-bottom: 10px;
}

.wsbb-summary-step h5 {
	margin: 0 0 6px;
}

.wsbb-summary-step ul {
	margin: 0;
	padding-left: 18px;
}

.wsbb-total-row {
	display: flex;
	justify-content: space-between;
	font-size: 18px;
	margin: 12px 0;
}

.wsbb-add-cart {
	width: 100%;
}

.wsbb-message {
	min-height: 22px;
	margin-bottom: 8px;
	color: #0b8043;
	font-weight: 600;
}

.wsbb-message.wsbb-error {
	color: #d63638;
}

.wsbb-empty {
	padding: 14px;
	background: #fafafa;
	border: 1px dashed #d7d7d7;
	border-radius: 8px;
}

.wsbb-fade-in {
	animation: wsbbFade 0.25s ease;
}

@keyframes wsbbFade {
	from {
		opacity: 0;
		transform: translateY(4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 767px) {
	.wsbb-wrapper {
		padding: 12px;
	}

	.wsbb-navigation {
		gap: 8px;
	}

	.wsbb-btn {
		flex: 1;
	}
}
