:root {
	--zcb-ink: #18382f;
	--zcb-green: #244f43;
	--zcb-green-soft: #dce8e2;
	--zcb-bg: #f5f3ed;
	--zcb-card: #fffefa;
	--zcb-line: #d9ddd7;
	--zcb-muted: #6b746f;
	--zcb-occupied: #c9cbc7;
}

.zcb-bar,
.zcb-bar *,
.zcb-booking-layout,
.zcb-booking-layout * {
	box-sizing: border-box;
}

.zcb-bar {
	position: relative;
	display: grid;
	grid-template-columns: minmax(190px, 1fr) minmax(190px, 1fr) minmax(160px, .9fr) auto;
	align-items: stretch;
	width: min(1240px, calc(100% - 32px));
	min-height: 100px;
	margin: 0 auto;
	padding: 20px 20px 20px 28px;
	background: var(--zcb-card);
	border: 1px solid rgba(31, 62, 52, .08);
	border-radius: 20px;
	box-shadow: 0 28px 54px rgba(28, 47, 40, .16);
	font-family: Inter, Arial, sans-serif;
	color: #1e2d28;
}

.zcb-bar__field {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: 3px 24px;
	border-right: 1px solid var(--zcb-line);
}

.zcb-bar__field:first-of-type { padding-left: 14px; }

.zcb-bar label,
.zcb-summary-guests > span {
	display: block;
	margin-bottom: 9px;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .14em;
	color: #587268;
}

.zcb-bar__control {
	position: relative;
	display: flex;
	align-items: center;
}

.zcb-bar input,
.zcb-bar select {
	width: 100%;
	height: 28px;
	padding: 0 34px 0 0;
	border: 0;
	outline: 0;
	background: transparent;
	font: 600 16px/1.2 Inter, Arial, sans-serif;
	color: #1f2d28;
	box-shadow: none;
	appearance: none;
}

.zcb-native-date::-webkit-calendar-picker-indicator {
	position: absolute;
	right: 0;
	width: 24px;
	height: 24px;
	opacity: 0;
	cursor: pointer;
}

.zcb-calendar-icon {
	position: absolute;
	right: 0;
	width: 15px;
	height: 15px;
	border: 1.7px solid #152a23;
	border-radius: 2px;
	pointer-events: none;
}

.zcb-calendar-icon::before {
	content: "";
	position: absolute;
	left: -1.7px;
	right: -1.7px;
	top: 3px;
	border-top: 1.7px solid #152a23;
}

.zcb-bar select { cursor: pointer; }

.zcb-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	min-width: 195px;
	min-height: 58px;
	margin-left: 20px;
	padding: 16px 24px;
	border: 0;
	border-radius: 13px;
	background: var(--zcb-green);
	color: #fff;
	font: 700 12px/1 Inter, Arial, sans-serif;
	cursor: pointer;
	transition: transform .2s ease, background .2s ease, opacity .2s ease;
}

.zcb-submit:hover { transform: translateY(-1px); background: #183e34; }
.zcb-submit:disabled { opacity: .46; cursor: not-allowed; transform: none; }
.zcb-form-message { display: none; grid-column: 1 / -1; margin: 8px 12px -5px; color: #9b3a30; font-size: 12px; }
.zcb-form-message.is-visible { display: block; }

.zcb-booking-layout {
	display: grid;
	grid-template-columns: minmax(0, 2.2fr) minmax(280px, .8fr);
	gap: 28px;
	width: 100%;
	font-family: Inter, Arial, sans-serif;
	color: var(--zcb-ink);
}

.zcb-calendar-card,
.zcb-summary-card {
	background: var(--zcb-card);
	border: 1px solid var(--zcb-line);
	border-radius: 18px;
}

.zcb-calendar-card { padding: 34px 32px 24px; }
.zcb-summary-card { align-self: start; padding: 34px 30px 30px; }

.zcb-calendar-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 34px;
}

.zcb-eyebrow {
	margin: 0 0 10px;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .18em;
	color: #365f54;
}

.zcb-calendar-header h2,
.zcb-summary-card h3,
.zcb-month h3 {
	font-family: Georgia, 'Times New Roman', serif;
	font-weight: 400;
	color: #0e2e25;
}

.zcb-calendar-header h2 { margin: 0; font-size: clamp(26px, 3vw, 34px); line-height: 1.15; }
.zcb-summary-card h3 { margin: 0 0 28px; font-size: 27px; line-height: 1.2; }

.zcb-calendar-nav { display: flex; gap: 10px; }
.zcb-nav-button {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--zcb-line);
	border-radius: 50%;
	background: transparent;
	color: #18382f;
	cursor: pointer;
	transition: background .2s ease, opacity .2s ease;
}
.zcb-nav-button:hover { background: #f1f3ef; }
.zcb-nav-button:disabled { opacity: .35; cursor: not-allowed; }

.zcb-months {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(28px, 6vw, 74px);
}
.zcb-months.is-loading { opacity: .45; pointer-events: none; }
.zcb-month h3 { margin: 0 0 20px; font-size: 21px; }
.zcb-month h3 span { margin-left: 3px; font-family: Inter, Arial, sans-serif; font-size: 11px; color: #65706b; }
.zcb-weekdays,
.zcb-days { display: grid; grid-template-columns: repeat(7, minmax(28px, 1fr)); text-align: center; }
.zcb-weekdays { margin-bottom: 15px; }
.zcb-weekdays span { font-size: 10px; font-weight: 700; color: #4c5f58; }
.zcb-days { row-gap: 9px; }

.zcb-day {
	position: relative;
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	margin: 0 auto;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #0d211a;
	font: 500 13px/1 Inter, Arial, sans-serif;
	cursor: pointer;
	z-index: 1;
}
.zcb-day:not(:disabled):hover { background: #edf2ee; }
.zcb-day.is-past,
.zcb-day.is-occupied { color: var(--zcb-occupied); cursor: not-allowed; }
.zcb-day.is-selected-start,
.zcb-day.is-selected-end { background: var(--zcb-green); color: #fff; }
.zcb-day.is-in-range { border-radius: 0; background: var(--zcb-green-soft); color: var(--zcb-ink); }
.zcb-day.is-selected-start.is-in-range { border-radius: 50% 0 0 50%; background: var(--zcb-green); color: #fff; }
.zcb-day.is-selected-end.is-in-range { border-radius: 0 50% 50% 0; background: var(--zcb-green); color: #fff; }
.zcb-day--empty { display: block; }

.zcb-calendar-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 30px;
	padding-top: 22px;
	border-top: 1px solid var(--zcb-line);
}
.zcb-legend { display: flex; flex-wrap: wrap; gap: 18px; }
.zcb-legend span { display: inline-flex; align-items: center; gap: 7px; font-size: 10px; color: #425950; }
.zcb-dot { width: 10px; height: 10px; border-radius: 50%; }
.zcb-dot--available { border: 1px solid #628177; background: transparent; }
.zcb-dot--selected { background: var(--zcb-green); }
.zcb-dot--occupied { background: var(--zcb-occupied); }
.zcb-calendar-note { max-width: 360px; margin: 0; text-align: right; font-size: 11px; line-height: 1.5; color: #6a706d; }

.zcb-summary-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 15px 0;
	border-bottom: 1px solid var(--zcb-line);
}
.zcb-summary-row span { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: #6f7974; }
.zcb-summary-row strong { font-size: 14px; font-weight: 600; color: var(--zcb-ink); }
.zcb-summary-price strong { font-size: 16px; }
.zcb-summary-guests { display: block; margin: 22px 0 18px; }
.zcb-summary-guests select {
	width: 100%;
	height: 50px;
	padding: 0 16px;
	border: 1px solid var(--zcb-line);
	border-radius: 10px;
	background: #fff;
	font: 600 14px Inter, Arial, sans-serif;
	color: var(--zcb-ink);
}
.zcb-submit--full { width: 100%; margin: 0; }
.zcb-payment-note {
	margin-top: 18px;
	padding: 15px 16px;
	border: 1px solid #cfddd7;
	border-radius: 11px;
	background: #edf4f0;
	color: var(--zcb-ink);
}
.zcb-payment-note strong { display: block; margin-bottom: 6px; font-size: 12px; }
.zcb-payment-note p { margin: 0; font-size: 11px; line-height: 1.55; color: #536961; }
.zcb-summary-card .zcb-form-message { margin: 12px 0 0; }
.zcb-error { padding: 16px 18px; border: 1px solid #e3b8b1; border-radius: 10px; background: #fff4f2; color: #8f2e25; }

/* Final polish and protection against Elementor/theme form styles. */
.zcb-bar {
	overflow: hidden;
	min-height: 100px;
	box-shadow: 0 24px 52px rgba(28, 47, 40, .14);
}

.zcb-bar__field {
	min-height: 60px;
}

.zcb-bar .zcb-bar__control {
	width: 100%;
	min-height: 32px;
}

.zcb-bar input.zcb-native-date,
.zcb-bar select[name="zcb_guests"] {
	display: block !important;
	width: 100% !important;
	min-width: 0 !important;
	height: 32px !important;
	min-height: 32px !important;
	margin: 0 !important;
	padding: 0 34px 0 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	outline: 0 !important;
	background-color: transparent !important;
	box-shadow: none !important;
	font: 600 16px/32px Inter, Arial, sans-serif !important;
	color: #1f2d28 !important;
	appearance: none !important;
}

.zcb-bar input.zcb-native-date::-webkit-datetime-edit,
.zcb-bar input.zcb-native-date::-webkit-datetime-edit-fields-wrapper {
	padding: 0 !important;
	color: #1f2d28 !important;
}

.zcb-bar input.zcb-native-date::-webkit-calendar-picker-indicator {
	position: absolute !important;
	right: 0 !important;
	width: 28px !important;
	height: 28px !important;
	margin: 0 !important;
	padding: 0 !important;
	opacity: 0 !important;
	cursor: pointer !important;
}

.zcb-bar__field--guests .zcb-bar__control::after {
	content: "";
	position: absolute;
	right: 3px;
	top: 50%;
	width: 7px;
	height: 7px;
	border-right: 1.5px solid #18382f;
	border-bottom: 1.5px solid #18382f;
	transform: translateY(-70%) rotate(45deg);
	pointer-events: none;
}

.zcb-bar .zcb-submit,
.zcb-calendar-app .zcb-submit {
	min-height: 58px !important;
	border: 0 !important;
	border-radius: 13px !important;
	background: var(--zcb-green) !important;
	box-shadow: none !important;
	font: 700 12px/1 Inter, Arial, sans-serif !important;
	letter-spacing: 0 !important;
	text-transform: uppercase !important;
	color: #fff !important;
}

.zcb-bar .zcb-submit:hover,
.zcb-calendar-app .zcb-submit:hover {
	background: #183e34 !important;
	color: #fff !important;
}

.zcb-calendar-app .zcb-submit:disabled {
	background: var(--zcb-green) !important;
	opacity: .46 !important;
}

.zcb-booking-layout {
	grid-template-columns: minmax(0, 1fr) 336px;
	align-items: start;
	gap: 28px;
}

.zcb-calendar-card,
.zcb-summary-card {
	min-width: 0;
	box-shadow: 0 1px 0 rgba(24, 56, 47, .025);
}

.zcb-calendar-header h2,
.zcb-summary-card h3,
.zcb-month h3,
.zcb-eyebrow,
.zcb-calendar-note,
.zcb-summary-row,
.zcb-legend {
	overflow-wrap: normal;
	word-break: normal;
}

.zcb-calendar-app .zcb-nav-button {
	min-width: 44px !important;
	min-height: 44px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid var(--zcb-line) !important;
	border-radius: 50% !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--zcb-ink) !important;
}

.zcb-calendar-app .zcb-nav-button:hover {
	background: #f1f3ef !important;
}

.zcb-month {
	min-width: 0;
}

.zcb-calendar-app button.zcb-day {
	min-width: 0 !important;
	min-height: 36px !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	box-shadow: none !important;
	font: 500 13px/1 Inter, Arial, sans-serif !important;
	text-decoration: none !important;
}

.zcb-calendar-app button.zcb-day.is-in-range {
	width: 100% !important;
	max-width: none !important;
	border-radius: 0 !important;
	background: var(--zcb-green-soft) !important;
	color: var(--zcb-ink) !important;
}

.zcb-calendar-app button.zcb-day.is-selected-start.is-in-range {
	border-radius: 18px 0 0 18px !important;
	background: var(--zcb-green) !important;
	color: #fff !important;
}

.zcb-calendar-app button.zcb-day.is-selected-end.is-in-range {
	border-radius: 0 18px 18px 0 !important;
	background: var(--zcb-green) !important;
	color: #fff !important;
}

.zcb-calendar-app button.zcb-day.is-selected-start:not(.is-in-range),
.zcb-calendar-app button.zcb-day.is-selected-end:not(.is-in-range) {
	background: var(--zcb-green) !important;
	color: #fff !important;
}

.zcb-summary-card .zcb-summary-row {
	min-height: 54px;
}

.zcb-summary-card .zcb-summary-guests select {
	display: block !important;
	width: 100% !important;
	height: 50px !important;
	min-height: 50px !important;
	margin: 0 !important;
	padding: 0 44px 0 16px !important;
	border: 1px solid var(--zcb-line) !important;
	border-radius: 10px !important;
	outline: 0 !important;
	background-color: #fff !important;
	background-image: linear-gradient(45deg, transparent 50%, #244f43 50%), linear-gradient(135deg, #244f43 50%, transparent 50%) !important;
	background-position: calc(100% - 19px) 21px, calc(100% - 14px) 21px !important;
	background-repeat: no-repeat !important;
	background-size: 5px 5px, 5px 5px !important;
	box-shadow: none !important;
	font: 600 14px/1 Inter, Arial, sans-serif !important;
	color: var(--zcb-ink) !important;
	appearance: none !important;
}

.zcb-summary-card .zcb-summary-guests select:focus {
	border-color: var(--zcb-green) !important;
	box-shadow: 0 0 0 3px rgba(36, 79, 67, .1) !important;
}

.zcb-calendar-footer {
	min-height: 42px;
}

/* WP Hotel Booking — finalizacja rezerwacji */
.zcb-checkout-shortcode {
	width: min(1180px, 100%);
	margin: 0 auto;
	font-family: Inter, Arial, sans-serif;
	color: var(--zcb-ink);
}

.zcb-checkout-intro {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
	align-items: end;
	gap: 48px;
	margin: 0 0 24px;
	padding: 30px 32px;
	border: 1px solid var(--zcb-line);
	border-radius: 18px;
	background: var(--zcb-card);
}

.zcb-checkout-intro h2 {
	margin: 8px 0 0 !important;
	font: 400 clamp(28px, 4vw, 42px)/1.08 Georgia, 'Times New Roman', serif !important;
	letter-spacing: -.02em !important;
	color: #0e2e25 !important;
}

.zcb-checkout-intro > p {
	margin: 0 !important;
	font-size: 14px !important;
	line-height: 1.75 !important;
	color: #536961 !important;
}

.zcb-checkout-benefits {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin: 0 0 24px;
}

.zcb-checkout-benefits span {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 48px;
	padding: 11px 16px;
	border: 1px solid #cfddd7;
	border-radius: 11px;
	background: #edf4f0;
	font-size: 12px;
	font-weight: 600;
	color: #425950;
}

.zcb-checkout-benefits i {
	display: grid;
	place-items: center;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--zcb-green);
	font-size: 11px;
	font-style: normal;
	color: #fff;
}

.zcb-checkout-empty {
	padding: clamp(32px, 7vw, 72px) 24px;
	border: 1px solid var(--zcb-line);
	border-radius: 18px;
	background: var(--zcb-card);
	text-align: center;
}

.zcb-checkout-empty h3 {
	margin: 8px 0 12px !important;
	font: 400 clamp(26px, 4vw, 36px)/1.15 Georgia, 'Times New Roman', serif !important;
	color: #0e2e25 !important;
}

.zcb-checkout-empty > p:not(.zcb-eyebrow) {
	max-width: 560px;
	margin: 0 auto 24px !important;
	font-size: 14px !important;
	line-height: 1.7 !important;
	color: #536961 !important;
}

.zcb-checkout-empty a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-height: 54px;
	padding: 0 24px;
	border-radius: 12px;
	background: var(--zcb-green);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none !important;
	color: #fff !important;
}

.zcb-checkout-shortcode:not(.zcb-checkout--coupon) .hb-coupon-toggle-wrapper,
.zcb-checkout-shortcode:not(.zcb-checkout--coupon) .hb-coupon-form {
	display: none !important;
}

#hotel-booking-payment.hb-checkout-modern,
#hotel-booking-payment.hb-checkout-modern * {
	box-sizing: border-box;
}

#hotel-booking-payment.hb-checkout-modern {
	width: min(1180px, 100%);
	margin: 34px auto 56px;
	font-family: Inter, Arial, sans-serif;
	color: var(--zcb-ink);
}

.zcb-checkout-shortcode #hotel-booking-payment.hb-checkout-modern {
	margin: 0 auto;
}

#hotel-booking-payment.hb-checkout-modern .hb-checkout-wrapper {
	display: grid !important;
	grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr) !important;
	align-items: start !important;
	gap: 28px !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-checkout-left-column,
#hotel-booking-payment.hb-checkout-modern .hb-order-summary {
	min-width: 0;
	padding: 32px !important;
	border: 1px solid var(--zcb-line) !important;
	border-radius: 18px !important;
	background: var(--zcb-card) !important;
	box-shadow: none !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-checkout-right-column {
	min-width: 0;
}

#hotel-booking-payment.hb-checkout-modern .hb-checkout-left-column > h3,
#hotel-booking-payment.hb-checkout-modern .hb-order-summary-title {
	margin: 0 0 26px !important;
	padding: 0 0 20px !important;
	border-bottom: 1px solid var(--zcb-line) !important;
	font: 400 clamp(25px, 3vw, 32px)/1.2 Georgia, 'Times New Roman', serif !important;
	color: #0e2e25 !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-order-new-customer,
#hotel-booking-payment.hb-checkout-modern .hb-order-new-customer .hb-col-padding,
#hotel-booking-payment.hb-checkout-modern .hb-customer,
#hotel-booking-payment.hb-checkout-modern .hb-addition-information,
#hotel-booking-payment.hb-checkout-modern .hb-addition-information .hb-col-padding,
#hotel-booking-payment.hb-checkout-modern .hb-payment-form,
#hotel-booking-payment.hb-checkout-modern .hb-payment-form .hb-col-padding {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-order-new-customer h4 {
	display: none !important;
}

#hotel-booking-payment.hb-checkout-modern .zcb-hidden-checkout-field,
#hotel-booking-payment.hb-checkout-modern li.hb-form-field:has([name="title"]),
#hotel-booking-payment.hb-checkout-modern li.hb-form-field:has([name="state"]) {
	display: none !important;
}

#hotel-booking-payment.hb-checkout-modern ul.hb-form-table {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 18px 20px !important;
	width: 100% !important;
	margin: 0 0 18px !important;
	padding: 0 !important;
	list-style: none !important;
}

#hotel-booking-payment.hb-checkout-modern ul.hb-form-table > li.hb-form-field {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-form-field-label,
#hotel-booking-payment.hb-checkout-modern .hb-addition-information h4,
#hotel-booking-payment.hb-checkout-modern .hb-payment-form h4 {
	display: block !important;
	margin: 0 0 9px !important;
	font: 700 10px/1.25 Inter, Arial, sans-serif !important;
	letter-spacing: .12em !important;
	text-transform: uppercase !important;
	color: #587268 !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-required {
	color: #9b3a30 !important;
}

#hotel-booking-payment.hb-checkout-modern input[type="text"],
#hotel-booking-payment.hb-checkout-modern input[type="email"],
#hotel-booking-payment.hb-checkout-modern input[type="tel"],
#hotel-booking-payment.hb-checkout-modern select,
#hotel-booking-payment.hb-checkout-modern textarea,
#hotel-booking-payment.hb-checkout-modern .select2-container .select2-selection {
	width: 100% !important;
	min-height: 52px !important;
	margin: 0 !important;
	padding: 0 15px !important;
	border: 1px solid #d5ddd8 !important;
	border-radius: 10px !important;
	outline: 0 !important;
	background: #fff !important;
	box-shadow: none !important;
	font: 500 14px/1.2 Inter, Arial, sans-serif !important;
	color: #1f2d28 !important;
	transition: border-color .2s ease, box-shadow .2s ease !important;
}

#hotel-booking-payment.hb-checkout-modern input[type="text"]:focus,
#hotel-booking-payment.hb-checkout-modern input[type="email"]:focus,
#hotel-booking-payment.hb-checkout-modern input[type="tel"]:focus,
#hotel-booking-payment.hb-checkout-modern select:focus,
#hotel-booking-payment.hb-checkout-modern textarea:focus {
	border-color: var(--zcb-green) !important;
	box-shadow: 0 0 0 3px rgba(36, 79, 67, .1) !important;
}

#hotel-booking-payment.hb-checkout-modern textarea {
	display: block !important;
	min-height: 118px !important;
	padding-top: 14px !important;
	resize: vertical !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-addition-information {
	margin-top: 28px !important;
	padding-top: 26px !important;
	border-top: 1px solid var(--zcb-line) !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-addition-information h4 {
	margin-bottom: 12px !important;
	font: 400 22px/1.2 Georgia, 'Times New Roman', serif !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
	color: #0e2e25 !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-order-summary-content,
#hotel-booking-payment.hb-checkout-modern .hb-order-summary-header,
#hotel-booking-payment.hb-checkout-modern .hb-order-item,
#hotel-booking-payment.hb-checkout-modern .hb-order-summary-row {
	width: 100% !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-order-summary-header,
#hotel-booking-payment.hb-checkout-modern .hb-order-item,
#hotel-booking-payment.hb-checkout-modern .hb-order-summary-row {
	display: flex !important;
	align-items: flex-start !important;
	justify-content: space-between !important;
	gap: 18px !important;
	margin: 0 !important;
	padding: 15px 0 !important;
	border-bottom: 1px solid var(--zcb-line) !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-order-summary-header {
	padding-top: 0 !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	letter-spacing: .11em !important;
	text-transform: uppercase !important;
	color: #6f7974 !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-order-item-details {
	min-width: 0 !important;
	flex: 1 1 auto !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-order-item-title {
	margin: 0 0 8px !important;
	font: 600 15px/1.35 Inter, Arial, sans-serif !important;
	color: var(--zcb-ink) !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-order-item-meta,
#hotel-booking-payment.hb-checkout-modern .hb-order-item-meta p {
	margin: 0 0 5px !important;
	font-size: 11px !important;
	line-height: 1.55 !important;
	color: #68756f !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-order-item-price,
#hotel-booking-payment.hb-checkout-modern .hb-order-value {
	flex: 0 0 auto !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	color: var(--zcb-ink) !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-order-total {
	align-items: center !important;
	padding: 19px 0 !important;
	border-bottom: 0 !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-order-total .hb-order-label,
#hotel-booking-payment.hb-checkout-modern .hb-order-total .hb-order-value {
	font-size: 18px !important;
	font-weight: 700 !important;
	color: #0e2e25 !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-payment-form {
	margin-top: 18px !important;
	padding: 17px !important;
	border: 1px solid #cfddd7 !important;
	border-radius: 11px !important;
	background: #edf4f0 !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-payment-form h4 {
	margin-bottom: 12px !important;
	font-size: 11px !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-payment-methods {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-payment-methods li {
	margin: 0 !important;
	padding: 0 !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-payment-methods label,
#hotel-booking-payment.hb-checkout-modern .hb-order-terms label {
	display: flex !important;
	align-items: flex-start !important;
	gap: 9px !important;
	margin: 0 !important;
	font-size: 12px !important;
	line-height: 1.55 !important;
	color: #425950 !important;
}

#hotel-booking-payment.hb-checkout-modern input[type="radio"],
#hotel-booking-payment.hb-checkout-modern input[type="checkbox"] {
	flex: 0 0 auto !important;
	width: 17px !important;
	height: 17px !important;
	margin: 1px 0 0 !important;
	accent-color: var(--zcb-green) !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-order-terms {
	margin: 18px 0 0 !important;
	padding: 0 !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-order-terms a {
	color: var(--zcb-green) !important;
	text-decoration: underline !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-order-place {
	margin: 20px 0 0 !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-btn-place-order {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 58px !important;
	margin: 0 !important;
	padding: 16px 22px !important;
	border: 0 !important;
	border-radius: 13px !important;
	background: var(--zcb-green) !important;
	box-shadow: none !important;
	font: 700 12px/1 Inter, Arial, sans-serif !important;
	letter-spacing: .03em !important;
	text-transform: uppercase !important;
	color: #fff !important;
	cursor: pointer !important;
	transition: transform .2s ease, background .2s ease !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-btn-place-order:hover {
	transform: translateY(-1px) !important;
	background: #183e34 !important;
}

#hotel-booking-payment.hb-checkout-modern .hb-coupon-toggle-wrapper,
#hotel-booking-payment.hb-checkout-modern .hb-checkout-login-notice,
#hotel-booking-payment.hb-checkout-modern .hb-message,
.hotel-booking-message {
	margin: 0 0 20px !important;
	padding: 14px 16px !important;
	border: 1px solid #cfddd7 !important;
	border-radius: 10px !important;
	background: #edf4f0 !important;
	font-size: 12px !important;
	line-height: 1.55 !important;
	color: var(--zcb-ink) !important;
}

#hotel-booking-payment.hb-checkout-modern .hotel_checkout_errors {
	margin: 0 0 22px !important;
	padding: 14px 16px !important;
	border: 1px solid #dfb7b2 !important;
	border-radius: 10px !important;
	background: #fff1ef !important;
	color: #86372f !important;
}

#hotel-booking-payment.hb-checkout-modern .hotel_checkout_errors p {
	margin: 0 0 6px !important;
	font-size: 12px !important;
	line-height: 1.55 !important;
}

#hotel-booking-payment.hb-checkout-modern .hotel_checkout_errors p:last-child {
	margin-bottom: 0 !important;
}

#hotel-booking-payment.hb-checkout-modern #hb-apply-coupon {
	min-height: 44px !important;
	padding: 0 18px !important;
	border: 0 !important;
	border-radius: 9px !important;
	background: var(--zcb-green) !important;
	color: #fff !important;
}

@media (max-width: 980px) {
	.zcb-bar { grid-template-columns: repeat(2, 1fr); gap: 0; padding: 18px; }
	.zcb-bar__field { min-height: 70px; }
	.zcb-bar__field:nth-of-type(2) { border-right: 0; }
	.zcb-bar__field:nth-of-type(3) { border-top: 1px solid var(--zcb-line); }
	.zcb-submit { margin-top: 12px; }
	.zcb-booking-layout { grid-template-columns: 1fr; }
	.zcb-summary-card { width: 100%; }
	#hotel-booking-payment.hb-checkout-modern .hb-checkout-wrapper {
		grid-template-columns: 1fr !important;
	}
	.zcb-checkout-intro { grid-template-columns: 1fr; align-items: start; gap: 18px; }
}

@media (max-width: 680px) {
	.zcb-bar { grid-template-columns: 1fr; width: calc(100% - 24px); padding: 14px 18px 18px; border-radius: 16px; }
	.zcb-bar__field,
	.zcb-bar__field:first-of-type { min-height: 66px; padding: 12px 4px; border-right: 0; border-bottom: 1px solid var(--zcb-line); }
	.zcb-bar__field:nth-of-type(3) { border-top: 0; }
	.zcb-submit { width: 100%; min-width: 0; margin: 16px 0 0; }
	.zcb-calendar-card { padding: 26px 18px 20px; }
	.zcb-summary-card { padding: 26px 20px; }
	.zcb-calendar-header { margin-bottom: 26px; }
	.zcb-calendar-nav { gap: 7px; }
	.zcb-nav-button { width: 40px; height: 40px; }
	.zcb-months { grid-template-columns: 1fr; }
	.zcb-month:nth-child(2) { display: none; }
	.zcb-weekdays,
	.zcb-days { grid-template-columns: repeat(7, minmax(30px, 1fr)); }
	.zcb-day { width: 34px; height: 34px; }
	.zcb-calendar-footer { align-items: flex-start; flex-direction: column; }
	.zcb-calendar-note { text-align: left; }
	#hotel-booking-payment.hb-checkout-modern {
		margin: 20px auto 40px;
	}
	#hotel-booking-payment.hb-checkout-modern .hb-checkout-left-column,
	#hotel-booking-payment.hb-checkout-modern .hb-order-summary {
		padding: 22px 18px !important;
		border-radius: 15px !important;
	}
	#hotel-booking-payment.hb-checkout-modern ul.hb-form-table {
		grid-template-columns: 1fr !important;
		gap: 15px !important;
	}
	#hotel-booking-payment.hb-checkout-modern .hb-order-item {
		align-items: flex-start !important;
	}
	.zcb-checkout-intro { padding: 24px 20px; border-radius: 15px; }
	.zcb-checkout-benefits { grid-template-columns: 1fr; }
}
