.och-booking-app {
	--och-green: #5fc70f;
	--och-green-dark: #3f8f16;
	--och-ink: #173727;
	--och-muted: #64736b;
	--och-line: #dfe7e1;
	--och-soft: #f5f9f3;
	--och-white: #ffffff;
	position: relative;
	isolation: isolate;
	width: 100%;
	min-height: 82vh;
	padding: clamp(24px, 5vw, 72px) 16px;
	color: var(--och-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background:
		radial-gradient(circle at 8% 20%, rgba(95, 199, 15, 0.13), transparent 25%),
		radial-gradient(circle at 90% 76%, rgba(117, 161, 82, 0.18), transparent 28%),
		linear-gradient(145deg, #fbfcfb 0%, #eef5ed 100%);
	overflow: hidden;
	box-sizing: border-box;
}

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

.och-booking-app::before,
.och-booking-app::after {
	position: absolute;
	z-index: -1;
	content: "";
	border-radius: 50%;
	filter: blur(1px);
}

.och-booking-app::before {
	top: 14%;
	left: -120px;
	width: 360px;
	height: 360px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.78), rgba(95, 199, 15, 0.05) 64%, transparent 65%);
}

.och-booking-app::after {
	right: -150px;
	bottom: 4%;
	width: 440px;
	height: 440px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.85), rgba(82, 137, 52, 0.07) 60%, transparent 61%);
}

.och-booking-shell {
	width: min(100%, 1024px);
	margin: 0 auto;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.975);
	border: 1px solid rgba(43, 74, 55, 0.14);
	border-radius: 34px;
	box-shadow: 0 30px 85px rgba(32, 69, 44, 0.15);
	backdrop-filter: blur(14px);
}

.och-booking-brandbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 116px;
	padding: 22px clamp(24px, 5vw, 54px);
	border-bottom: 1px solid var(--och-line);
}

.och-booking-logo,
.och-booking-logo:link,
.och-booking-logo:visited {
	display: inline-flex !important;
	align-items: center;
	gap: 12px;
	color: var(--och-ink) !important;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 500;
	line-height: 1.1;
	text-decoration: none !important;
}

.och-booking-logo img {
	display: block;
	width: auto;
	max-width: 320px;
	height: 74px;
	object-fit: contain;
	object-position: left center;
}

.och-booking-logo__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	color: var(--och-green-dark);
	font-size: 42px;
}

.och-booking-help,
.och-booking-help:link,
.och-booking-help:visited {
	color: var(--och-ink) !important;
	font-size: 16px;
	font-weight: 800;
	text-decoration: none !important;
	white-space: nowrap;
}

.och-booking-help span {
	margin-right: 6px;
	color: var(--och-muted);
	font-weight: 500;
}

.och-booking-progress {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 0;
	padding: 28px clamp(18px, 4.5vw, 48px) 24px;
	background: rgba(252, 253, 252, 0.96);
	border-bottom: 1px solid var(--och-line);
}

.och-progress-step {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: var(--och-muted);
	text-align: center;
}

.och-progress-step:not(:last-child)::after {
	position: absolute;
	top: 21px;
	left: calc(50% + 27px);
	width: calc(100% - 54px);
	height: 1px;
	content: "";
	background: #dbe3dd;
}

.och-progress-step span {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: var(--och-ink);
	font-size: 18px;
	background: #fff;
	border: 1px solid #d7e0d9;
	border-radius: 50%;
}

.och-progress-step small {
	font-size: 13px;
	line-height: 1.25;
}

.och-progress-step.is-active span {
	color: #fff;
	background: linear-gradient(135deg, var(--och-green-dark), var(--och-green));
	border-color: var(--och-green);
	box-shadow: 0 8px 18px rgba(63, 143, 22, 0.21);
}

.och-progress-step.is-active small {
	color: var(--och-green-dark);
	font-weight: 800;
}

.och-progress-step.is-complete span {
	color: var(--och-green-dark);
	background: #f0f8ec;
	border-color: #a8d596;
}

.och-booking-form {
	position: relative;
}

.och-booking-step {
	width: min(100%, 850px);
	margin: 0 auto;
	padding: clamp(38px, 6vw, 66px) clamp(24px, 6vw, 62px) clamp(42px, 6vw, 68px);
	animation: ochStepIn 0.26s ease both;
}

.och-booking-step[hidden],
.och-booking-progress[hidden],
.och-booking-app [hidden] {
	display: none !important;
}

@keyframes ochStepIn {
	from { opacity: 0; transform: translateX(13px); }
	to { opacity: 1; transform: translateX(0); }
}

.och-booking-step h1 {
	margin: 0 !important;
	color: var(--och-ink) !important;
	font-family: Georgia, "Times New Roman", serif !important;
	font-size: clamp(38px, 6vw, 58px) !important;
	font-weight: 500 !important;
	line-height: 1.08 !important;
	letter-spacing: -0.025em;
}

/*
 * JavaScript moves programmatic focus to each step heading for screen readers.
 * Some themes draw a large green rectangle around any focused element. Keep
 * the accessible focus change while removing that decoration from static h1s.
 */
.och-booking-step h1[tabindex="-1"]:focus {
	outline: none !important;
	box-shadow: none !important;
	border-color: transparent !important;
}

.och-booking-step h2 {
	margin: 30px 0 14px !important;
	color: var(--och-ink) !important;
	font-family: Georgia, "Times New Roman", serif !important;
	font-size: clamp(24px, 3vw, 30px) !important;
	font-weight: 500 !important;
	line-height: 1.2 !important;
}

.och-booking-eyebrow {
	margin: 0 0 8px !important;
	color: var(--och-green-dark);
	font-size: 13px;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.och-step-intro {
	max-width: 710px;
	margin: 14px 0 32px !important;
	color: var(--och-muted);
	font-size: 17px;
	line-height: 1.65;
}

.och-service-grid,
.och-package-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.och-service-grid .och-choice-card:last-child {
	grid-column: 1 / -1;
}

.och-choice-card {
	position: relative;
	display: block;
	cursor: pointer;
}

.och-choice-card > input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.och-choice-card__content {
	display: grid;
	grid-template-columns: 50px 1fr 25px;
	gap: 15px;
	align-items: start;
	min-height: 152px;
	padding: 22px;
	background: #fff;
	border: 1px solid #dce4de;
	border-radius: 19px;
	box-shadow: 0 8px 24px rgba(34, 65, 46, 0.045);
	transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.och-package-grid .och-choice-card__content {
	min-height: 128px;
}

.och-choice-card:hover .och-choice-card__content {
	transform: translateY(-2px);
	border-color: rgba(95, 199, 15, .65);
}

.och-choice-card input:focus-visible + .och-choice-card__content {
	outline: 3px solid rgba(95, 199, 15, .25);
	outline-offset: 3px;
}

.och-choice-card input:checked + .och-choice-card__content {
	background: linear-gradient(145deg, rgba(95, 199, 15, .10), #fff 75%);
	border-color: var(--och-green-dark);
	box-shadow: 0 12px 30px rgba(63, 143, 22, .12);
}

.och-choice-card__icon {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 50px !important;
	height: 50px !important;
	color: var(--och-green-dark);
	font-size: 27px !important;
	background: rgba(95, 199, 15, .11);
	border-radius: 15px;
}

.och-choice-card__copy {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.och-choice-card__copy strong {
	color: var(--och-ink);
	font-size: 18px;
	line-height: 1.25;
}

.och-choice-card__copy small {
	color: var(--och-muted);
	font-size: 13px;
	line-height: 1.48;
}

.och-choice-card__copy b {
	color: var(--och-green-dark);
	font-size: 13px;
}

.och-choice-card__check {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 25px !important;
	height: 25px !important;
	color: #fff;
	font-size: 18px !important;
	background: #d9e2dc;
	border-radius: 50%;
}

.och-choice-card input:checked + .och-choice-card__content .och-choice-card__check {
	background: var(--och-green-dark);
}

.och-field-grid,
.och-counter-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.och-field {
	display: block;
	margin: 0 0 20px;
}

.och-field > span:first-child {
	display: block;
	margin-bottom: 8px;
	color: var(--och-ink);
	font-size: 15px;
	font-weight: 780;
}

.och-field small {
	color: var(--och-muted);
	font-weight: 500;
}

.och-field input,
.och-field select,
.och-field textarea {
	width: 100% !important;
	min-height: 58px;
	margin: 0 !important;
	padding: 14px 16px !important;
	color: var(--och-ink) !important;
	font: inherit !important;
	font-size: 16px !important;
	background: #fff !important;
	border: 1px solid #d5ded7 !important;
	border-radius: 14px !important;
	box-shadow: 0 4px 15px rgba(38, 66, 48, .035) !important;
	outline: none !important;
	transition: border-color .2s ease, box-shadow .2s ease !important;
}

.och-field textarea {
	min-height: 126px;
	resize: vertical;
}

.och-field input:focus,
.och-field select:focus,
.och-field textarea:focus {
	border-color: var(--och-green-dark) !important;
	box-shadow: 0 0 0 4px rgba(95, 199, 15, .13) !important;
}

.och-field [aria-invalid="true"] {
	border-color: #b52f3e !important;
	box-shadow: 0 0 0 3px rgba(181, 47, 62, .1) !important;
}

.och-addons {
	margin: 22px 0 24px;
	padding: 0;
	border: 0;
}

.och-addons legend,
.och-time-options legend {
	margin-bottom: 13px;
	color: var(--och-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 27px;
	font-weight: 500;
}

.och-addon-row {
	display: grid;
	grid-template-columns: 38px 1fr auto 54px;
	gap: 12px;
	align-items: center;
	min-height: 76px;
	margin-bottom: 9px;
	padding: 13px 17px;
	cursor: pointer;
	background: #fff;
	border: 1px solid #dfe6e1;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(37, 67, 48, .035);
}

.och-addon-row:has(input:checked) {
	background: rgba(95, 199, 15, .055);
	border-color: rgba(63, 143, 22, .48);
}

.och-addon-row__icon {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 38px !important;
	height: 38px !important;
	color: var(--och-green-dark);
	font-size: 24px !important;
}

.och-addon-row__copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.och-addon-row__copy strong { font-size: 16px; }
.och-addon-row__copy small { color: var(--och-muted); font-size: 13px; line-height: 1.4; }
.och-addon-row__time { color: var(--och-muted); font-size: 14px; white-space: nowrap; }

.och-switch {
	position: relative;
	display: block;
	width: 54px;
	height: 31px;
}

.och-switch input { position: absolute; opacity: 0; }
.och-switch > span { position: absolute; inset: 0; background: #ccd7cf; border-radius: 999px; transition: background .2s ease; }
.och-switch > span::after { position: absolute; top: 3px; left: 3px; width: 25px; height: 25px; content: ""; background: #fff; border-radius: 50%; box-shadow: 0 2px 7px rgba(0,0,0,.18); transition: transform .2s ease; }
.och-switch input:checked + span { background: var(--och-green-dark); }
.och-switch input:checked + span::after { transform: translateX(23px); }
.och-switch input:focus-visible + span { outline: 3px solid rgba(95, 199, 15, .28); outline-offset: 3px; }

.och-live-estimate {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px 28px;
	margin-top: 24px;
	padding: 18px 20px;
	color: var(--och-muted);
	background: var(--och-soft);
	border: 1px solid #dce7dc;
	border-radius: 15px;
}

.och-live-estimate strong { margin-left: 5px; color: var(--och-ink); }

.och-airbnb-size,
.och-management-panel {
	margin-top: 30px;
	padding-top: 2px;
}

.och-counter > span:first-child {
	display: block;
	margin-bottom: 8px;
	font-weight: 780;
}

.och-counter > span:last-child {
	display: grid;
	grid-template-columns: 58px 1fr 58px;
	height: 64px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #d5ded7;
	border-radius: 15px;
}

.och-counter button,
.och-counter input {
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
	color: var(--och-green-dark) !important;
	font: inherit !important;
	font-size: 24px !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	text-align: center;
}

.och-counter input { color: var(--och-ink) !important; font-size: 20px !important; appearance: textfield; }
.och-counter input::-webkit-inner-spin-button { appearance: none; }
.och-counter button { cursor: pointer; }
.och-counter button:hover { background: var(--och-soft) !important; }

.och-airbnb-guide {
	display: grid;
	gap: 5px;
	margin-top: 18px;
	padding: 17px 19px;
	color: var(--och-muted);
	font-size: 14px;
	line-height: 1.45;
	background: var(--och-soft);
	border: 1px solid #dfe8df;
	border-radius: 15px;
}

.och-airbnb-guide strong { color: var(--och-ink); }

.och-information-box {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 18px 0;
	padding: 17px 19px;
	color: #48584f;
	background: #f6f9f5;
	border: 1px solid #dce5de;
	border-radius: 15px;
}

.och-information-box--highlight {
	background: linear-gradient(100deg, rgba(95, 199, 15, .08), rgba(245, 249, 243, .9));
	border-color: #d8e8d3;
}

.och-information-box .dashicons,
.och-team-note .dashicons,
.och-stripe-security .dashicons,
.och-legal-explainer .dashicons {
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	color: var(--och-green-dark);
	font-size: 24px;
}

.och-information-box p { margin: 0 !important; font-size: 14px; line-height: 1.55; }

.och-time-options {
	margin: 26px 0 0;
	padding: 0;
	border: 0;
}

.och-time-options > div {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 11px;
}

.och-time-options label { position: relative; cursor: pointer; }
.och-time-options input { position: absolute; opacity: 0; }
.och-time-options span { display: flex; align-items: center; justify-content: center; min-height: 50px; padding: 11px; background: #fff; border: 1px solid #d8e0da; border-radius: 13px; font-weight: 700; transition: .2s ease; }
.och-time-options input:checked + span { color: #fff; background: linear-gradient(135deg, var(--och-green-dark), var(--och-green)); border-color: var(--och-green); }
.och-time-options input:focus-visible + span { outline: 3px solid rgba(95, 199, 15, .26); outline-offset: 3px; }
.och-time-options label.is-unavailable { cursor: not-allowed; }
.och-time-options label.is-unavailable span { color: #98a29d; background: #f2f4f2; border-color: #e1e5e2; text-decoration: line-through; }

.och-team-note,
.och-stripe-security {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 20px 0 0 !important;
	color: var(--och-muted);
	font-size: 13px;
	line-height: 1.55;
}

.och-review {
	overflow: hidden;
	margin-top: 22px;
	border: 1px solid var(--och-line);
	border-radius: 18px;
}

.och-review__section {
	padding: 20px 22px;
	background: #fff;
	border-bottom: 1px solid var(--och-line);
}

.och-review__section:last-child { border-bottom: 0; }
.och-review__section h2 { margin: 0 0 12px !important; color: var(--och-green-dark) !important; font-family: inherit !important; font-size: 13px !important; font-weight: 850 !important; letter-spacing: .09em; text-transform: uppercase; }
.och-review__row { display: grid; grid-template-columns: minmax(150px, .7fr) 1.3fr; gap: 18px; margin: 8px 0; font-size: 15px; line-height: 1.45; }
.och-review__row span { color: var(--och-muted); }
.och-review__row strong { text-align: right; overflow-wrap: anywhere; }
.och-review__row span small { display: block; margin-top: 3px; color: var(--och-muted); font-size: 12px; }
.och-review__row--editable select { width: 100%; max-width: 260px; justify-self: end; min-height: 44px; padding: 8px 38px 8px 12px; border: 1px solid var(--och-line); border-radius: 10px; background: var(--och-white); color: var(--och-ink); font: inherit; }
.och-counter > span:first-child small { display: block; margin-top: 3px; color: var(--och-muted); font-size: 12px; font-weight: 500; }

.och-policy-summary {
	margin-top: 20px;
	padding: 20px 22px;
	background: var(--och-soft);
	border: 1px solid #dce7dc;
	border-radius: 17px;
}

.och-policy-summary h2 { margin: 0 0 5px !important; font-family: inherit !important; font-size: 16px !important; font-weight: 800 !important; }
.och-policy-summary h2:not(:first-child) { margin-top: 17px !important; }
.och-policy-summary p { margin: 0 !important; color: var(--och-muted); font-size: 14px; line-height: 1.55; }

.och-consent {
	display: grid;
	grid-template-columns: 23px 1fr;
	gap: 11px;
	align-items: start;
	margin-top: 20px;
	color: #46564d;
	font-size: 13px;
	line-height: 1.58;
}

.och-consent input {
	width: 20px;
	height: 20px;
	margin: 2px 0 0;
	accent-color: var(--och-green-dark);
}

.och-consent a { color: var(--och-green-dark) !important; font-weight: 750; }

.och-legal-explainer {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin: 13px 0 0 34px;
	padding: 13px 15px;
	color: var(--och-muted);
	font-size: 12px;
	line-height: 1.5;
	background: #f3f7f1;
	border-radius: 12px;
}

.och-card-box {
	margin: 24px 0;
	padding: 22px;
	background: #fff;
	border: 1px solid var(--och-line);
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(34, 65, 46, .055);
}

.och-card-box h2 { margin-top: 0 !important; }
#och-payment-element { min-height: 80px; }
.och-stripe-loading { display: flex; align-items: center; gap: 10px; min-height: 72px; color: var(--och-muted); }

.och-step-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 34px;
}

.och-step-actions--end { justify-content: flex-end; }

.och-button,
.och-button:link,
.och-button:visited {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 170px;
	min-height: 56px;
	margin: 0 !important;
	padding: 14px 25px !important;
	cursor: pointer;
	font: inherit !important;
	font-size: 16px !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
	border: 1px solid transparent !important;
	border-radius: 999px !important;
	text-decoration: none !important;
	transition: transform .2s ease, filter .2s ease, box-shadow .2s ease !important;
}

.och-button--primary,
.och-button--primary:link,
.och-button--primary:visited {
	color: #fff !important;
	background: linear-gradient(135deg, var(--och-green-dark), var(--och-green)) !important;
	box-shadow: 0 12px 26px rgba(63, 143, 22, .22) !important;
}

.och-button--primary:hover,
.och-button--primary:focus-visible { color: #fff !important; filter: brightness(.95); transform: translateY(-2px); }

.och-button--secondary,
.och-button--secondary:link,
.och-button--secondary:visited { color: var(--och-ink) !important; background: #fff !important; border-color: #cfdad2 !important; }
.och-button--secondary:hover,
.och-button--secondary:focus-visible { color: var(--och-green-dark) !important; border-color: var(--och-green-dark) !important; }
.och-button:disabled { cursor: wait; opacity: .65; transform: none !important; }
.och-time-options input:disabled + span { pointer-events: none; }

.och-booking-error,
.och-admin-preview-note {
	margin: 24px clamp(24px, 6vw, 62px) 0;
	padding: 14px 16px;
	font-size: 14px;
	font-weight: 700;
	border-radius: 13px;
}

.och-booking-error { color: #8d2332; background: #fff2f3; border: 1px solid #efbdc3; }
.och-admin-preview-note { color: #6b5011; background: #fff9e7; border: 1px solid #eadba7; }
.och-request-note { margin: 16px 0 0 !important; color: var(--och-muted); font-size: 12px; text-align: center; }

.och-confirmation { max-width: 720px; padding-top: 62px; padding-bottom: 72px; text-align: center; }
.och-confirmation__icon { display: inline-flex; align-items: center; justify-content: center; width: 94px; height: 94px; margin-bottom: 24px; color: var(--och-green-dark); background: #fff; border: 3px solid var(--och-green-dark); border-radius: 50%; }
.och-confirmation__icon .dashicons { width: 48px; height: 48px; font-size: 48px; }
.och-confirmation > p { color: var(--och-muted); font-size: 17px; line-height: 1.6; }
.och-status-pill { display: inline-flex; align-items: center; justify-content: center; margin: 15px auto 2px; padding: 9px 17px; color: var(--och-green-dark); font-size: 14px; font-weight: 750; background: #f0f8ed; border: 1px solid #bddfae; border-radius: 999px; }
.och-reference { max-width: 420px; margin: 24px auto; padding: 18px 22px; background: var(--och-soft); border: 1px solid #dce7dc; border-radius: 15px; }
.och-reference span,.och-reference strong { display: block; }
.och-reference span { color: var(--och-muted); font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.och-reference strong { margin-top: 5px; color: var(--och-ink); font-family: Georgia,"Times New Roman",serif; font-size: 25px; letter-spacing: .04em; }
.och-next-list { margin: 28px 0; padding: 22px; text-align: left; background: #fff; border: 1px solid var(--och-line); border-radius: 18px; }
.och-next-list h2 { margin-top: 0 !important; }
.och-next-list ol { margin: 0; padding: 0; list-style: none; counter-reset: och-next; }
.och-next-list li { position: relative; min-height: 45px; padding: 10px 0 10px 48px; counter-increment: och-next; border-bottom: 1px solid #e5ebe6; }
.och-next-list li:last-child { border-bottom: 0; }
.och-next-list li::before { position: absolute; top: 7px; left: 0; display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; content: counter(och-next); color: var(--och-green-dark); font-weight: 800; background: #f0f8ed; border-radius: 50%; }

.och-spinner {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 2px solid rgba(95, 199, 15, .35);
	border-top-color: var(--och-green-dark);
	border-radius: 50%;
	animation: ochSpin .75s linear infinite;
}

.och-button--primary .och-spinner { border-color: rgba(255,255,255,.42); border-top-color: #fff; }
@keyframes ochSpin { to { transform: rotate(360deg); } }

.och-honeypot { position: absolute !important; top: -9999px !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

@media (max-width: 760px) {
	.och-booking-app { padding: 14px 9px 30px; }
	.och-booking-shell { border-radius: 22px; }
	.och-booking-brandbar { min-height: 88px; padding: 16px 19px; }
	.och-booking-logo img { max-width: 220px; height: 55px; }
	.och-booking-help span { display: none; }
	.och-booking-help { font-size: 13px !important; }
	.och-booking-progress { padding: 20px 10px 17px; }
	.och-progress-step span { width: 34px; height: 34px; font-size: 14px; }
	.och-progress-step:not(:last-child)::after { top: 17px; left: calc(50% + 20px); width: calc(100% - 40px); }
	.och-progress-step small { max-width: 58px; font-size: 10px; }
	.och-booking-step { padding: 34px 20px 44px; }
	.och-service-grid,
	.och-package-grid,
	.och-field-grid,
	.och-counter-grid { grid-template-columns: 1fr; }
	.och-service-grid .och-choice-card:last-child { grid-column: auto; }
	.och-choice-card__content { min-height: auto; }
	.och-time-options > div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.och-review__row { grid-template-columns: 1fr; gap: 2px; }
	.och-review__row strong { text-align: left; }
	.och-review__row--editable select { max-width: none; justify-self: stretch; }
	.och-step-actions { align-items: stretch; flex-direction: column-reverse; }
	.och-step-actions--end { flex-direction: column; }
	.och-button { width: 100%; }
	.och-addon-row { grid-template-columns: 34px 1fr 50px; }
	.och-addon-row__time { display: none; }
	.och-legal-explainer { margin-left: 0; }
}

@media (max-width: 440px) {
	.och-booking-logo img { max-width: 175px; height: 48px; }
	.och-booking-help { font-size: 11px !important; }
	.och-progress-step small { display: none; }
	.och-booking-progress { padding-bottom: 18px; }
	.och-booking-step h1 { font-size: 37px !important; }
}

@media (prefers-reduced-motion: reduce) {
	.och-booking-step,
	.och-spinner { animation: none; }
	.och-button,
	.och-choice-card__content { transition: none !important; }
}
