.zl-booking {
	max-width: 640px;
	margin: 0 auto;
	font-family: inherit;
	background: #fff;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.zl-booking h3 {
	margin-top: 0;
	font-size: 1.25rem;
}
.zl-hint { color: #666; font-size: .9rem; }

.zl-rooms {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 16px 0;
}
.zl-room-option {
	flex: 1 1 200px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	border: 2px solid #e5e5e5;
	border-left: 6px solid var(--zl-color, #2d6a4f);
	border-radius: 8px;
	padding: 12px 14px;
	cursor: pointer;
	transition: border-color .15s ease, background .15s ease;
}
.zl-room-option:has(input:checked) {
	border-color: var(--zl-color, #2d6a4f);
	background: rgba(0,0,0,.02);
}
.zl-room-option input { margin-right: 6px; }
.zl-room-name { font-weight: 600; }
.zl-room-price { font-size: .85rem; color: #555; }

.zl-duration-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 10px;
}
.zl-duration-row select { padding: 6px 8px; }

.zl-date-picker { margin: 12px 0; display: flex; flex-direction: column; gap: 6px; }
.zl-date-picker input { padding: 8px; max-width: 220px; }

.zl-slot-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
	gap: 8px;
	margin-top: 12px;
}
.zl-room-slot-group {
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid #eee;
}
.zl-room-slot-group:last-child {
	border-bottom: none;
}
.zl-room-slot-group h4 {
	margin: 0 0 6px;
	font-size: 1rem;
}
.zl-slot-btn {
	padding: 10px 6px;
	border: 1px solid #ccc;
	border-radius: 6px;
	background: #fafafa;
	cursor: pointer;
}
.zl-slot-btn.selected {
	background: #2d6a4f;
	color: #fff;
	border-color: #2d6a4f;
}

.zl-addons { display: flex; flex-direction: column; gap: 8px; margin: 14px 0; }
.zl-addon-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 10px 14px;
	cursor: pointer;
}
.zl-addon-price { color: #555; }

.zl-field { margin-bottom: 14px; display: flex; flex-direction: column; gap: 4px; }
.zl-field input { padding: 8px; border: 1px solid #ccc; border-radius: 6px; }

.zl-summary-list { list-style: none; padding: 0; margin: 0 0 12px; }
.zl-summary-list li {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px solid #eee;
}
.zl-price { font-weight: 600; }
.zl-total { text-align: right; font-size: 1.1rem; }

.zl-payment-choice { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.zl-payment-option {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 10px 14px;
	cursor: pointer;
}

.zl-nav { display: flex; justify-content: space-between; margin-top: 20px; }

.zl-btn {
	background: #2d6a4f;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 1rem;
}
.zl-btn[disabled] { opacity: .5; cursor: not-allowed; }
.zl-btn-secondary { background: #eee; color: #333; }

.zl-message { margin-top: 10px; color: #c0392b; font-size: .9rem; }
.zl-done { text-align: center; padding: 30px 10px; font-size: 1.1rem; }

/* -------- Popup -------- */
.zl-popup-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .55);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999999;
	padding: 20px;
}
.zl-popup-overlay[hidden] { display: none; }

.zl-popup-box {
	position: relative;
	width: 100%;
	max-width: 680px;
	max-height: 90vh;
	overflow-y: auto;
}
.zl-popup-box .zl-booking {
	box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
}

.zl-popup-close {
	position: absolute;
	top: -14px;
	right: -14px;
	z-index: 2;
	background: #fff;
	border: none;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	line-height: 1;
	font-size: 1.5rem;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .25);
}

body.zl-popup-open {
	overflow: hidden;
}

@media (max-width: 480px) {
	.zl-popup-close {
		top: 6px;
		right: 6px;
	}
}
