/* Hospitality AI Concierge — guest-facing interface */

.hac-concierge {
	--hac-ink: #152326;
	--hac-muted: #637174;
	--hac-brand: #0d625d;
	--hac-brand-strong: #084944;
	--hac-brand-soft: #e5f2ef;
	--hac-accent: #c79258;
	--hac-accent-soft: #f7efe5;
	--hac-surface: #ffffff;
	--hac-surface-alt: #f6f8f7;
	--hac-border: #dfe6e4;
	--hac-danger: #a82d36;
	--hac-danger-soft: #fff0f1;
	--hac-success: #16704a;
	--hac-success-soft: #eaf7f0;
	--hac-warning: #916018;
	--hac-warning-soft: #fff7e5;
	--hac-shadow: 0 24px 70px rgba(16, 38, 38, 0.18), 0 2px 10px rgba(16, 38, 38, 0.08);
	--hac-radius-xl: 28px;
	--hac-radius-lg: 20px;
	--hac-radius-md: 14px;
	--hac-radius-sm: 10px;
	--hac-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	position: relative;
	box-sizing: border-box;
	color: var(--hac-ink);
	font-family: var(--hac-font);
	font-size: 16px;
	line-height: 1.5;
	text-align: left;
	-webkit-font-smoothing: antialiased;
}

.hac-concierge *,
.hac-concierge *::before,
.hac-concierge *::after {
	box-sizing: border-box;
}

.hac-concierge button,
.hac-concierge input,
.hac-concierge select,
.hac-concierge textarea {
	font: inherit;
}

.hac-concierge button,
.hac-concierge a {
	-webkit-tap-highlight-color: transparent;
}

.hac-concierge button:not(:disabled),
.hac-concierge [href] {
	cursor: pointer;
}

.hac-concierge [hidden] {
	display: none !important;
}

.hac-concierge .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.hac-concierge svg {
	width: 1.25em;
	height: 1.25em;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hac-shell {
	position: relative;
	width: min(100%, 980px);
	margin-inline: auto;
	overflow: hidden;
	background: var(--hac-surface);
	border: 1px solid var(--hac-border);
	border-radius: var(--hac-radius-xl);
	box-shadow: var(--hac-shadow);
	isolation: isolate;
}

.hac-skip-link {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 100;
	padding: 8px 12px;
	color: #fff;
	background: var(--hac-brand-strong);
	border-radius: 8px;
	transform: translateY(-150%);
}

.hac-skip-link:focus {
	transform: translateY(0);
}

.hac-property {
	position: relative;
	min-height: 236px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 22px clamp(20px, 4vw, 38px) 28px;
	color: #fff;
	background: linear-gradient(125deg, #153f3c 0%, #0b2524 72%, #101d1c 100%);
	overflow: hidden;
}

.hac-property__media,
.hac-property__shade {
	position: absolute;
	inset: 0;
}

.hac-property__media {
	z-index: -2;
	background-position: center;
	background-size: cover;
	transform: scale(1.015);
	transition: opacity 300ms ease;
}

.hac-property__shade {
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(6, 27, 26, 0.94) 0%, rgba(6, 27, 26, 0.68) 56%, rgba(6, 27, 26, 0.28) 100%),
		linear-gradient(0deg, rgba(6, 27, 26, 0.45), transparent 65%);
}

.hac-property__topbar,
.hac-property__content,
.hac-brand,
.hac-property__actions,
.hac-hero-action,
.hac-property__location,
.hac-property__rating {
	display: flex;
	align-items: center;
}

.hac-property__topbar,
.hac-property__content {
	justify-content: space-between;
	gap: 20px;
}

.hac-brand {
	min-width: 0;
	gap: 12px;
}

.hac-brand__logo {
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.hac-brand__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 5px;
}

.hac-brand__eyebrow,
.hac-brand__name,
.hac-property__copy h2,
.hac-property__copy p,
.hac-chat-intro p,
.hac-section-heading p,
.hac-section-heading h3,
.hac-fine-print,
.hac-outcome h3,
.hac-outcome p,
.hac-room-card p,
.hac-room-card h4,
.hac-empty-state h4,
.hac-empty-state p {
	margin: 0;
}

.hac-brand__eyebrow {
	font-size: 0.7rem;
	font-weight: 750;
	letter-spacing: 0.13em;
	line-height: 1.2;
	text-transform: uppercase;
	opacity: 0.76;
}

.hac-brand__name {
	max-width: 34ch;
	overflow: hidden;
	font-size: 1rem;
	font-weight: 760;
	line-height: 1.3;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hac-property__content {
	align-items: flex-end;
	margin-top: 38px;
}

.hac-property__copy {
	max-width: 640px;
}

.hac-property__rating {
	width: fit-content;
	gap: 5px;
	margin-bottom: 9px;
	font-size: 0.79rem;
	font-weight: 750;
}

.hac-property__rating > span:first-child {
	color: #ffd988;
	font-size: 1rem;
}

.hac-property__rating-label {
	font-weight: 500;
	opacity: 0.76;
}

.hac-property__copy h2 {
	max-width: 20ch;
	font-size: clamp(1.65rem, 4vw, 2.35rem);
	font-weight: 760;
	letter-spacing: -0.04em;
	line-height: 1.08;
}

.hac-property__copy > p:not(.hac-property__location) {
	max-width: 52ch;
	margin-top: 8px;
	font-size: 0.94rem;
	opacity: 0.85;
}

.hac-property__location {
	gap: 5px;
	margin-top: 10px !important;
	font-size: 0.8rem !important;
	opacity: 0.76 !important;
}

.hac-property__location svg {
	width: 16px;
	height: 16px;
}

.hac-property__actions {
	flex: 0 0 auto;
	gap: 8px;
}

.hac-hero-action {
	min-height: 40px;
	gap: 7px;
	padding: 8px 12px;
	color: #fff !important;
	font-size: 0.78rem;
	font-weight: 700;
	text-decoration: none !important;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	backdrop-filter: blur(10px);
	transition: background-color 160ms ease, transform 160ms ease;
}

.hac-hero-action:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-1px);
}

.hac-icon-button {
	display: inline-grid;
	width: 42px;
	height: 42px;
	padding: 0;
	place-items: center;
	color: inherit;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
}

.hac-icon-button:hover {
	background: rgba(255, 255, 255, 0.22);
}

.hac-offline {
	align-items: center;
	gap: 8px;
	padding: 9px 22px;
	color: #5e4218;
	font-size: 0.79rem;
	font-weight: 650;
	background: #fff3d1;
	border-bottom: 1px solid #ead59a;
}

.hac-offline:not([hidden]) {
	display: flex;
}

.hac-offline svg {
	flex: 0 0 auto;
}

.hac-main {
	position: relative;
	min-height: 500px;
	background: var(--hac-surface);
}

.hac-tabs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 5px;
	padding: 7px;
	background: var(--hac-surface-alt);
	border-bottom: 1px solid var(--hac-border);
}

.hac-tab {
	position: relative;
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 16px;
	color: var(--hac-muted);
	font-size: 0.9rem;
	font-weight: 700;
	background: transparent;
	border: 0;
	border-radius: 11px;
	transition: color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.hac-tab.is-active {
	color: var(--hac-brand-strong);
	background: var(--hac-surface);
	box-shadow: 0 2px 10px rgba(18, 42, 41, 0.07);
}

.hac-tab.is-active::after {
	position: absolute;
	right: 28%;
	bottom: -8px;
	left: 28%;
	height: 2px;
	content: "";
	background: var(--hac-accent);
	border-radius: 5px;
}

.hac-panel {
	min-height: 440px;
	padding: clamp(20px, 4vw, 36px);
}

.hac-chat-panel {
	display: flex;
	flex-direction: column;
}

.hac-chat-intro {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 2px 2px 18px;
}

.hac-ai-avatar {
	display: grid;
	width: 46px;
	height: 46px;
	flex: 0 0 46px;
	place-items: center;
	color: #fff;
	background: linear-gradient(145deg, var(--hac-brand), var(--hac-brand-strong));
	border-radius: 15px;
	box-shadow: 0 8px 20px rgba(13, 98, 93, 0.22);
}

.hac-ai-avatar svg {
	width: 25px;
	height: 25px;
}

.hac-chat-intro__title {
	font-size: 1rem;
	font-weight: 760;
}

.hac-chat-intro p:last-child {
	margin-top: 2px;
	color: var(--hac-muted);
	font-size: 0.82rem;
}

.hac-quick-prompts {
	display: flex;
	gap: 8px;
	padding: 0 2px 16px;
	overflow-x: auto;
	scrollbar-width: thin;
	overscroll-behavior-inline: contain;
}

.hac-quick-prompts button {
	min-height: 38px;
	flex: 0 0 auto;
	padding: 7px 13px;
	color: var(--hac-brand-strong);
	font-size: 0.8rem;
	font-weight: 680;
	background: var(--hac-brand-soft);
	border: 1px solid #cce2de;
	border-radius: 999px;
	transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.hac-quick-prompts button:hover {
	background: #d8ebe7;
	border-color: #abcfc8;
	transform: translateY(-1px);
}

.hac-messages {
	display: flex;
	min-height: 165px;
	max-height: 360px;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 12px;
	padding: 16px;
	overflow-y: auto;
	background: var(--hac-surface-alt);
	border: 1px solid var(--hac-border);
	border-radius: var(--hac-radius-lg);
	overscroll-behavior: contain;
	scroll-behavior: smooth;
}

.hac-message {
	display: flex;
	max-width: min(86%, 620px);
	align-items: flex-end;
	gap: 7px;
}

.hac-message--user {
	align-self: flex-end;
	justify-content: flex-end;
}

.hac-message--assistant {
	align-self: flex-start;
}

.hac-message__avatar {
	display: grid;
	width: 27px;
	height: 27px;
	flex: 0 0 27px;
	place-items: center;
	color: var(--hac-brand);
	background: var(--hac-brand-soft);
	border-radius: 9px;
}

.hac-message__avatar svg {
	width: 15px;
	height: 15px;
}

.hac-message__bubble {
	padding: 10px 13px;
	color: var(--hac-ink);
	font-size: 0.88rem;
	line-height: 1.55;
	white-space: pre-wrap;
	background: #fff;
	border: 1px solid var(--hac-border);
	border-radius: 15px 15px 15px 4px;
	box-shadow: 0 2px 5px rgba(18, 42, 41, 0.035);
	word-break: break-word;
}

.hac-message--user .hac-message__bubble {
	color: #fff;
	background: var(--hac-brand);
	border-color: var(--hac-brand);
	border-radius: 15px 15px 4px 15px;
}

.hac-message--error .hac-message__bubble {
	color: var(--hac-danger);
	background: var(--hac-danger-soft);
	border-color: #f0c8cc;
}

.hac-message__meta {
	display: block;
	margin-top: 5px;
	font-size: 0.67rem;
	opacity: 0.67;
}

.hac-message__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 8px;
}

.hac-message__actions button {
	min-height: 40px;
	padding: 6px 9px;
	color: var(--hac-brand-strong);
	font-size: 0.74rem;
	font-weight: 700;
	background: var(--hac-brand-soft);
	border: 1px solid #cce2de;
	border-radius: 8px;
}

.hac-message__media {
	display: flex;
	max-width: 100%;
	gap: 8px;
	padding-top: 10px;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	scrollbar-width: thin;
}

.hac-media-card {
	width: min(220px, 76vw);
	flex: 0 0 min(220px, 76vw);
	padding: 0;
	overflow: hidden;
	color: var(--hac-ink);
	text-align: left;
	background: #fff;
	border: 1px solid var(--hac-border);
	border-radius: 11px;
	scroll-snap-align: start;
}

.hac-media-card img {
	display: block;
	width: 100%;
	height: 130px;
	object-fit: cover;
}

.hac-media-card span {
	display: block;
	padding: 7px 9px;
	font-size: 0.72rem;
	font-weight: 650;
	line-height: 1.35;
}

.hac-typing {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	min-width: 50px;
	height: 20px;
}

.hac-typing i {
	width: 6px;
	height: 6px;
	background: #80908d;
	border-radius: 50%;
	animation: hac-typing 1.15s infinite ease-in-out;
}

.hac-typing i:nth-child(2) {
	animation-delay: 150ms;
}

.hac-typing i:nth-child(3) {
	animation-delay: 300ms;
}

@keyframes hac-typing {
	0%, 60%, 100% { opacity: 0.4; transform: translateY(0); }
	30% { opacity: 1; transform: translateY(-3px); }
}

.hac-chat-status {
	min-height: 18px;
	padding: 3px 4px 0;
	color: var(--hac-muted);
	font-size: 0.72rem;
}

.hac-composer {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	margin-top: 7px;
	padding: 7px 7px 7px 15px;
	background: #fff;
	border: 1px solid #cfd9d6;
	border-radius: 17px;
	box-shadow: 0 5px 18px rgba(18, 42, 41, 0.06);
	transition: border-color 150ms ease, box-shadow 150ms ease;
}

.hac-composer:focus-within {
	border-color: var(--hac-brand);
	box-shadow: 0 0 0 3px rgba(13, 98, 93, 0.12);
}

.hac-composer textarea {
	width: 100%;
	min-height: 36px;
	max-height: 120px;
	padding: 7px 0 5px;
	resize: none;
	color: var(--hac-ink);
	line-height: 1.4;
	background: transparent;
	border: 0;
	outline: 0;
}

.hac-composer textarea::placeholder {
	color: #83908e;
}

.hac-send {
	display: grid;
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	padding: 0;
	place-items: center;
	color: #fff;
	background: var(--hac-brand);
	border: 0;
	border-radius: 13px;
	transition: background-color 150ms ease, transform 150ms ease;
}

.hac-send:hover {
	background: var(--hac-brand-strong);
	transform: translateY(-1px);
}

.hac-send:disabled {
	cursor: wait;
	opacity: 0.55;
}

.hac-fine-print {
	padding-top: 7px;
	color: var(--hac-muted);
	font-size: 0.68rem;
	text-align: center;
}

.hac-progress {
	margin: -5px 0 30px;
}

.hac-progress ol {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 0;
	margin: 0;
	list-style: none;
}

.hac-progress ol::before {
	position: absolute;
	top: 15px;
	right: 12.5%;
	left: 12.5%;
	height: 2px;
	content: "";
	background: var(--hac-border);
}

.hac-progress li {
	position: relative;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 5px;
	color: #657471;
}

.hac-progress li span {
	position: relative;
	z-index: 1;
	display: grid;
	width: 31px;
	height: 31px;
	place-items: center;
	font-size: 0.72rem;
	font-weight: 780;
	background: #fff;
	border: 2px solid var(--hac-border);
	border-radius: 50%;
}

.hac-progress li strong {
	font-size: 0.7rem;
	font-weight: 700;
}

.hac-progress li.is-current,
.hac-progress li.is-complete {
	color: var(--hac-brand);
}

.hac-progress li.is-current span {
	color: #fff;
	background: var(--hac-brand);
	border-color: var(--hac-brand);
	box-shadow: 0 0 0 4px var(--hac-brand-soft);
}

.hac-progress li.is-complete span {
	color: #fff;
	background: var(--hac-brand);
	border-color: var(--hac-brand);
}

.hac-booking-stage {
	animation: hac-stage-in 220ms ease both;
}

@keyframes hac-stage-in {
	from { opacity: 0; transform: translateY(7px); }
	to { opacity: 1; transform: translateY(0); }
}

.hac-section-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 22px;
}

.hac-section-heading--back {
	justify-content: flex-start;
}

.hac-kicker {
	color: #815226;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.3;
	text-transform: uppercase;
}

.hac-section-heading h3 {
	margin-top: 3px;
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	font-weight: 760;
	letter-spacing: -0.025em;
	line-height: 1.2;
}

.hac-secure-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 6px 9px;
	color: var(--hac-success);
	font-size: 0.7rem;
	font-weight: 750;
	background: var(--hac-success-soft);
	border-radius: 999px;
}

.hac-secure-badge svg {
	width: 14px;
	height: 14px;
}

.hac-back {
	display: grid;
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	padding: 0;
	place-items: center;
	color: var(--hac-brand-strong);
	background: var(--hac-brand-soft);
	border: 0;
	border-radius: 12px;
}

.hac-stay-summary {
	margin-top: 4px !important;
	color: var(--hac-muted);
	font-size: 0.8rem;
}

.hac-availability-form,
.hac-guest-form {
	padding: clamp(16px, 3vw, 24px);
	background: var(--hac-surface-alt);
	border: 1px solid var(--hac-border);
	border-radius: var(--hac-radius-lg);
}

.hac-uncertain-notice {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 15px;
	margin-bottom: 16px;
	color: #704228;
	background: #fff4e8;
	border: 1px solid #efcba8;
	border-radius: 14px;
}

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

.hac-uncertain-notice > svg {
	width: 21px;
	height: 21px;
	flex: 0 0 21px;
	margin-top: 1px;
}

.hac-uncertain-notice strong {
	display: block;
	font-size: 0.86rem;
}

.hac-uncertain-notice p {
	margin: 4px 0 11px;
	font-size: 0.76rem;
	line-height: 1.5;
}

.hac-uncertain-notice .hac-button {
	min-height: 40px;
	padding: 8px 12px;
	font-size: 0.76rem;
}

.hac-date-fields,
.hac-guest-fields,
.hac-form-grid {
	display: grid;
	gap: 13px;
}

.hac-date-fields {
	grid-template-columns: repeat(2, 1fr);
}

.hac-guest-fields {
	grid-template-columns: repeat(3, 1fr);
	margin-top: 13px;
}

.hac-form-grid {
	grid-template-columns: repeat(2, 1fr);
}

.hac-field {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 6px;
	color: var(--hac-ink);
	font-size: 0.78rem;
	font-weight: 700;
}

.hac-field > span small,
.hac-field > small {
	color: var(--hac-muted);
	font-size: 0.68rem;
	font-weight: 500;
}

.hac-field input,
.hac-field select,
.hac-field textarea {
	width: 100%;
	min-height: 47px;
	padding: 11px 12px;
	color: var(--hac-ink);
	font-size: 0.9rem;
	font-weight: 500;
	background: #fff;
	border: 1px solid #ced8d5;
	border-radius: var(--hac-radius-sm);
	outline: 0;
	transition: border-color 150ms ease, box-shadow 150ms ease;
}

.hac-field textarea {
	min-height: 88px;
	resize: vertical;
}

.hac-field input:focus,
.hac-field select:focus,
.hac-field textarea:focus {
	border-color: var(--hac-brand);
	box-shadow: 0 0 0 3px rgba(13, 98, 93, 0.11);
}

.hac-field input:invalid:not(:placeholder-shown),
.hac-field textarea:invalid:not(:placeholder-shown) {
	border-color: #d7868c;
}

.hac-input-wrap {
	position: relative;
	display: block;
}

.hac-input-wrap svg {
	position: absolute;
	top: 50%;
	left: 12px;
	z-index: 1;
	width: 17px;
	height: 17px;
	color: var(--hac-brand);
	pointer-events: none;
	transform: translateY(-50%);
}

.hac-input-wrap input {
	padding-left: 39px;
}

.hac-promo-field {
	max-width: 310px;
	margin-top: 13px;
}

.hac-child-ages {
	padding: 12px;
	margin-top: 13px;
	background: #fff;
	border: 1px solid var(--hac-border);
	border-radius: 11px;
}

.hac-child-ages > p {
	margin: 0 0 9px;
	font-size: 0.76rem;
	font-weight: 720;
}

.hac-child-ages__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(105px, 1fr));
	gap: 9px;
}

.hac-child-ages .hac-field select {
	min-height: 43px;
}

.hac-field--full {
	grid-column: 1 / -1;
}

.hac-form-error {
	padding: 10px 12px;
	margin-top: 14px;
	color: var(--hac-danger);
	font-size: 0.8rem;
	font-weight: 620;
	background: var(--hac-danger-soft);
	border: 1px solid #f0c8cc;
	border-radius: 10px;
}

.hac-button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 11px 18px;
	font-size: 0.88rem;
	font-weight: 750;
	text-decoration: none;
	border: 1px solid transparent;
	border-radius: 12px;
	transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.hac-button svg {
	width: 18px;
	height: 18px;
}

.hac-button--wide {
	width: 100%;
	margin-top: 16px;
}

.hac-button--primary {
	color: #fff;
	background: var(--hac-brand);
	border-color: var(--hac-brand);
	box-shadow: 0 8px 22px rgba(13, 98, 93, 0.18);
}

.hac-button--primary:hover {
	background: var(--hac-brand-strong);
	border-color: var(--hac-brand-strong);
	transform: translateY(-1px);
}

.hac-button--secondary {
	color: var(--hac-brand-strong);
	background: var(--hac-brand-soft);
	border-color: #cce2de;
}

.hac-button--ghost {
	color: var(--hac-brand-strong);
	background: #fff;
	border-color: var(--hac-border);
}

.hac-button:disabled {
	cursor: wait;
	opacity: 0.62;
	transform: none;
}

.hac-button.is-loading > span,
.hac-send.is-loading svg {
	opacity: 0.55;
}

.hac-button.is-loading::before,
.hac-send.is-loading::before {
	width: 17px;
	height: 17px;
	content: "";
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: hac-spin 700ms linear infinite;
}

.hac-send.is-loading svg {
	display: none;
}

@keyframes hac-spin {
	to { transform: rotate(360deg); }
}

.hac-assurance-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 22px;
	padding-top: 16px;
	color: var(--hac-muted);
	font-size: 0.72rem;
}

.hac-assurance-row span {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.hac-assurance-row span > span {
	display: inline;
}

.hac-assurance-row svg {
	width: 14px;
	height: 14px;
	color: var(--hac-success);
}

.hac-status-lookup {
	margin-top: 18px;
	background: #fff;
	border: 1px solid var(--hac-border);
	border-radius: var(--hac-radius-md);
}

.hac-status-lookup summary {
	padding: 14px 16px;
	color: var(--hac-brand-strong);
	font-size: 0.82rem;
	font-weight: 760;
	cursor: pointer;
}

.hac-status-lookup form {
	padding: 2px 16px 16px;
}

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

.hac-status-lookup [data-hac-status-reference] {
	text-transform: uppercase;
}

.hac-status-lookup__privacy {
	margin: 9px 0 12px;
	color: var(--hac-muted);
	font-size: 0.7rem;
}

.hac-results-status {
	min-height: 20px;
	margin-bottom: 10px;
	color: var(--hac-muted);
	font-size: 0.8rem;
}

.hac-room-results {
	display: grid;
	gap: 16px;
}

.hac-room-card {
	display: grid;
	grid-template-columns: minmax(190px, 29%) 1fr;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--hac-border);
	border-radius: var(--hac-radius-lg);
	box-shadow: 0 8px 26px rgba(18, 42, 41, 0.06);
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hac-room-card:hover {
	border-color: #bfd3cf;
	box-shadow: 0 12px 32px rgba(18, 42, 41, 0.1);
	transform: translateY(-2px);
}

.hac-room-card__image {
	position: relative;
	min-height: 230px;
	background: linear-gradient(145deg, #dbe9e6, #b9d0cc);
}

.hac-room-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hac-room-card__image-placeholder {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: rgba(13, 73, 68, 0.6);
}

.hac-room-card__image-placeholder svg {
	width: 44px;
	height: 44px;
}

.hac-room-card__inventory {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 5px 8px;
	color: #fff;
	font-size: 0.67rem;
	font-weight: 750;
	background: rgba(8, 45, 42, 0.82);
	border-radius: 999px;
	backdrop-filter: blur(8px);
}

.hac-room-card__body {
	display: flex;
	min-width: 0;
	flex-direction: column;
	padding: 18px;
}

.hac-room-card__title-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
}

.hac-room-card h4 {
	font-size: 1.12rem;
	font-weight: 760;
	letter-spacing: -0.018em;
}

.hac-room-card__occupancy {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 4px;
	color: var(--hac-muted);
	font-size: 0.7rem;
	white-space: nowrap;
}

.hac-room-card__occupancy svg {
	width: 15px;
	height: 15px;
}

.hac-room-card__description {
	display: -webkit-box;
	margin-top: 6px !important;
	overflow: hidden;
	color: var(--hac-muted);
	font-size: 0.78rem;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.hac-room-card__amenities {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: 0;
	margin: 12px 0;
	list-style: none;
}

.hac-room-card__amenities li {
	padding: 4px 7px;
	color: #4f6460;
	font-size: 0.67rem;
	font-weight: 620;
	background: var(--hac-surface-alt);
	border-radius: 6px;
}

.hac-room-card__condition {
	display: flex;
	align-items: flex-start;
	gap: 5px;
	margin-top: 3px !important;
	color: var(--hac-success);
	font-size: 0.71rem;
	font-weight: 650;
}

.hac-room-card__condition svg {
	width: 14px;
	height: 14px;
	flex: 0 0 14px;
	margin-top: 1px;
}

.hac-room-card__footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	padding-top: 14px;
	margin-top: auto;
	border-top: 1px solid var(--hac-border);
}

.hac-room-card__price small,
.hac-room-card__price span {
	display: block;
}

.hac-room-card__price strong {
	font-size: 1.25rem;
	font-weight: 790;
	letter-spacing: -0.025em;
}

.hac-room-card__price small,
.hac-room-card__price span {
	color: var(--hac-muted);
	font-size: 0.67rem;
}

.hac-room-card .hac-button {
	min-height: 42px;
	padding: 8px 14px;
}

.hac-room-skeleton {
	display: grid;
	grid-template-columns: 29% 1fr;
	min-height: 230px;
	overflow: hidden;
	border: 1px solid var(--hac-border);
	border-radius: var(--hac-radius-lg);
}

.hac-room-skeleton__image,
.hac-room-skeleton i {
	background: linear-gradient(100deg, #eef2f1 20%, #f8faf9 38%, #eef2f1 58%);
	background-size: 200% 100%;
	animation: hac-shimmer 1.3s infinite linear;
}

.hac-room-skeleton__body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 20px;
}

.hac-room-skeleton i {
	display: block;
	height: 13px;
	border-radius: 5px;
}

.hac-room-skeleton i:first-child { width: 45%; height: 20px; }
.hac-room-skeleton i:nth-child(2) { width: 85%; }
.hac-room-skeleton i:nth-child(3) { width: 68%; }
.hac-room-skeleton i:last-child { width: 34%; height: 36px; margin-top: auto; align-self: flex-end; }

@keyframes hac-shimmer {
	to { background-position-x: -200%; }
}

.hac-empty-state,
.hac-outcome {
	padding: clamp(28px, 7vw, 56px) 20px;
	text-align: center;
	background: var(--hac-surface-alt);
	border: 1px solid var(--hac-border);
	border-radius: var(--hac-radius-lg);
}

.hac-state-icon,
.hac-outcome__icon {
	display: grid;
	width: 66px;
	height: 66px;
	margin: 0 auto 16px;
	place-items: center;
	color: var(--hac-brand);
	background: var(--hac-brand-soft);
	border-radius: 22px;
}

.hac-state-icon svg,
.hac-outcome__icon svg {
	width: 31px;
	height: 31px;
}

.hac-empty-state h4,
.hac-outcome h3 {
	font-size: 1.25rem;
	font-weight: 770;
}

.hac-empty-state p,
.hac-outcome p {
	max-width: 52ch;
	margin: 7px auto 0;
	color: var(--hac-muted);
	font-size: 0.84rem;
}

.hac-state-actions,
.hac-outcome__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 9px;
	margin-top: 20px;
}

.hac-selected-room {
	margin-bottom: 16px;
}

.hac-selection-summary {
	display: grid;
	grid-template-columns: 64px 1fr auto;
	align-items: center;
	gap: 12px;
	padding: 11px;
	background: var(--hac-accent-soft);
	border: 1px solid #ead9c5;
	border-radius: 14px;
}

.hac-selection-summary__image {
	width: 64px;
	height: 56px;
	overflow: hidden;
	background: #e7ddd0;
	border-radius: 10px;
}

.hac-selection-summary__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hac-selection-summary strong,
.hac-selection-summary small {
	display: block;
}

.hac-selection-summary strong {
	font-size: 0.86rem;
}

.hac-selection-summary small {
	margin-top: 2px;
	color: var(--hac-muted);
	font-size: 0.7rem;
}

.hac-selection-summary__price {
	font-size: 0.94rem !important;
	white-space: nowrap;
}

.hac-consents {
	padding: 15px;
	margin: 17px 0 0;
	background: #fff;
	border: 1px solid var(--hac-border);
	border-radius: 12px;
}

.hac-consents legend {
	padding: 0 5px;
	font-size: 0.78rem;
	font-weight: 750;
}

.hac-check {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin-top: 10px;
	color: #4e5f5c;
	font-size: 0.74rem;
	line-height: 1.45;
}

.hac-check:first-of-type {
	margin-top: 3px;
}

.hac-check input {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	margin: 1px 0 0;
	accent-color: var(--hac-brand);
}

.hac-check a {
	color: var(--hac-brand-strong);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.hac-review {
	display: grid;
	gap: 13px;
}

.hac-review-card {
	padding: 17px;
	background: #fff;
	border: 1px solid var(--hac-border);
	border-radius: 14px;
}

.hac-review-card__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid var(--hac-border);
}

.hac-review-card__heading h4 {
	margin: 0;
	font-size: 0.84rem;
	font-weight: 780;
}

.hac-review-card__heading button {
	padding: 3px;
	color: var(--hac-brand);
	font-size: 0.7rem;
	font-weight: 750;
	background: transparent;
	border: 0;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.hac-review-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 18px;
}

.hac-review-item span,
.hac-review-item strong {
	display: block;
}

.hac-review-item span {
	color: var(--hac-muted);
	font-size: 0.67rem;
	font-weight: 600;
}

.hac-review-item strong {
	margin-top: 2px;
	font-size: 0.8rem;
	font-weight: 700;
	word-break: break-word;
}

.hac-review-total {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	padding-top: 13px;
	margin-top: 13px;
	border-top: 1px solid var(--hac-border);
}

.hac-review-total span,
.hac-review-total small {
	display: block;
}

.hac-review-total span {
	font-size: 0.78rem;
	font-weight: 700;
}

.hac-review-total small {
	color: var(--hac-muted);
	font-size: 0.66rem;
}

.hac-review-total strong {
	font-size: 1.3rem;
	font-weight: 800;
	white-space: nowrap;
}

.hac-booking-notice {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	padding: 11px 12px;
	margin-top: 14px;
	color: #5f4a27;
	background: var(--hac-warning-soft);
	border: 1px solid #f0dfb6;
	border-radius: 10px;
}

.hac-booking-notice svg {
	width: 17px;
	height: 17px;
	flex: 0 0 17px;
	margin-top: 1px;
}

.hac-booking-notice p {
	margin: 0;
	font-size: 0.72rem;
	line-height: 1.5;
}

.hac-booking-protection {
	display: grid;
	gap: 12px;
	margin: 16px 0;
	padding: 16px;
	border: 1px solid var(--hac-border);
	border-radius: 16px;
	background: var(--hac-surface-alt);
}

.hac-booking-protection[hidden] {
	display: none;
}

.hac-booking-protection strong,
.hac-booking-protection p {
	margin: 0;
}

.hac-booking-protection > div:first-child p,
.hac-protection-status {
	margin-top: 4px;
	color: var(--hac-muted);
	font-size: 0.82rem;
}

.hac-booking-protection [data-hac-turnstile] {
	min-height: 65px;
	overflow: hidden;
}

.hac-protection-retry {
	justify-self: start;
	margin-top: 10px;
}

.hac-outcome--confirmed .hac-outcome__icon {
	color: var(--hac-success);
	background: var(--hac-success-soft);
}

.hac-outcome--pending .hac-outcome__icon {
	color: var(--hac-warning);
	background: var(--hac-warning-soft);
}

.hac-outcome--rejected .hac-outcome__icon {
	color: var(--hac-danger);
	background: var(--hac-danger-soft);
}

.hac-reference {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 13px;
	margin-top: 17px;
	color: var(--hac-brand-strong);
	font-size: 0.78rem;
	font-weight: 700;
	background: #fff;
	border: 1px dashed #aac8c2;
	border-radius: 9px;
}

.hac-reference strong {
	font-size: 0.9rem;
	letter-spacing: 0.04em;
}

.hac-bootstrap-state {
	position: absolute;
	z-index: 30;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 12px;
	padding: 24px;
	color: var(--hac-muted);
	font-size: 0.82rem;
	font-weight: 650;
	text-align: center;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(6px);
}

.hac-is-ready .hac-bootstrap-state {
	display: none;
}

.hac-bootstrap-state .hac-button {
	margin-top: 5px;
}

.hac-spinner {
	width: 30px;
	height: 30px;
	border: 3px solid var(--hac-brand-soft);
	border-top-color: var(--hac-brand);
	border-radius: 50%;
	animation: hac-spin 800ms linear infinite;
}

.hac-launcher {
	position: fixed;
	z-index: 999998;
	right: max(20px, env(safe-area-inset-right));
	bottom: max(20px, env(safe-area-inset-bottom));
	display: inline-flex;
	min-height: 58px;
	align-items: center;
	gap: 9px;
	padding: 9px 18px 9px 11px;
	color: #fff;
	background: linear-gradient(135deg, var(--hac-brand), var(--hac-brand-strong));
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	box-shadow: 0 14px 34px rgba(8, 73, 68, 0.32);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.hac-launcher:hover {
	box-shadow: 0 17px 40px rgba(8, 73, 68, 0.4);
	transform: translateY(-2px);
}

.hac-launcher .hac-icon {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	color: var(--hac-brand-strong);
	background: #fff;
	border-radius: 50%;
}

.hac-launcher__label {
	font-size: 0.84rem;
	font-weight: 750;
}

.hac-launcher__pulse {
	position: absolute;
	top: 3px;
	left: 7px;
	width: 10px;
	height: 10px;
	background: #6fe1aa;
	border: 2px solid #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(111, 225, 170, 0.55);
	animation: hac-pulse 2.2s infinite;
}

@keyframes hac-pulse {
	0% { box-shadow: 0 0 0 0 rgba(111, 225, 170, 0.55); }
	70% { box-shadow: 0 0 0 7px rgba(111, 225, 170, 0); }
	100% { box-shadow: 0 0 0 0 rgba(111, 225, 170, 0); }
}

.hac-overlay {
	position: fixed;
	z-index: 999996;
	inset: 0;
	background: rgba(7, 22, 21, 0.55);
	backdrop-filter: blur(4px);
}

.hac-concierge[data-mode="floating"] .hac-shell {
	position: fixed;
	z-index: 999997;
	right: max(20px, env(safe-area-inset-right));
	bottom: max(92px, calc(env(safe-area-inset-bottom) + 82px));
	width: min(460px, calc(100vw - 40px));
	max-height: min(790px, calc(100dvh - 116px));
	margin: 0;
	display: flex;
	overflow: hidden;
	flex-direction: column;
	border-radius: 24px;
	transform-origin: bottom right;
	animation: hac-dialog-in 220ms ease both;
	overscroll-behavior: contain;
}

.hac-concierge[data-mode="floating"] .hac-property,
.hac-concierge[data-mode="floating"] .hac-offline,
.hac-concierge[data-mode="floating"] .hac-tabs {
	flex: 0 0 auto;
}

.hac-concierge[data-mode="floating"] .hac-main {
	min-height: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.hac-concierge[data-mode="floating"] .hac-property {
	min-height: 195px;
	padding: 18px 20px 22px;
}

.hac-concierge[data-mode="floating"] .hac-property__content {
	margin-top: 26px;
}

.hac-concierge[data-mode="floating"] .hac-property__copy h2 {
	font-size: 1.65rem;
}

.hac-concierge[data-mode="floating"] .hac-property__actions {
	display: none !important;
}

.hac-concierge[data-mode="floating"] .hac-panel {
	min-height: 390px;
	padding: 20px;
}

.hac-concierge[data-mode="floating"] .hac-messages {
	max-height: none;
	flex: 0 0 auto;
	overflow: visible;
}

.hac-concierge[data-mode="floating"] .hac-composer {
	position: sticky;
	z-index: 4;
	bottom: 0;
	box-shadow: 0 -8px 20px rgba(255, 255, 255, 0.92), 0 5px 18px rgba(18, 42, 41, 0.08);
}

.hac-concierge[data-mode="floating"] .hac-room-card,
.hac-concierge[data-mode="floating"] .hac-room-skeleton {
	grid-template-columns: 1fr;
}

.hac-concierge[data-mode="floating"] .hac-room-card__image {
	min-height: 170px;
	max-height: 190px;
}

.hac-concierge[data-mode="floating"] .hac-room-skeleton__image {
	min-height: 150px;
}

@keyframes hac-dialog-in {
	from { opacity: 0; transform: translateY(12px) scale(0.98); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

body.hac-dialog-open {
	overflow: hidden;
}

.hac-lightbox {
	position: fixed;
	z-index: 1000002;
	inset: 0;
	display: grid;
	padding: max(20px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right)) max(20px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
	place-items: center;
}

.hac-lightbox__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	background: rgba(3, 12, 12, 0.88);
	border: 0;
}

.hac-lightbox__figure {
	position: relative;
	z-index: 1;
	width: min(100%, 980px);
	max-height: calc(100dvh - 40px);
	padding: 0;
	margin: 0;
	overflow: auto;
	background: #101a19;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 18px;
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.hac-lightbox__figure img {
	display: block;
	width: 100%;
	max-height: calc(100dvh - 110px);
	object-fit: contain;
	background: #0b1110;
}

.hac-lightbox__figure figcaption {
	padding: 12px 16px;
	color: #eef5f3;
	font-size: 0.84rem;
	text-align: center;
}

.hac-lightbox__close {
	position: absolute;
	z-index: 2;
	top: 10px;
	right: 10px;
	width: 44px;
	height: 44px;
	color: #fff;
	background: rgba(4, 19, 18, 0.72);
	border-color: rgba(255, 255, 255, 0.38);
	backdrop-filter: blur(8px);
}

body.hac-lightbox-open {
	overflow: hidden;
}

.hac-concierge :is(button, a, input, select, textarea):focus-visible {
	outline: 3px solid rgba(35, 139, 132, 0.45);
	outline-offset: 2px;
}

@media (max-width: 720px) {
	.hac-shell {
		border-radius: 20px;
	}

	.hac-property {
		min-height: 218px;
		padding: 18px 18px 22px;
	}

	.hac-property__content {
		align-items: flex-start;
		flex-direction: column;
		margin-top: 28px;
	}

	.hac-property__copy h2 {
		font-size: 1.7rem;
	}

	.hac-property__actions {
		align-self: stretch;
	}

	.hac-hero-action {
		flex: 1 1 auto;
		justify-content: center;
	}

	.hac-panel {
		padding: 19px 16px 24px;
	}

	.hac-date-fields,
	.hac-form-grid {
		grid-template-columns: 1fr;
	}

	.hac-guest-fields {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.hac-promo-field {
		max-width: none;
	}

	.hac-room-card,
	.hac-room-skeleton {
		grid-template-columns: 1fr;
	}

	.hac-room-card__image {
		min-height: 200px;
		max-height: 235px;
	}

	.hac-room-skeleton__image {
		min-height: 170px;
	}

	.hac-assurance-row {
		justify-content: flex-start;
		gap: 9px 14px;
	}
}

@media (max-width: 520px) {
	.hac-concierge[data-mode="floating"] .hac-shell {
		inset: 0;
		width: 100%;
		max-height: 100dvh;
		border: 0;
		border-radius: 0;
		transform-origin: bottom center;
	}

	.hac-concierge[data-mode="floating"] .hac-property {
		min-height: 190px;
		padding-top: max(16px, env(safe-area-inset-top));
	}

	.hac-concierge[data-mode="floating"] .hac-main {
		min-height: calc(100dvh - 190px);
	}

	.hac-concierge[data-mode="floating"] .hac-panel {
		padding-bottom: max(24px, env(safe-area-inset-bottom));
	}

	.hac-launcher {
		right: max(14px, env(safe-area-inset-right));
		bottom: max(14px, env(safe-area-inset-bottom));
	}

	.hac-launcher__label {
		display: none;
	}

	.hac-launcher {
		width: 60px;
		height: 60px;
		padding: 10px;
		justify-content: center;
	}

	.hac-launcher .hac-icon {
		width: 40px;
		height: 40px;
	}

	.hac-brand__name {
		max-width: 220px;
	}

	.hac-progress {
		margin-bottom: 24px;
	}

	.hac-progress li strong {
		font-size: 0.63rem;
	}

	.hac-availability-form,
	.hac-guest-form {
		padding: 14px;
	}

	.hac-guest-fields {
		gap: 8px;
	}

	.hac-status-lookup__fields {
		grid-template-columns: 1fr;
	}

	.hac-field select {
		padding-inline: 8px;
		font-size: 16px;
	}

	.hac-field input,
	.hac-field textarea {
		font-size: 16px;
	}

	.hac-room-card__title-row,
	.hac-room-card__footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.hac-room-card__footer .hac-button {
		width: 100%;
	}

	.hac-selection-summary {
		grid-template-columns: 55px 1fr;
	}

	.hac-selection-summary__image {
		width: 55px;
		height: 52px;
	}

	.hac-selection-summary__price {
		grid-column: 2;
	}

	.hac-review-grid {
		grid-template-columns: 1fr;
	}

	.hac-state-actions {
		flex-direction: column;
	}

	.hac-state-actions .hac-button {
		width: 100%;
	}
}

@media (max-width: 340px) {
	.hac-guest-fields {
		grid-template-columns: 1fr;
	}

	.hac-property__copy h2 {
		font-size: 1.5rem;
	}

	.hac-tab {
		padding-inline: 8px;
		font-size: 0.82rem;
	}

	.hac-room-card__footer {
		align-items: stretch;
	}

	.hac-selection-summary {
		grid-template-columns: 1fr;
	}

	.hac-selection-summary__image {
		display: none;
	}

	.hac-selection-summary__price {
		grid-column: 1;
	}
}

[dir="rtl"] .hac-concierge,
.hac-concierge[dir="rtl"] {
	text-align: right;
}

[dir="rtl"] .hac-input-wrap svg,
.hac-concierge[dir="rtl"] .hac-input-wrap svg {
	right: 12px;
	left: auto;
}

[dir="rtl"] .hac-input-wrap input,
.hac-concierge[dir="rtl"] .hac-input-wrap input {
	padding-right: 39px;
	padding-left: 12px;
}

[dir="rtl"] .hac-message--user,
.hac-concierge[dir="rtl"] .hac-message--user {
	align-self: flex-start;
}

[dir="rtl"] .hac-message--assistant,
.hac-concierge[dir="rtl"] .hac-message--assistant {
	align-self: flex-end;
}

@media (prefers-reduced-motion: reduce) {
	.hac-concierge *,
	.hac-concierge *::before,
	.hac-concierge *::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

@media (forced-colors: active) {
	.hac-concierge :is(button, input, select, textarea, .hac-shell, .hac-room-card) {
		border: 1px solid ButtonText;
	}
}
