.sab-booking-form-wrap {
	max-width: 640px;
	margin: 0 auto;
}

.sab-intro {
	margin-bottom: 24px;
}

.sab-status {
	padding: 18px 20px;
	border-radius: 8px;
	margin-bottom: 24px;
}

.sab-status-success {
	background: #e8f7ee;
	border: 1px solid #b7e4c7;
}

.sab-status-cancel {
	background: #fdeeee;
	border: 1px solid #f3c2c2;
}

.sab-products {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 12px;
	margin-bottom: 20px;
}

.sab-product-card {
	position: relative;
	display: block;
	border: 2px solid #ddd;
	border-radius: 10px;
	padding: 16px;
	cursor: pointer;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.sab-product-card input[type="radio"] {
	position: absolute;
	top: 14px;
	right: 14px;
}

.sab-product-card:has(input:checked) {
	border-color: #222;
	box-shadow: 0 0 0 1px #222;
}

.sab-product-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.sab-product-title {
	font-weight: 700;
	font-size: 1.05em;
	padding-right: 24px;
}

.sab-product-desc {
	font-size: 0.85em;
	color: #666;
}

.sab-product-price {
	margin-top: 8px;
	font-weight: 700;
	font-size: 1.1em;
}

.sab-product-note {
	font-size: 0.78em;
	color: #888;
}

.sab-product-note:empty {
	display: none;
}

.sab-booking-form .sab-row {
	margin-bottom: 16px;
}

.sab-service-desc {
	margin: 6px 0 0;
	font-size: 0.85em;
	color: #666;
}

.sab-booking-form label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	font-size: 0.92em;
}

.sab-booking-form input[type="text"],
.sab-booking-form input[type="email"],
.sab-booking-form input[type="tel"],
.sab-booking-form input[type="date"],
.sab-booking-form input[type="time"],
.sab-booking-form textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 1em;
	box-sizing: border-box;
}

.sab-row-half {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.sab-consent label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-weight: 400;
	font-size: 0.88em;
}

.sab-consent input {
	margin-top: 3px;
}

.sab-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.sab-field-error {
	display: none;
	background: #fdeeee;
	border: 1px solid #f3c2c2;
	color: #a13a3a;
	padding: 10px 14px;
	border-radius: 6px;
	margin-bottom: 16px;
	font-size: 0.9em;
}

.sab-submit-btn {
	width: 100%;
	padding: 14px 20px;
	background: #222;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 1.05em;
	font-weight: 700;
	cursor: pointer;
}

.sab-submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.sab-submit-btn:hover:not(:disabled) {
	background: #444;
}

@media (max-width: 480px) {
	.sab-row-half {
		grid-template-columns: 1fr;
	}
}

.sab-lightbox-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	z-index: 99999;
}

.sab-lightbox-overlay[hidden] {
	display: none;
}

.sab-lightbox {
	position: relative;
	background: #fff;
	border-radius: 12px;
	max-width: 480px;
	width: 100%;
	padding: 28px 26px 24px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.sab-lightbox h3 {
	margin: 0 0 12px;
	padding-right: 28px;
}

.sab-lightbox-text p {
	margin: 0 0 12px;
	font-size: 0.95em;
	line-height: 1.55;
}

.sab-lightbox-close {
	position: absolute;
	top: 10px;
	right: 12px;
	background: none;
	border: none;
	font-size: 26px;
	line-height: 1;
	color: #888;
	cursor: pointer;
	padding: 4px;
}

.sab-lightbox-close:hover {
	color: #222;
}

.sab-lightbox-ok {
	display: block;
	width: 100%;
	margin-top: 8px;
	padding: 12px 18px;
	background: #222;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 1em;
	font-weight: 700;
	cursor: pointer;
}

.sab-lightbox-ok:hover {
	background: #444;
}
