.ebc-booking,
.ebc-booking-checkout {
	--ebc-ink: #101522;
	--ebc-muted: #6f7380;
	--ebc-line: #e8e4df;
	--ebc-soft: #f7f6f4;
	--ebc-accent: #e8e1d7;
	color: var(--ebc-ink);
	font-family: "Manrope", Arial, Helvetica, sans-serif;
	min-height: 620px;
	padding: 0 16px 56px;
}

.ebc-booking *,
.ebc-booking *::before,
.ebc-booking *::after,
.ebc-booking-checkout *,
.ebc-booking-checkout *::before,
.ebc-booking-checkout *::after {
	font-family: inherit;
}

.ebc-booking {
	position: relative;
	padding-top: 160px;
}

.ebc-timer {
	position: sticky;
	top: 0;
	z-index: 10;
	margin: 0 -16px 40px;
	padding: 10px 16px;
	background: var(--ebc-accent);
	text-align: center;
	font-size: 14px;
}

.ebc-notice {
	width: min(100%, 576px);
	margin: 0 auto 18px;
	padding: 12px 14px;
	border: 1px solid #e6d4ad;
	border-radius: 6px;
	background: #fff8e6;
	color: #6f5524;
	font-size: 14px;
	line-height: 1.45;
	text-align: center;
}

.ebc-notice[hidden] {
	display: none;
}

.ebc-stage {
	position: relative;
	transition: opacity 0.18s ease;
}

.ebc-stage.is-loading {
	pointer-events: none;
}

.ebc-stage.is-loading > * {
	opacity: 0.28;
	filter: blur(1px);
	transition: opacity 0.18s ease, filter 0.18s ease;
}

.ebc-stage.is-loading::after {
	content: attr(data-loading-text);
	position: absolute;
	left: 50%;
	top: min(50%, 280px);
	z-index: 12;
	width: min(100% - 32px, 320px);
	min-height: 112px;
	display: grid;
	align-items: end;
	justify-items: center;
	padding: 64px 24px 20px;
	border: 1px solid var(--ebc-line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 18px 50px rgba(16, 21, 34, 0.12);
	color: var(--ebc-ink);
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	transform: translate(-50%, -50%);
	backdrop-filter: blur(4px);
}

.ebc-stage.is-loading::before {
	content: "";
	position: absolute;
	left: 50%;
	top: min(50%, 280px);
	z-index: 13;
	width: 28px;
	height: 28px;
	margin-top: -34px;
	border: 2px solid rgba(16, 21, 34, 0.14);
	border-top-color: var(--ebc-ink);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	animation: ebc-spin 0.75s linear infinite;
}

@keyframes ebc-spin {
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

.ebc-expired-panel {
	text-align: center;
}

.ebc-expired-panel h2,
.ebc-expired-card h2 {
	margin: 0 0 10px;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0;
}

.ebc-expired-panel p,
.ebc-expired-card p {
	margin: 0 0 22px;
	color: var(--ebc-muted);
}

.ebc-expired-overlay,
.ebc-checkout-expired-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	padding: 24px;
	background: rgba(247, 246, 244, 0.78);
	backdrop-filter: blur(2px);
}

.ebc-expired-card {
	width: min(100%, 440px);
	padding: 28px;
	border: 1px solid var(--ebc-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 16px 40px rgba(16, 21, 34, 0.12);
	text-align: center;
}

.ebc-book-again-link,
.ebc-expired-card .ebc-primary {
	display: inline-grid;
	width: auto;
	min-width: 180px;
	padding: 0 22px;
	place-items: center;
	text-decoration: none;
}

.ebc-progress {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin: 14px auto 64px;
}

.ebc-progress__item {
	position: relative;
	display: grid;
	justify-items: center;
	gap: 7px;
	min-width: 72px;
	color: var(--ebc-muted);
	font-size: 12px;
}

.ebc-progress__item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 16px;
	left: calc(50% + 22px);
	width: 46px;
	height: 1px;
	background: var(--ebc-line);
}

.ebc-progress__item span {
	display: grid;
	width: 32px;
	height: 32px;
	place-items: center;
	border: 1px solid transparent;
	border-radius: 999px;
	background: #f1f1f1;
	color: var(--ebc-muted);
	font-size: 14px;
}

.ebc-progress__item.is-current span {
	border-color: #5d5d5d;
	background: #fff;
	color: var(--ebc-ink);
}

.ebc-progress__item.is-complete span {
	background: var(--ebc-accent);
	color: var(--ebc-ink);
}

.ebc-progress__item.is-clickable {
	cursor: pointer;
}

.ebc-progress__item.is-clickable:hover span,
.ebc-progress__item.is-clickable:focus-visible span {
	border-color: #cbc4bb;
	background: #fbfaf8;
}

.ebc-progress__item.is-clickable:focus-visible {
	outline: 2px solid #9d9488;
	outline-offset: 4px;
}

.ebc-progress__item.is-current small,
.ebc-progress__item.is-complete small {
	color: var(--ebc-ink);
}

.ebc-heading {
	margin: 0 auto 32px;
	text-align: center;
}

.ebc-heading h2 {
	margin: 0 0 8px;
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 400;
	letter-spacing: 0;
}

.ebc-heading p {
	margin: 0;
	color: var(--ebc-muted);
}

.ebc-service-layout {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(280px, 0.78fr);
	gap: 16px;
	align-items: stretch;
	max-width: 1120px;
	margin: 0 auto;
}

.ebc-services {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	min-width: 0;
}

.ebc-card,
.ebc-panel,
.ebc-calendar,
.ebc-times {
	border: 1px solid var(--ebc-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 1px 2px rgba(16, 21, 34, 0.04);
}

.ebc-card {
	display: grid;
	min-height: 178px;
	padding: 28px 24px;
	text-align: left;
	cursor: pointer;
}

.ebc-card:hover,
.ebc-time:hover,
.ebc-calendar button:not(:disabled):hover {
	border-color: #cbc4bb;
	background: #fbfaf8;
}

.ebc-card strong {
	font-size: 18px;
	font-weight: 500;
	padding: 0 0 10px;
}

.ebc-card span {
	color: var(--ebc-muted);
	font-size: 14px;
	line-height: 19px;
}
.ebc-card .ebc-card__price, .ebc-card .ebc-card__price span {font-size: 18px; color: #000;}

.ebc-card__meta {
	align-self: end;
}

.ebc-card__price {
	justify-self: end;
	color: var(--ebc-ink) !important;
	font-size: 20px;
	font-weight: 700;
}

.ebc-card__vat {
	justify-self: end;
	color: #8b8b8b !important;
	font-size: 12px !important;
	line-height: 1.25;
}

.ebc-card__discount {
	justify-self: end;
	color: #0f766e !important;
	font-size: 13px;
	font-weight: 500;
}

.ebc-request-banners {
	display: grid;
	gap: 16px;
	min-width: 0;
}

.ebc-request-banner {
	display: flex;
	min-height: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 34px 26px;
	border: 1px solid var(--ebc-line);
	border-radius: 8px;
	background: #fbfaf8;
	box-shadow: 0 1px 2px rgba(16, 21, 34, 0.04);
	text-align: center;
}

.ebc-request-banner__icon {
	display: grid;
	width: 54px;
	height: 54px;
	margin: 0 0 22px;
	place-items: center;
	border-radius: 999px;
	background: #ebe6de;
	color: var(--ebc-ink);
}

.ebc-request-banner__icon svg {
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ebc-request-banner__kicker {
	margin: 0 0 8px;
	color: var(--ebc-muted);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ebc-request-banner h3 {
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 0;
}

.ebc-request-banner p {
	max-width: 270px;
	margin: 0 0 24px;
	color: var(--ebc-muted);
	font-size: 14px;
	line-height: 1.55;
}

.ebc-request-banner__button {
	display: inline-grid;
	min-height: 42px;
	min-width: 148px;
	place-items: center;
	padding: 0 18px;
	border: 1px solid #d7d0c7;
	border-radius: 6px;
	background: #fff;
	color: var(--ebc-ink);
	font: inherit;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.ebc-request-banner__button:hover,
.ebc-request-banner__button:focus-visible {
	border-color: var(--ebc-ink);
	background: var(--ebc-ink);
	color: #fff;
	transform: translateY(-1px);
}

body.ebc-special-modal-open {
	overflow: hidden;
}

.ebc-special-modal[hidden] {
	display: none;
}

.ebc-special-modal {
	position: fixed;
	inset: 0;
	z-index: 9998;
	display: grid;
	place-items: center;
	padding: 24px;
}

.ebc-special-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.76);
}

.ebc-special-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 560px);
	max-height: calc(100vh - 48px);
	overflow: auto;
	padding: 44px 28px 26px;
	border: 1px solid var(--ebc-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
	color: var(--ebc-ink);
}

.ebc-special-modal__close {
	position: absolute;
	top: 18px;
	right: 18px;
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #5c5f68;
	font-size: 26px;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
}

.ebc-special-modal__close:hover,
.ebc-special-modal__close:focus-visible {
	background: var(--ebc-soft);
	color: var(--ebc-ink);
}

.ebc-special-modal__header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 28px;
}

.ebc-special-modal__icon {
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	color: #d8cfc3;
}

.ebc-special-modal__icon svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ebc-special-modal h2 {
	margin: 0;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 0;
}

.ebc-special-form {
	display: grid;
	gap: 20px;
}

.ebc-special-field {
	display: grid;
	gap: 9px;
	margin: 0;
	color: var(--ebc-ink);
	font-size: 14px;
	font-weight: 400;
}

.ebc-special-field span {
	color: var(--ebc-ink);
}

.ebc-special-field input,
.ebc-special-field textarea {
	width: 100%;
	min-height: 42px;
	padding: 0 12px;
	border: 1px solid var(--ebc-line);
	border-radius: 6px;
	background: #fff;
	color: var(--ebc-ink);
	font: inherit;
	font-size: 14px;
	box-shadow: none;
	outline: none;
	transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.ebc-special-field textarea {
	min-height: 108px;
	padding-top: 12px;
	resize: vertical;
}

.ebc-special-field input:focus,
.ebc-special-field textarea:focus {
	border-color: #bfb7ac;
	box-shadow: 0 0 0 3px rgba(232, 225, 215, 0.7);
}

.ebc-special-actions {
	margin-top: 4px;
}

.ebc-special-modal .wpcf7-spinner {
	display: none;
}

.ebc-special-modal .wpcf7-submit,
.ebc-special-submit {
	display: grid;
	width: 100%;
	min-height: 48px;
	place-items: center;
	border: 0;
	border-radius: 6px;
	background: var(--ebc-accent);
	color: var(--ebc-ink);
	font: inherit;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.16s ease, color 0.16s ease;
}

.ebc-special-modal .wpcf7-submit:hover,
.ebc-special-modal .wpcf7-submit:focus-visible,
.ebc-special-submit:hover,
.ebc-special-submit:focus-visible {
	background: var(--ebc-ink);
	color: #fff;
}

.ebc-special-modal .wpcf7 form .wpcf7-response-output {
	margin: 16px 0 0;
	padding: 10px 12px;
	border: 1px solid var(--ebc-line);
	border-radius: 6px;
	font-size: 13px;
	line-height: 1.45;
}

.ebc-special-modal .wpcf7-not-valid-tip {
	margin-top: 6px;
	color: #9f3f35;
	font-size: 12px;
}

.ebc-calendar {
	width: min(100%, 448px);
	margin: 0 auto;
	padding: 28px;
}

.ebc-calendar__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}

.ebc-calendar__header button,
.ebc-calendar__grid button,
.ebc-time {
	border: 1px solid var(--ebc-line);
	border-radius: 6px;
	background: #fff;
	color: var(--ebc-ink);
	cursor: pointer;
}

.ebc-calendar__header button {
	width: 30px;
	height: 30px;
	font-size: 22px;
	line-height: 1;
}

.ebc-calendar__grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 8px;
}

.ebc-calendar__weekdays {
	margin-bottom: 10px;
	color: var(--ebc-muted);
	text-align: center;
	font-size: 13px;
}

.ebc-calendar__grid button {
	aspect-ratio: 1;
	border-color: transparent;
}

.ebc-calendar__grid button:disabled {
	color: #b8b8b8;
	cursor: not-allowed;
}

.ebc-calendar__grid button:not(:disabled) {
	font-weight: 600;
}

.ebc-calendar__grid .is-muted {
	color: #aaa;
}

.ebc-times {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
	width: min(100%, 448px);
	margin: 0 auto;
	padding: 16px;
}

.ebc-time {
	min-height: 40px;
}

.ebc-times > p {
	grid-column: 1 / -1;
	margin: 0;
	padding: 8px 4px;
	color: var(--ebc-muted);
	line-height: 1.45;
	text-align: center;
}

.ebc-panel {
	width: min(100%, 576px);
	margin: 0 auto 32px;
	padding: 24px;
}
.woocommerce-order, .ebc-booking-order .entry-header {width: min(100%, 576px); margin: 0 auto;}

.ebc-details-form {
	display: grid;
	gap: 18px;
}

.ebc-details-form label {
	display: grid;
	gap: 8px;
	font-size: 14px;
}

.ebc-details-form input,
.ebc-details-form textarea {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 11px 12px;
	background: #fff;
	color: var(--ebc-ink);
	font: inherit;
}

.ebc-details-form textarea {
	min-height: 88px;
	resize: vertical;
}

.ebc-primary {
	width: min(100%, 576px);
	min-height: 48px;
	border: 0;
	border-radius: 6px;
	background: var(--ebc-accent);
	color: var(--ebc-ink);
	cursor: pointer;
	font: inherit;
}

.ebc-primary:disabled {
	cursor: not-allowed;
	opacity: 0.55;
}

.ebc-details-form .ebc-primary,
.ebc-pay {
	width: 100%;
	max-width: 530px;
}

.ebc-extra {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 94px;
	align-items: center;
	gap: 12px;
	padding: 16px;
	border: 1px solid var(--ebc-line);
	border-radius: 6px;
}

.ebc-extra + .ebc-extra {
	margin-top: 14px;
}

.ebc-extra > span {
	display: grid;
	gap: 6px;
}
.ebc-extra > span span {display: inline;}

.ebc-extra strong {
	font-weight: 500;
}

.ebc-extra em {
	color: var(--ebc-muted);
	font-style: normal;
}

.ebc-extra small,
.ebc-summary p {
	color: var(--ebc-muted);
}

.ebc-extra-group {
	margin: 0 0 24px;
}

.ebc-extra-group:last-child {
	margin-bottom: 0;
}

.ebc-extra-group__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 56px;
	margin: 0;
	border: 1px solid #ded7cd;
	border-radius: 6px;
	padding: 16px 18px;
	background: #eee7dc;
	color: var(--ebc-ink);
	cursor: pointer;
	font: inherit;
	text-align: left;
	transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.ebc-extra-group__toggle:hover,
.ebc-extra-group__toggle:focus-visible {
	border-color: #d1c6b8;
	background: #e5ddd1;
	outline: 0;
}

.ebc-extra-group__toggle > span {
	display: grid;
	gap: 4px;
}

.ebc-extra-group__toggle strong {
	font-size: 16px;
	line-height: 1.3;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.ebc-extra-group__toggle small {
	color: var(--ebc-muted);
	font-size: 12px;
}

.ebc-extra-group__toggle i {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border: 1px solid rgba(0, 0, 0, .22);
	border-radius: 50%;
	font-style: normal;
	font-size: 18px;
	line-height: 1;
	color: var(--ebc-ink);
	transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}

.ebc-extra-group__toggle:hover i,
.ebc-extra-group__toggle:focus-visible i {
	border-color: rgba(0, 0, 0, .34);
	background: rgba(255, 255, 255, .28);
}

.ebc-extra-group__toggle[aria-expanded="true"] i {
	transform: rotate(180deg);
}

.ebc-extra-group__body {
	padding-top: 14px;
}

.ebc-extra-qty {
	display: grid;
	gap: 6px;
	justify-items: end;
	color: var(--ebc-muted);
	font-size: 12px;
}

.ebc-extra-qty input {
	width: 48px;
	height: 40px;
	border: 1px solid var(--ebc-line);
	border-width: 0 1px;
	border-radius: 0;
	padding: 0 8px;
	text-align: center;
	color: var(--ebc-ink);
	background: #fff;
	appearance: textfield;
	-moz-appearance: textfield;
}

.ebc-extra-qty input::-webkit-outer-spin-button,
.ebc-extra-qty input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.ebc-qty-control {
	display: inline-flex;
	align-items: center;
	overflow: hidden;
	border: 1px solid var(--ebc-line);
	border-radius: 6px;
	background: #fff;
}

.ebc-qty-step {
	width: 40px;
	height: 40px;
	border: 0;
	padding: 0;
	display: inline-grid;
	place-items: center;
	color: var(--ebc-ink);
	background: #fff;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.ebc-qty-step:hover {
	background: var(--ebc-ink);
	color: #fff;
}

.ebc-note {
	color: #8a6f47 !important;
}

.ebc-summary-lines p,
.ebc-discount-row,
.ebc-coupon-row,
.ebc-tax-row,
.ebc-total {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.ebc-discount-row {
	color: #0f766e;
}

.ebc-coupon-row {
	color: #0f766e;
}

.ebc-coupon-box {
	width: min(100%, 576px);
	margin: 20px auto 24px;
	padding: 24px;
}

.ebc-coupon-box h3 {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 500;
}

.ebc-coupon-box p {
	margin: 0 0 16px;
	color: var(--ebc-muted);
	font-size: 14px;
	line-height: 1.45;
}

.ebc-coupon-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
}

.ebc-coupon-code {
	min-height: 44px;
	padding: 0 14px;
	border: 1px solid var(--ebc-line);
	border-radius: 6px;
	background: #fff;
	color: var(--ebc-ink);
	font: inherit;
	text-transform: uppercase;
}

.ebc-coupon-code:focus {
	border-color: #bfb7ac;
	outline: 0;
	box-shadow: 0 0 0 3px rgba(232, 225, 215, 0.65);
}

.ebc-coupon-apply,
.ebc-coupon-remove {
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid var(--ebc-line);
	border-radius: 6px;
	background: var(--ebc-ink);
	color: #fff;
	font: inherit;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.ebc-coupon-apply:hover,
.ebc-coupon-apply:focus-visible,
.ebc-coupon-remove:hover,
.ebc-coupon-remove:focus-visible {
	border-color: var(--ebc-ink);
	background: #fff;
	color: var(--ebc-ink);
}

.ebc-coupon-message {
	margin: 12px 0 0 !important;
	color: #0f766e !important;
}

.ebc-coupon-message.is-error {
	color: #9f3f35 !important;
}

.ebc-coupon-remove {
	margin-top: 10px;
	background: #fff;
	color: var(--ebc-ink);
}

.ebc-tax-row {
	color: var(--ebc-muted);
}

.ebc-total {
	font-size: 20px;
	color: var(--ebc-ink) !important;
}

.ebc-rules {
	display: flex;
	align-items: center;
	gap: 10px;
	width: min(100%, 576px);
	margin: 0 auto 48px;
	font-size: 14px;
}

.ebc-rules a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
}

.ebc-rules a:hover {
	color: var(--ebc-ink);
	text-decoration-thickness: 2px;
}

.ebc-pay {
	display: block;
	margin: 0 auto;
}

.ebc-booking-checkout .site-main,
.ebc-booking-checkout .content-area,
.ebc-booking-checkout .entry-content {
	width: min(100% - 2px, 760px);
	max-width: 760px;
	margin-inline: auto;
}

.ebc-booking-checkout #secondary,
.ebc-booking-checkout .widget-area,
.ebc-booking-checkout .woocommerce-form-coupon-toggle,
.ebc-booking-checkout .woocommerce-additional-fields,
.ebc-booking-checkout .woocommerce-account-fields,
.ebc-booking-checkout .col2-set,
.ebc-booking-checkout #customer_details,
.ebc-booking-checkout .wc-block-checkout__contact-fields,
.ebc-booking-checkout .wc-block-checkout__billing-fields,
.ebc-booking-checkout .wc-block-checkout__shipping-fields,
.ebc-booking-checkout .wc-block-checkout__additional-fields,
.ebc-booking-checkout .wc-block-checkout__order-notes,
.ebc-booking-checkout .wc-block-checkout__create-account,
.ebc-booking-checkout .shop_table.woocommerce-checkout-review-order-table thead,
.ebc-booking-checkout .shop_table.woocommerce-checkout-review-order-table tbody,
.ebc-booking-checkout .shop_table.woocommerce-checkout-review-order-table tfoot,
.ebc-booking-checkout #order_review_heading {
	display: none !important;
}

.ebc-booking-checkout .wp-block-woocommerce-checkout,
.ebc-booking-checkout .wc-block-components-sidebar-layout {
	max-width: 760px;
	margin-inline: auto;
}

.ebc-booking-checkout .wc-block-components-main {
	width: 100% !important;
	padding-right: 0 !important;
}

.ebc-booking-checkout .wc-block-components-sidebar {
	width: 100% !important;
	padding-left: 0 !important;
}

.ebc-booking-checkout .wc-block-components-product-image,
.ebc-booking-checkout .wc-block-cart-item__image,
.ebc-booking-checkout .wc-block-components-product-metadata__description,
.ebc-booking-checkout .wc-block-components-sidebar-layout__header,
.ebc-booking-checkout .wc-block-components-order-summary__button,
.ebc-booking-checkout .wc-block-components-order-summary-item__image,
.ebc-booking-checkout .wc-block-components-order-summary-item__quantity,
.ebc-booking-checkout .wc-block-components-order-summary-item__quantity-badge,
.ebc-booking-checkout .wc-block-components-product-badge {
	display: none !important;
}

.ebc-booking-checkout .wc-block-components-order-summary-item__description {
	padding-left: 0 !important;
	margin-left: 0 !important;
}

.ebc-booking-checkout .wc-block-components-product-details,
.ebc-booking-checkout .wc-block-components-product-details li {
	display: block;
	margin: 0;
	padding: 0;
}

.ebc-booking-checkout .wc-block-components-product-details li + li {
	margin-top: 3px;
}

.ebc-booking-checkout .wc-block-components-product-details__name,
.ebc-booking-checkout .wc-block-components-product-details__value {
	display: inline;
}

.ebc-booking-checkout .ebc-checkout-product-meta,
.ebc-booking-checkout .ebc-checkout-meta-line {
	display: block;
}

.ebc-booking-checkout .ebc-checkout-product-meta {
	margin-top: 4px;
	line-height: 1.45;
}

.ebc-booking-checkout form.checkout {
	display: block;
	max-width: 576px;
	margin: 0 auto 56px;
}

.ebc-booking-checkout #order_review,
.ebc-booking-checkout #payment {
	float: none !important;
	width: 100% !important;
	border: 0;
	background: transparent;
}

.ebc-booking-checkout #payment .payment_methods,
.ebc-booking-checkout #payment .place-order {
	padding: 0 !important;
	border: 0 !important;
}

.ebc-booking-checkout #payment .place-order {
	display: block !important;
	width: 100% !important;
}

.ebc-booking-checkout #payment .payment_box {
	background: #fbfaf8;
}

.ebc-booking-checkout #place_order,
.ebc-booking-checkout .woocommerce-checkout-payment #place_order,
.ebc-booking-checkout .wc-block-components-checkout-place-order-button,
.ebc-booking-checkout .wc-block-checkout__actions .wc-block-components-checkout-place-order-button {
	display: flex !important;
	justify-content: center;
	align-items: center;
	width: 100% !important;
	max-width: none !important;
	min-height: 48px;
	border-radius: 6px;
	background: var(--ebc-accent);
	color: var(--ebc-ink);
	font: inherit;
}

.ebc-booking-checkout .wc-block-checkout__actions,
.ebc-booking-checkout .wc-block-checkout__actions_row,
.ebc-booking-checkout .wc-block-components-checkout-place-order-button__text {
	width: 100%;
}

.ebc-hidden-checkout-field {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
}

.ebc-checkout-timer {
	position: sticky;
	top: 0;
	z-index: 10;
	margin: 0 calc(50% - 50vw) 48px;
	padding: 10px 16px;
	background: var(--ebc-accent);
	text-align: center;
	font-size: 14px;
}

.ebc-checkout-timer--blocks {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	margin: 0;
}

.ebc-booking-checkout:has(.ebc-checkout-timer--blocks) {
	padding-top: 38px;
}

.ebc-checkout-summary p {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin: 10px 0;
	color: var(--ebc-muted);
}

.ebc-checkout-summary p strong {
	color: var(--ebc-ink);
	font-weight: 500;
	text-align: right;
}

.ebc-booking-reference {
	justify-content: center !important;
	font-size: 13px;
}

.ebc-booking-order .woocommerce-customer-details,
.ebc-booking-order .woocommerce-customer-details--phone,
.ebc-booking-order .woocommerce-customer-details--email,
.ebc-booking-order .woocommerce-column--billing-address,
.ebc-booking-order .woocommerce-column--shipping-address {
	display: none !important;
}

.ebc-booking-order .woocommerce-order-overview,
.ebc-booking-order .woocommerce-order > .woocommerce-order-details:not(.ebc-order-booking-details) {
	display: none !important;
}

.ebc-order-booking-details .ebc-order-section-heading th {
	padding-top: 24px;
	color: var(--ebc-ink);
	font-size: 18px;
	font-weight: 500;
	text-align: left;
}

.ebc-order-booking-details .ebc-order-total-row th,
.ebc-order-booking-details .ebc-order-total-row td {
	font-size: 18px;
	font-weight: 700;
}
.ebc-panel h3 {padding-bottom: 20px;}
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {margin-top: 30px;}
.woocommerce-privacy-policy-text {}
body .woocommerce-checkout #payment {background: transparent;}
.ebc-booking-checkout .entry-header, .ebc-booking-order .entry-header {display: none;}
.woocommerce-notice--success {font-size: 23px;text-align: center;padding: 0 0 70px;font-weight: 500;}
.woocommerce-order-details__title {padding: 0 0 10px; font-size: 18px; font-weight: bold;}

@media (max-width: 980px) {
	.ebc-service-layout {
		grid-template-columns: 1fr;
		max-width: 720px;
	}

	.ebc-request-banner {
		min-height: 260px;
	}
}

@media (max-width: 760px) {
	.ebc-services {
		grid-template-columns: 1fr;
	}

	.ebc-progress {
		gap: 2px;
	}

	.ebc-progress__item {
		min-width: 56px;
	}

	.ebc-progress__item:not(:last-child)::after {
		width: 24px;
		left: calc(50% + 18px);
	}

	.ebc-times {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ebc-extra {
		grid-template-columns: 1fr;
	}

	.ebc-extra-qty {
		justify-items: start;
	}

	.ebc-coupon-form {
		grid-template-columns: 1fr;
	}
}
