:root {
	--oda-os-ink: #13231d;
	--oda-os-forest: #0c2c23;
	--oda-os-forest-deep: #071b16;
	--oda-os-cream: #f4ede1;
	--oda-os-paper: #fffdf8;
	--oda-os-line: #d8d1c5;
	--oda-os-muted: #637069;
	--oda-os-bronze: #8a6842;
	--oda-os-danger: #9b2c2c;
	--oda-os-success: #17643e;
	--oda-os-shadow: 0 24px 70px rgba(7, 27, 22, .13);
}

.oda-booking-app,
.oda-kiosk,
.oda-customer-portal,
.oda-app-card {
	box-sizing: border-box;
	width: min(100%, 920px);
	margin: clamp(24px, 5vw, 72px) auto;
	padding: clamp(20px, 4vw, 48px);
	border: 1px solid var(--oda-os-line);
	border-radius: 22px;
	background: var(--oda-os-paper);
	box-shadow: var(--oda-os-shadow);
	color: var(--oda-os-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.oda-booking-app *,
.oda-kiosk *,
.oda-customer-portal *,
.oda-app-card * { box-sizing: border-box; }

[data-oda-booking] [hidden],
[data-oda-kiosk] [hidden],
[data-oda-portal] [hidden],
[data-oda-app-card] [hidden] { display: none !important; }

.oda-booking-head,
.oda-kiosk > header,
.oda-customer-portal > header { margin-bottom: 28px; }

.oda-kicker {
	margin: 0 0 8px;
	color: var(--oda-os-bronze);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.oda-booking-head h1,
.oda-kiosk h1,
.oda-customer-portal h1,
.oda-app-card h1 {
	margin: 0;
	color: var(--oda-os-forest-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(34px, 7vw, 62px);
	font-weight: 500;
	letter-spacing: -.035em;
	line-height: .98;
}

.oda-booking-head > p:last-child,
.oda-kiosk header > p:last-child,
.oda-customer-portal header > p:last-child,
.oda-app-card p {
	margin: 12px 0 0;
	color: var(--oda-os-muted);
	font-size: 16px;
}

.oda-booking-progress {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px;
	margin: 0 0 34px;
	padding: 0;
	list-style: none;
}

.oda-booking-progress li {
	display: flex;
	align-items: center;
	gap: 7px;
	min-width: 0;
	color: #6d7772;
	font-size: 12px;
	font-weight: 700;
}

.oda-booking-progress span {
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 26px;
	height: 26px;
	border: 1px solid var(--oda-os-line);
	border-radius: 50%;
	background: #fff;
	color: var(--oda-os-ink);
}

.oda-booking-progress li.is-active { color: var(--oda-os-forest-deep); }
.oda-booking-progress li.is-active span,
.oda-booking-progress li.is-complete span {
	border-color: var(--oda-os-forest-deep);
	background: var(--oda-os-forest-deep);
	color: #fff;
}

.oda-booking-step { animation: oda-os-in .22s ease both; }
.oda-booking-step h2 {
	margin: 0 0 18px;
	color: var(--oda-os-forest-deep);
	font-size: clamp(22px, 4vw, 31px);
	letter-spacing: -.025em;
}

.oda-choice-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.oda-choice-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 78px;
	padding: 16px;
	border: 1.5px solid var(--oda-os-line);
	border-radius: 14px;
	background: #fff;
	color: var(--oda-os-ink);
	text-align: left;
	cursor: pointer;
	transition: border-color .16s ease, background .16s ease, transform .16s ease;
}

.oda-choice-card:hover { border-color: var(--oda-os-forest); transform: translateY(-1px); }
.oda-choice-card.is-selected {
	border-color: var(--oda-os-forest-deep);
	background: var(--oda-os-cream);
	box-shadow: inset 0 0 0 1px var(--oda-os-forest-deep);
}
.oda-choice-card strong { display: block; font-size: 16px; line-height: 1.2; }
.oda-choice-card small { display: block; margin-top: 4px; color: var(--oda-os-muted); font-size: 13px; }
.oda-choice-card b { flex: 0 0 auto; color: var(--oda-os-forest-deep); font-size: 14px; }

.oda-staff-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.oda-staff-card { justify-content: flex-start; }
.oda-avatar {
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--staff-color, var(--oda-os-forest));
	color: #fff;
	font-family: Georgia, serif;
	font-size: 22px;
}
.oda-avatar-any { background: var(--oda-os-cream); color: var(--oda-os-forest-deep); }

.oda-field { display: grid; gap: 7px; margin-bottom: 16px; }
.oda-field > span,
.oda-preferences legend { color: var(--oda-os-ink); font-size: 13px; font-weight: 800; }
.oda-field input,
.oda-field select,
.oda-field textarea {
	width: 100%;
	min-height: 50px;
	padding: 11px 13px;
	border: 1.5px solid var(--oda-os-line);
	border-radius: 10px;
	background: #fff;
	color: var(--oda-os-ink);
	font: inherit;
}
.oda-field input:focus,
.oda-field select:focus,
.oda-field textarea:focus {
	border-color: var(--oda-os-forest);
	box-shadow: 0 0 0 3px rgba(12, 44, 35, .13);
	outline: 0;
}

.oda-fields-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.oda-date-row { display: grid; grid-template-columns: minmax(220px, .7fr) 1fr; gap: 20px; align-items: end; }
.oda-selected-mini { min-height: 50px; color: var(--oda-os-muted); }

.oda-slots {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 9px;
	min-height: 74px;
}
.oda-slots button {
	min-height: 48px;
	border: 1.5px solid var(--oda-os-line);
	border-radius: 10px;
	background: #fff;
	color: var(--oda-os-forest-deep);
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}
.oda-slots button:hover,
.oda-slots button.is-selected { border-color: var(--oda-os-forest-deep); background: var(--oda-os-forest-deep); color: #fff; }
.oda-muted,
.oda-empty { grid-column: 1 / -1; margin: 0; padding: 18px; border-radius: 10px; background: var(--oda-os-cream); color: var(--oda-os-ink); }
.oda-loading::after { content: ""; display: inline-block; width: 14px; height: 14px; margin-left: 8px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: oda-spin .75s linear infinite; vertical-align: -2px; }

.oda-preferences { margin: 4px 0 18px; padding: 0; border: 0; }
.oda-preferences legend { margin-bottom: 10px; }
.oda-preferences legend small { color: var(--oda-os-muted); font-weight: 500; }
.oda-preferences label { display: inline-block; margin: 0 7px 8px 0; }
.oda-preferences input { position: absolute; opacity: 0; pointer-events: none; }
.oda-preferences span { display: inline-block; padding: 9px 12px; border: 1px solid var(--oda-os-line); border-radius: 999px; background: #fff; color: var(--oda-os-ink); font-size: 13px; cursor: pointer; }
.oda-preferences input:checked + span { border-color: var(--oda-os-forest-deep); background: var(--oda-os-forest-deep); color: #fff; }
.oda-preferences input:focus-visible + span { outline: 3px solid rgba(12, 44, 35, .22); outline-offset: 2px; }

.oda-check { display: flex; gap: 10px; align-items: flex-start; margin: 12px 0; color: var(--oda-os-ink); font-size: 13px; }
.oda-check input { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--oda-os-forest); }
.oda-check a { color: var(--oda-os-forest); font-weight: 800; }
.oda-check-soft { color: var(--oda-os-muted); }

.oda-step-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }
.oda-primary,
.oda-secondary,
.oda-danger,
.oda-link-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 12px 20px;
	border: 1.5px solid var(--oda-os-forest-deep);
	border-radius: 10px;
	font: inherit;
	font-size: 14px;
	font-weight: 850;
	text-decoration: none;
	cursor: pointer;
}
.oda-primary { background: var(--oda-os-forest-deep); color: #fff; }
.oda-primary:hover { background: #123b30; color: #fff; }
.oda-primary:disabled { opacity: .45; cursor: not-allowed; }
.oda-primary.is-loading::after { content: ""; width: 14px; height: 14px; margin-left: 9px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: oda-spin .7s linear infinite; }
.oda-secondary { background: transparent; color: var(--oda-os-forest-deep); }
.oda-secondary:hover { background: var(--oda-os-cream); color: var(--oda-os-forest-deep); }
.oda-danger { border-color: var(--oda-os-danger); background: #fff5f5; color: var(--oda-os-danger); }

.oda-booking-alert { margin: 0 0 20px; padding: 13px 15px; border: 1px solid #c88; border-radius: 10px; background: #fff2f2; color: #6d1717; font-weight: 700; }
.oda-booking-alert.is-success { border-color: #85b99d; background: #effaf3; color: #104e30; }

.oda-booking-summary dl { margin: 0; border: 1px solid var(--oda-os-line); border-radius: 14px; overflow: hidden; }
.oda-booking-summary dl > div { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 14px 16px; border-bottom: 1px solid var(--oda-os-line); }
.oda-booking-summary dl > div:last-child { border-bottom: 0; }
.oda-booking-summary dt { color: var(--oda-os-muted); font-size: 13px; }
.oda-booking-summary dd { margin: 0; color: var(--oda-os-ink); font-weight: 750; }
.oda-booking-summary .oda-total { background: var(--oda-os-cream); }
.oda-booking-summary .oda-total dd { font-size: 18px; }

.oda-booking-success,
.oda-kiosk-success {
	padding: clamp(22px, 5vw, 50px) 10px;
	text-align: center;
}
.oda-success-mark { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%; background: var(--oda-os-success); color: #fff; font-size: 32px; }
.oda-booking-success h2,
.oda-kiosk-success h2 { margin: 0 0 10px; color: var(--oda-os-forest-deep); font: 500 clamp(34px, 7vw, 56px)/1 Georgia, serif; }
.oda-reference { display: inline-block; margin: 14px 0 22px; padding: 10px 14px; border: 1px dashed var(--oda-os-bronze); border-radius: 8px; background: var(--oda-os-cream); color: var(--oda-os-forest-deep); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 16px; font-weight: 800; letter-spacing: .05em; }

.oda-kiosk { width: min(100%, 720px); }
.oda-kiosk-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 24px; padding: 5px; border-radius: 12px; background: var(--oda-os-cream); }
.oda-kiosk-tabs button { min-height: 48px; border: 0; border-radius: 8px; background: transparent; color: var(--oda-os-ink); font: inherit; font-weight: 800; cursor: pointer; }
.oda-kiosk-tabs button.is-active { background: var(--oda-os-forest-deep); color: #fff; }
.oda-kiosk form .oda-primary { width: 100%; }

.oda-customer-portal { width: min(100%, 660px); }
.oda-customer-portal form .oda-primary { width: 100%; }
.oda-customer-portal [data-portal-result] { margin-top: 22px; padding: 22px; border-radius: 14px; background: var(--oda-os-cream); }

.oda-app-card { display: grid; grid-template-columns: 1fr auto; gap: clamp(24px, 7vw, 80px); align-items: center; }
.oda-app-card .oda-primary,
.oda-app-card .oda-secondary { margin: 22px 8px 0 0; }
.oda-qr-card { padding: 18px; border: 1px solid var(--oda-os-line); border-radius: 14px; background: #fff; text-align: center; }
.oda-qr-card [data-oda-qr] { width: 220px; height: 220px; }
.oda-qr-card img,
.oda-qr-card canvas { display: block; max-width: 100%; height: auto !important; }
.oda-qr-card small { display: block; margin-top: 10px; color: var(--oda-os-muted); font-weight: 700; }

.oda-app-offers { width: min(100%, 920px); margin: -40px auto 72px; padding: 0 clamp(20px, 4vw, 48px); font-family: Inter, ui-sans-serif, system-ui, sans-serif; }
.oda-app-offers > div { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.oda-app-offers article { display: grid; gap: 7px; padding: 18px; border: 1px solid var(--oda-os-line); border-radius: 14px; background: var(--oda-os-cream); color: var(--oda-os-ink); }
.oda-app-offers article span { color: var(--oda-os-forest-deep); font-size: 24px; font-weight: 850; }
.oda-app-offers code { justify-self: start; padding: 5px 8px; border: 1px dashed var(--oda-os-bronze); border-radius: 6px; background: var(--oda-os-paper); color: var(--oda-os-forest-deep); font-weight: 800; }

.oda-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

.oda-booking-app button:focus-visible,
.oda-kiosk button:focus-visible,
.oda-customer-portal button:focus-visible,
.oda-app-card button:focus-visible,
.oda-app-card a:focus-visible { outline: 3px solid rgba(138, 104, 66, .42); outline-offset: 3px; }

@keyframes oda-os-in { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
@keyframes oda-spin { to { transform: rotate(360deg); } }

@media (max-width: 760px) {
	.oda-booking-app,
	.oda-kiosk,
	.oda-customer-portal,
	.oda-app-card { margin: 12px auto 32px; padding: 20px 16px 24px; border-radius: 16px; box-shadow: 0 12px 36px rgba(7, 27, 22, .11); }
	.oda-booking-progress { gap: 4px; }
	.oda-booking-progress li { justify-content: center; font-size: 0; }
	.oda-booking-progress span { font-size: 12px; }
	.oda-choice-grid,
	.oda-staff-grid { grid-template-columns: 1fr; }
	.oda-choice-card { min-height: 70px; }
	.oda-fields-two,
	.oda-date-row { grid-template-columns: 1fr; gap: 0; }
	.oda-slots { grid-template-columns: repeat(4, 1fr); }
	.oda-step-actions { position: sticky; bottom: 8px; z-index: 4; padding: 9px; border: 1px solid rgba(216, 209, 197, .85); border-radius: 12px; background: rgba(255, 253, 248, .94); backdrop-filter: blur(10px); }
	.oda-step-actions .oda-primary { flex: 1; }
	.oda-booking-summary dl > div { grid-template-columns: 90px 1fr; }
	.oda-app-card { grid-template-columns: 1fr; text-align: center; }
	.oda-app-offers { margin-top: -16px; padding: 0 16px; }
	.oda-app-offers > div { grid-template-columns: 1fr; }
	.oda-qr-card { justify-self: center; }
}

@media (max-width: 420px) {
	.oda-slots { grid-template-columns: repeat(3, 1fr); }
	.oda-primary,
	.oda-secondary,
	.oda-danger { padding-inline: 14px; }
}

@media (prefers-reduced-motion: reduce) {
	.oda-booking-step,
	.oda-loading::after,
	.oda-primary.is-loading::after { animation: none; }
	.oda-choice-card { transition: none; }
}
