.smb-widget {
	max-width: 620px;
	margin: 0 auto;
	padding: 28px;
	background: #ffffff;
	border: 1px solid #ececf1;
	border-radius: 16px;
	box-shadow: 0 6px 24px rgba(20, 20, 40, 0.06);
	font-family: inherit;
	color: #23233a;
}

.smb-step { margin-bottom: 26px; }

.smb-step-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 17px;
	font-weight: 600;
	margin: 0 0 14px;
	color: #23233a;
}

.smb-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #6c5ce7;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}

/* Durations */
.smb-durations {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.smb-duration {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 16px 10px;
	border: 2px solid #ececf1;
	border-radius: 12px;
	background: #fafafc;
	cursor: pointer;
	transition: all 0.15s ease;
}

.smb-duration:hover { border-color: #c9c2f5; }

.smb-duration.is-active {
	border-color: #6c5ce7;
	background: #f3f1fe;
}

.smb-duration-min { font-size: 16px; font-weight: 700; }
.smb-duration-price { font-size: 14px; color: #6a6a80; }

/* Date */
.smb-date {
	width: 100%;
	padding: 12px 14px;
	font-size: 15px;
	border: 2px solid #ececf1;
	border-radius: 12px;
	background: #fafafc;
	color: #23233a;
}
.smb-date:focus { outline: none; border-color: #6c5ce7; }

/* Slots */
.smb-slots {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	min-height: 30px;
}

.smb-hint { color: #9a9ab0; font-size: 14px; margin: 0; }

.smb-slot {
	padding: 9px 14px;
	border: 2px solid #ececf1;
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.15s ease;
}
.smb-slot:hover { border-color: #c9c2f5; }
.smb-slot.is-active {
	border-color: #6c5ce7;
	background: #6c5ce7;
	color: #fff;
}

.smb-loading { color: #6c5ce7; font-size: 14px; }

/* Summary */
.smb-summary {
	margin: 4px 0 20px;
	padding: 16px 18px;
	background: #f7f7fb;
	border-radius: 12px;
}
.smb-summary-row {
	display: flex;
	justify-content: space-between;
	padding: 5px 0;
	font-size: 14px;
	color: #6a6a80;
}
.smb-summary-row strong { color: #23233a; }
.smb-summary-row.smb-total {
	border-top: 1px solid #e4e4ee;
	margin-top: 6px;
	padding-top: 10px;
	font-size: 16px;
}
.smb-summary-row.smb-total strong { color: #6c5ce7; }

/* Message */
.smb-message {
	margin: 0 0 14px;
	font-size: 14px;
	color: #d63031;
	min-height: 18px;
}
.smb-message.smb-ok { color: #00a37a; }

/* Button */
.smb-book-btn {
	width: 100%;
	padding: 15px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	background: #6c5ce7;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	transition: background 0.15s ease, opacity 0.15s ease;
}
.smb-book-btn:hover:not(:disabled) { background: #5a4bd1; }
.smb-book-btn:disabled { opacity: 0.5; cursor: not-allowed; }

@media (max-width: 520px) {
	.smb-widget { padding: 20px; }
	.smb-durations { grid-template-columns: 1fr; }
}
