/* Lakes Mechanics Hall — customer booking wizard */

.lmh-booking {
	max-width: 100%;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.5;
}

.lmh-booking *,
.lmh-booking *::before,
.lmh-booking *::after {
	box-sizing: border-box;
}

.lmh-info {
	background: #f0f6fc;
	border: 1px solid #c5d9ed;
	border-radius: 6px;
	padding: 12px 16px;
	margin-bottom: 20px;
}

/* Step indicator */
.lmh-steps {
	display: flex;
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	gap: 8px;
	flex-wrap: wrap;
}

.lmh-steps li {
	flex: 1;
	min-width: 90px;
	text-align: center;
	padding: 8px 4px;
	border-bottom: 3px solid #ddd;
	color: #888;
	font-size: 15px;
}

.lmh-steps li span {
	display: inline-block;
	width: 22px;
	height: 22px;
	line-height: 22px;
	border-radius: 50%;
	background: #ddd;
	color: #fff;
	margin-right: 4px;
	font-size: 12px;
}

.lmh-steps li.lmh-step-current {
	border-color: #2271b1;
	color: #2271b1;
	font-weight: 600;
}

.lmh-steps li.lmh-step-current span {
	background: #2271b1;
}

.lmh-steps li.lmh-step-done {
	border-color: #4caf50;
	color: #4caf50;
}

.lmh-steps li.lmh-step-done span {
	background: #4caf50;
}

/* Errors */
.lmh-errors {
	background: #fcf0f1;
	border: 1px solid #d63638;
	border-left-width: 4px;
	border-radius: 4px;
	color: #b32d2e;
	padding: 12px 16px;
	margin-bottom: 16px;
}

.lmh-invalid {
	border-color: #d63638 !important;
}

/* Room cards */
.lmh-rooms {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 12px;
}

.lmh-room-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	text-align: left;
	padding: 16px;
	border: 2px solid #ddd;
	border-radius: 8px;
	background: #fff;
	cursor: pointer;
	font-size: 14px;
	transition: border-color .15s ease;
}

.lmh-room-card:hover {
	border-color: #2271b1;
}

.lmh-room-card.lmh-selected {
	border-color: #2271b1;
	background: #f0f6fc;
}

.lmh-room-card strong {
	font-size: 17px;
}

.lmh-room-desc {
	color: #555;
}

.lmh-room-price {
	color: #2271b1;
	font-weight: 600;
}

/* Calendar */
.lmh-cal-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.lmh-cal-nav button {
	background: #2271b1;
	border: 1px solid #2271b1;
	color: #ffffff;
	border-radius: 4px;
	padding: 6px 14px;
	cursor: pointer;
}

.lmh-month {
	width: 100%;
	border-collapse: collapse;
}

.lmh-month th {
	text-align: center;
	font-size: 12px;
	color: #777;
	padding: 6px 2px;
}

.lmh-month td {
	padding: 2px;
	text-align: center;
}

.lmh-day {
	width: 100%;
	aspect-ratio: 3;
	border: 1px solid #ccc;
	border-radius: 6px;
	background: #fff;
	cursor: pointer;
	font-size: 18px;
}

.lmh-day:hover:not([disabled]) {
	border-color: #2271b1;
	background: #f0f6fc;
}

.lmh-day.lmh-selected {
	background: #2271b1;
	border-color: #2271b1;
	color: #fff;
}

.lmh-day.lmh-partial {
	background: #fff3cd;
	border-color: #f0ad4e;
	color: #856404;
}

.lmh-day.lmh-unavailable,
.lmh-day.lmh-past {
	background: #f6f6f6;
	color: #bbb;
	cursor: not-allowed;
	text-decoration: line-through;
}

/* Time slots */
.lmh-hint {
	color: #666;
	font-size: 14px;
}

.lmh-slots {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
	gap: 8px;
	margin-bottom: 16px;
}

.lmh-slot {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px 6px;
	border: 1px solid #ccc;
	border-radius: 6px;
	background: #fff;
	cursor: pointer;
}

.lmh-slot-time {
	font-weight: 600;
	font-size: 16px;
}

.lmh-slot-state {
	font-size: 13px;
	color: #81c784;
}

.lmh-slot.lmh-booked {
	background: #f6f6f6;
	cursor: not-allowed;
}

.lmh-slot.lmh-booked .lmh-slot-state {
	color: #ef9a9a;
}

.lmh-slot.lmh-in-range {
	background: #d6e8f7;
	border-color: #2271b1;
}

.lmh-slot.lmh-selected {
	background: #2271b1;
	border-color: #2271b1;
	color: #fff;
}

.lmh-slot.lmh-selected .lmh-slot-state {
	color: #fff;
}

.lmh-selection {
	background: #f0f6fc;
	border-radius: 6px;
	padding: 10px 14px;
	font-size: 15px;
}

/* Form */
.lmh-form .lmh-field {
	display: block;
	margin-bottom: 14px;
}

.lmh-form .lmh-field span {
	display: block;
	font-weight: 600;
	margin-bottom: 4px;
	font-size: 14px;
}

.lmh-form input[type="text"],
.lmh-form input[type="email"],
.lmh-form input[type="tel"],
.lmh-form input[type="number"],
.lmh-form textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 15px;
}

.lmh-hp {
	position: absolute;
	left: -9999px;
	height: 0;
	overflow: hidden;
}

.lmh-terms {
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 14px;
	margin: 18px 0;
}

.lmh-terms-content {
	font-size: 13px;
	color: #555;
}

.lmh-terms-accept {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	font-weight: 600;
}

/* Actions + buttons */
.lmh-actions {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-top: 20px;
}

.lmh-booking button,
.lmh-return button {
	font-family: inherit;
}

.lmh-actions button,
.lmh-primary {
	padding: 12px 22px;
	border-radius: 6px;
	border: 1px solid #2271b1;
	background: #2271b1;
	color: #ffffff;
	text-transform: uppercase;
	cursor: pointer;
	font-size: 15px;
}

.lmh-primary {
	background: #2271b1;
	border-color: #2271b1;
	color: #fff;
	font-weight: 600;
}

.lmh-primary:hover:not([disabled]) {
	background: #135e96;
}

.lmh-primary[disabled] {
	opacity: .5;
	cursor: not-allowed;
}

/* Review */
.lmh-review {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 8px 16px;
	background: #f9f9f9;
	border: 1px solid #eee;
	border-radius: 6px;
	padding: 16px;
}

.lmh-review dt {
	font-weight: 600;
	color: #555;
}

.lmh-review dd {
	margin: 0;
}

.lmh-loading {
	color: #777;
	font-style: italic;
}

/* Return page */
.lmh-return-page {
	background: #f6f7f7;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.lmh-return {
	max-width: 560px;
	margin: 60px auto;
	padding: 0 16px;
}

.lmh-return-inner {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 1px 4px rgba(0,0,0,.08);
	padding: 32px;
}

.lmh-return-status {
	color: #666;
	text-align: center;
}

/* Extras */
.lmh-extras {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin-bottom: 16px;
}

.lmh-extra-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border: 2px solid #ddd;
	border-radius: 8px;
	background: #fff;
	cursor: pointer;
	transition: border-color .15s ease;
}

.lmh-extra-card:hover {
	border-color: #2271b1;
}

.lmh-extra-card.lmh-selected {
	border-color: #2271b1;
	background: #f0f6fc;
}

.lmh-extra-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.lmh-extra-name {
	font-size: 15px;
}

.lmh-extra-desc {
	font-size: 13px;
	color: #666;
}

.lmh-extra-price {
	font-weight: 600;
	color: #2271b1;
	white-space: nowrap;
}

.lmh-extra-toggle {
	flex-shrink: 0;
}

.lmh-extra-toggle .lmh-extra-checkbox {
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.lmh-extra-qty {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}

.lmh-qty-btn {
	width: 32px;
	height: 32px;
	border: 1px solid #ccc;
	border-radius: 6px;
	background: #fff;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lmh-qty-btn:hover:not([disabled]) {
	border-color: #2271b1;
	background: #f0f6fc;
}

.lmh-qty-btn[disabled] {
	opacity: .4;
	cursor: not-allowed;
}

.lmh-qty-value {
	min-width: 24px;
	text-align: center;
	font-weight: 600;
	font-size: 16px;
}

.lmh-extras-total {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	align-items: center;
	justify-content: flex-end;
	padding: 12px 16px;
	background: #f9f9f9;
	border: 1px solid #eee;
	border-radius: 6px;
	font-size: 14px;
	margin-bottom: 4px;
}

.lmh-et-total {
	font-size: 17px;
}
