.hb-suite {
	max-width: 960px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.5;
}

.hb-suite .hb-input {
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	min-width: 200px;
}

.hb-suite .hb-input--small {
	min-width: auto;
	font-size: 13px;
}

.hb-btn {
	display: inline-block;
	padding: 10px 18px;
	background: #1e3a5f;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 15px;
}

.hb-btn:hover {
	background: #152a45;
	color: #fff;
}

.hb-btn--small {
	padding: 6px 10px;
	font-size: 13px;
}

.hb-muted {
	color: #666;
	font-size: 14px;
}

.hb-error {
	color: #b00020;
}

.hb-notice {
	padding: 10px 14px;
	border-radius: 4px;
	background: #e8f4ea;
	border: 1px solid #b7d7bd;
}

.hb-table {
	width: 100%;
	border-collapse: collapse;
	margin: 1em 0;
}

.hb-table th,
.hb-table td {
	border: 1px solid #ddd;
	padding: 8px 10px;
	text-align: left;
}

.hb-bookings-table__pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}

.hb-bookings-table__pagination .page-numbers {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid #cfd8dc;
	background: #fff;
	color: #1e3a5f;
	font-weight: 600;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	transition: all 0.2s ease;
}

.hb-bookings-table__pagination .page-numbers:hover {
	border-color: #1e3a5f;
	background: #f4f8ff;
}

.hb-bookings-table__pagination .page-numbers.current {
	border-color: #1e3a5f;
	background: #1e3a5f;
	color: #fff;
}

.hb-hotel-list__items {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 20px;
}

.hb-hotel-list__item {
	margin: 0;
}

.hb-hotel-list__card {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 0;
	background: #f2f2f2;
	aspect-ratio: 1 / 1;
	text-decoration: none;
}

.hb-hotel-list__media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.35s ease;
}

.hb-hotel-list__media--empty {
	background: linear-gradient(135deg, #f3eb63, #f7d659);
}

.hb-hotel-list__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 12px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
}

.hb-hotel-list__title {
	display: block;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
}

.hb-hotel-list__meta {
	display: block;
	color: #fff;
	font-size: 13px;
	margin-top: 3px;
	opacity: 0.92;
}

.hb-hotel-list__card:hover .hb-hotel-list__media {
	transform: scale(1.06);
}

.hb-search-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.hb-search-list__item {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
	align-items: flex-start;
}

.hb-search-list__item img {
	max-width: 100px;
	height: auto;
	border-radius: 4px;
}

.hb-room-card {
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 16px 20px;
	margin-bottom: 20px;
	background: #fafafa;
}

/* Hotel details (Rooms tab): no gray panel or outer border; thick rule under each room */
.hb-single-hotel .hb-room-card {
	background: transparent;
	border: none;
	box-shadow: none;
	border-radius: 0;
	padding-bottom: 28px;
	margin-bottom: 36px;
	border-bottom: 3px solid #c8c8c8;
}

.hb-single-hotel .hb-room-card > h3 {
	text-align: center;
	margin-bottom: 14px;
}

.hb-single-hotel .hb-room-card__check {
	margin-bottom: 0;
	padding-bottom: 18px;
	border-bottom: 1px solid #e0e0e0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hb-single-hotel .hb-room-card__dates {
	justify-content: center;
}

.hb-single-hotel .hb-room-card__price {
	margin: 18px 0 20px;
	padding-bottom: 50px;
	padding-top: 35px;
	width: 100%;
	text-align: center;
	font-size: 27px;
	font-weight: 600;
	color: #1a1a1a;
	border-bottom: 1px solid #e0e0e0;
}

.hb-single-hotel .hb-room-card__check .hb-availability-msg {
	text-align: center;
	width: 100%;
}

/* Room meta + booking block (below check availability) */
.hb-single-hotel .hb-room-card > p {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.hb-single-hotel .hb-room-card .hb-book-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	max-width: 100%;
	gap: 4px;
	margin-top: 8px;
}

.hb-single-hotel .hb-room-card .hb-book-form p {
	margin: 0;
	width: 100%;
	text-align: center;
}

.hb-single-hotel .hb-room-card .hb-book-form label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
}

.hb-room-filter {
	display: grid;
	grid-template-columns: repeat(6, minmax(120px, 1fr));
	gap: 10px;
	align-items: center;
	margin: 0 0 18px;
}

.hb-room-filter .hb-btn {
	height: 38px;
	padding: 6px 10px;
}

.hb-room-filter .hb-btn--small {
	height: 38px;
	padding: 1px 10px;
	font-size: 15px;
	text-align: center;
	line-height: normal;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Match home page "Our Room" / .hb-home__section width and side padding */
.hb-single-hotel {
	max-width: 1400px;
	margin: 42px auto;
	padding: 0 32px;
	box-sizing: border-box;
}

.hb-single-hotel__card {
	background: #fff;
	border: none;
	border-radius: 6px;
	padding: 14px 16px;
	margin-bottom: 16px;
}

.hb-single-hotel__heading-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.hb-single-hotel .entry-title {
	margin: 0 0 8px;
	font-size: 48px;
	line-height: 1.15;
	font-family: Georgia, "Times New Roman", serif;
}

.hb-single-hotel__meta-badge {
	background: #fbecec;
	color: #b03030;
	font-weight: 700;
	font-size: 13px;
	padding: 8px 10px;
	border-radius: 4px;
	white-space: nowrap;
}

.hb-single-hotel__address {
	margin: 0 0 6px;
	font-size: 18px;
}

.hb-single-hotel__image img {
	display: block;
	width: 100%;
	height: 650px;
	object-fit: cover;
	border-radius: 3px;
}

.hb-single-hotel__gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
}

.hb-single-hotel__gallery img {
	display: block;
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 6px;
}

.hb-single-hotel .hb-room-card__image-wrap {
	width: 100%;
	max-width: 820px;
	margin: 0 auto 18px;
	overflow: hidden;
	border-radius: 8px;
}

.hb-single-hotel .hb-room-card__image {
	display: block;
	width: 100%;
	height: 280px;
	object-fit: cover;
}

.hb-single-hotel__description {
	font-size: 17px;
	line-height: 1.7;
}

.hb-single-hotel__tabbed {
	margin-top: 8px;
}

/* Underline-style tabs: full-width rule + teal bar on active (not pill/box) */
.hb-single-hotel__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0 40px;
	align-items: flex-end;
	margin: 0;
	padding: 0;
	list-style: none;
	border-bottom: 1px solid #e0e0e0;
}

.hb-hotel-tab-link {
	display: inline-block;
	padding: 14px 0 11px;
	margin: 0 0 -1px;
	border: none;
	border-radius: 0;
	background: transparent;
	color: #6b6b6b;
	text-decoration: none;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.35;
	border-bottom: 3px solid transparent;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.hb-hotel-tab-link:hover {
	color: #444;
}

.hb-hotel-tab-link:focus-visible {
	outline: 2px solid #2a9d9f;
	outline-offset: 3px;
}

.hb-hotel-tab-link.is-active {
	color: #1a1a1a;
	font-weight: 700;
	border-bottom-color: #2a9d9f;
	background: transparent;
}

.hb-hotel-tab-link.is-active:hover {
	color: #1a1a1a;
	border-bottom-color: #2a9d9f;
}

.hb-hotel-tab-panel {
	margin: 0;
	padding-top: 22px;
}

/* Tab panels: plain text block, no extra card frame */
.hb-single-hotel__tabbed .hb-single-hotel__card {
	background: transparent;
	padding: 0;
	margin-bottom: 0;
	border-radius: 0;
	box-shadow: none;
}

.hb-vendor-dashboard__section {
	margin-bottom: 40px;
	padding-bottom: 24px;
	border-bottom: 1px solid #eee;
}

.hb-vendor-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 24px;
	align-items: start;
}

.hb-vendor-sidebar {
	border: 1px solid #e5e5e5;
	background: #fafafa;
	padding: 14px;
	position: sticky;
	top: 90px;
}

.hb-vendor-sidebar h3 {
	margin: 0 0 10px;
	font-size: 20px;
}

.hb-vendor-sidebar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hb-vendor-sidebar li {
	margin: 6px 0;
}

.hb-vendor-sidebar a {
	display: block;
	padding: 8px 10px;
	border-radius: 4px;
	color: #222;
	text-decoration: none;
}

.hb-vendor-sidebar a:hover {
	background: #eef3f9;
}

.hb-vd-menu-link.is-active {
	background: #1e3a5f;
	color: #fff;
}

.hb-vendor-content {
	min-width: 0;
}

.hb-vendor-dashboard .hb-form p {
	margin: 0 0 12px;
}

.hb-vendor-dashboard .hb-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}

.hb-vendor-dashboard .hb-form label .hb-input,
.hb-vendor-dashboard .hb-form label select,
.hb-vendor-dashboard .hb-form label textarea {
	display: block;
	width: 100%;
	margin-top: 6px;
}

.hb-vendor-dashboard .hb-form .wp-editor-wrap {
	max-width: 100%;
}

.hb-vd-list-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.hb-vd-thumb {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: 4px;
	border: 1px solid #ddd;
	flex: 0 0 48px;
}

.hb-vd-thumb--table {
	width: 56px;
	height: 40px;
	flex-basis: 56px;
}

.hb-form--inline {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.hb-login-form__row {
	margin: 0 0 16px;
}

.hb-login-form__row label {
	display: block;
	font-size: 18px;
	margin-bottom: 8px;
}

.hb-login-form .hb-input {
	width: 100%;
	min-width: 100%;
	height: 52px;
	font-size: 22px;
	padding: 8px 12px;
	border-radius: 8px;
	border: 1px solid #b8c1cd;
	box-sizing: border-box;
}

.hb-login-form__row--password {
	position: relative;
}

.hb-pass-toggle {
	position: absolute;
	right: 10px;
	top: 44px;
	height: 34px;
	width: 34px;
	border: none;
	background: transparent;
	color: #1f6db2;
	cursor: pointer;
	font-size: 22px;
}

.hb-login-form__row--remember label {
	font-size: 34px;
	display: inline-flex;
	gap: 8px;
	align-items: center;
}

.hb-login-form__row--remember input[type='checkbox'] {
	width: 24px;
	height: 24px;
}

/* Fallback styling if wp_login_form markup is rendered. */
.hb-auth-card form[name='loginform'] p {
	margin: 0 0 16px;
}

.hb-auth-card form[name='loginform'] label {
	display: block;
	font-size: 18px;
	margin-bottom: 8px;
}

.hb-auth-card form[name='loginform'] input[type='text'],
.hb-auth-card form[name='loginform'] input[type='password'] {
	width: 100%;
	height: 52px;
	font-size: 22px;
	padding: 8px 12px;
	border-radius: 8px;
	border: 1px solid #b8c1cd;
	box-sizing: border-box;
}

.hb-auth-card form[name='loginform'] input[type='submit'],
.hb-auth-card form[name='loginform'] .button {
	display: inline-block;
	padding: 10px 18px;
	background: #1e3a5f;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 22px;
}

.hb-auth-page {
	max-width: 980px;
	margin: 0 auto 30px;
	padding: 0 0px 30px;
	background: #f5f5f5;
}

.hb-auth-header {
	background: #0f766e;
	color: #fff;
	width: 100%;
}

.hb-auth-header__inner {
	max-width: 960px;
	margin: 0 auto;
	padding: 14px 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hb-auth-header__inner:empty {
	padding-top: 4px;
	padding-bottom: 4px;
}

.hb-auth-brand {
	font-size: 20px;
	font-weight: 700;
}

.hb-auth-actions {
	display: flex;
	gap: 8px;
	align-items: center;
}

.hb-auth-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.65);
	font-size: 12px;
	font-weight: 600;
}

.hb-auth-card {
	background: #fff;
	padding: 20px;
	margin-top: 24px;
	border: 1px solid #e2e2e2;
	border-radius: 6px;
	max-width: 440px;
}

.hb-register.hb-auth-card {
	max-width: 680px;
}

.hb-register-form p {
	margin: 0 0 18px;
}

.hb-register-form label {
	display: block;
	font-size: 16px;
	line-height: 1.2;
	margin-bottom: 10px;
}

.hb-register-form .hb-input {
	width: 100%;
	min-width: 100%;
	height: 46px;
	font-size: 16px;
	padding: 10px 14px;
	border-radius: 10px;
	border: 1px solid #b8c1cd;
	background: #cfd8e8;
	box-sizing: border-box;
}

.hb-register-form__password {
	position: relative;
}

.hb-register-form__password .hb-pass-toggle {
	position: absolute;
	right: 14px;
	top: 42px;
	height: 28px;
	width: 28px;
	font-size: 18px;
}

.hb-profile-form {
	max-width: 760px;
}

.hb-profile-form__row {
	margin: 0 0 18px;
}

.hb-profile-form__row label {
	display: block;
	font-size: 14px;
	line-height: 1.2;
	margin-bottom: 8px;
}

.hb-profile-form .hb-input {
	width: 100%;
	min-width: 100%;
	height: 48px;
	font-size: 16px;
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid #b8c1cd;
	background: #cfd8e8;
	box-sizing: border-box;
}

.hb-profile-form__row--password {
	position: relative;
}

.hb-profile-form__row--password .hb-pass-toggle {
	position: absolute;
	right: 14px;
	top: 38px;
	height: 28px;
	width: 28px;
	font-size: 18px;
}


/* Header colors left to active theme to avoid duplicated header rows. */

/* Full width without overflow-x:clip — that can force overflow-y:auto and hide content below the hero in some browsers. */
.hb-home {
	background: #fff;
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
	overflow: visible;
	box-sizing: border-box;
}

.hb-home.hb-home--resort {
	background: #f6faf8;
}

/* Mountain shortcode layout: white page canvas (not mint-gray) */
.hb-home.hb-home--resort.hb-home--mountain {
	background: #fff;
}

.hb-home__masthead {
	background: #fff;
	border-bottom: 1px solid #ededed;
}

.hb-home__masthead-top {
	position: relative;
	max-width: 980px;
	margin: 0 auto;
	padding: 22px 24px 18px;
	text-align: center;
	border-bottom: 1px solid #f0f0f0;
}

.hb-home__brand {
	display: inline-block;
	text-decoration: none;
	color: #111;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
}

.hb-home__book-now {
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 110px;
	height: 36px;
	padding: 0 16px;
	background: #101218;
	color: #fff;
	text-decoration: none;
	font-size: 11px;
	letter-spacing: 0.18em;
}

.hb-home__book-now:hover {
	color: #fff;
	background: #1a1d26;
}

.hb-home__masthead-nav {
	max-width: 980px;
	margin: 0 auto;
	padding: 14px 24px 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 26px;
}

.hb-home__masthead-nav a {
	color: #222;
	text-decoration: none;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 26px;
	line-height: 1.15;
	padding-bottom: 6px;
	border-bottom: 1px solid transparent;
}

.hb-home__masthead-nav a:hover {
	color: #000;
	border-bottom-color: #333;
}

.hb-home__masthead-nav a.is-active {
	border-bottom-color: #222;
}

.hb-front-nav {
	background: #ffffff;
	border-bottom: 1px solid #e8e8e8;
}

.hb-front-nav__inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 14px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.hb-front-nav__brand {
	font-size: 42px;
	line-height: 1;
	font-weight: 400;
	color: #1a1a1a;
	text-decoration: none;
}

.hb-front-nav__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 22px;
}

.hb-front-nav__menu li {
	margin: 0;
}

.hb-front-nav__menu a {
	color: #222;
	text-decoration: none;
	font-size: 21px;
}

body.home .site-content,
body.home .content-area,
body.home .entry-content,
body.home article.page {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

body.home .entry-content > .hb-home:first-child {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

body.home header#masthead,
body.home .site-header,
body.home .ast-above-header-wrap,
body.home .ast-below-header-wrap,
body.home .main-header-bar-wrap {
	display: none !important;
}

body.home .ast-container,
body.home .site-content .ast-container,
body.home #primary,
body.home #primary.content-area,
body.home #content,
body.home #main,
body.home .site-main,
body.home .ast-article-single,
body.home article.page .entry-content {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

body.home .ast-container,
body.home .site-content .ast-container {
	max-width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

body.home .entry-content > :first-child {
	margin-top: 0 !important;
}

body.home #primary,
body.home #primary .entry-content,
body.home #primary .entry-content .hb-home {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

/* Prevent stray horizontal page scroll; keep background white behind shortcode */
body.home {
	overflow-x: hidden;
	background-color: #fff;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

/* Homepage resort hero + search (Mountain Hotel–style, full-viewport banner) */
.hb-home__hero {
	min-height: min(78vh, 820px);
	background: linear-gradient(135deg, #1a241a 0%, #2d3d30 45%, #3d4f42 100%);
	background-size: cover;
	background-position: center center;
	position: relative;
	/* Do not clip: search bar must stay fully visible above the fold */
	overflow: visible;
}

/* Full-bleed banner: one viewport tall so the photo fills the screen like the reference */
.hb-home__hero--has-photo {
	min-height: 100vh;
	min-height: 100svh;
	position: relative;
	z-index: 1;
}

/* Photo layer: keeps gradient fallback on .hb-home__hero when no image */
.hb-home__hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.hb-home--resort .hb-home__hero-overlay {
	position: relative;
	z-index: 1;
	/* Strong forest-green wash like reference (readable white type) */
	background: linear-gradient(
		180deg,
		rgba(12, 38, 28, 0.58) 0%,
		rgba(15, 48, 35, 0.68) 38%,
		rgba(8, 32, 24, 0.88) 100%
	);
	min-height: min(72vh, 720px);
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: space-between;
	flex: 1 1 auto;
}

/* When a photo is set: viewport-tall hero, darker band at top for transparent header, softer mid for headline */
.hb-home--resort .hb-home__hero--has-photo .hb-home__hero-overlay {
	min-height: 100vh;
	min-height: 100svh;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.55) 0%,
		rgba(0, 0, 0, 0.22) 22%,
		rgba(12, 36, 28, 0.35) 48%,
		rgba(8, 28, 22, 0.78) 88%,
		rgba(6, 22, 18, 0.9) 100%
	);
}

.hb-home__hero-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: clamp(48px, 8vw, 88px) 24px clamp(20px, 4vw, 40px);
	color: #fff;
	text-align: center;
}

body.home .hb-home__hero-inner {
	padding-top: clamp(100px, 14vw, 140px);
}

body.home .hb-home__hero-overlay {
	padding-top: 12px;
	box-sizing: border-box;
}

.hb-home__eyebrow {
	font-size: 12px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 600;
	margin: 0 0 14px;
	color: rgba(255, 255, 255, 0.95);
}

.hb-home__hero-title {
	font-size: clamp(32px, 5vw, 54px);
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0.02em;
	color: #fff;
	text-transform: none;
}

.hb-home__subtext {
	margin: 16px auto 0;
	max-width: 640px;
	font-size: clamp(16px, 2.2vw, 19px);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.93);
}

.hb-home__search-wrap {
	position: relative;
	z-index: 3;
	flex-shrink: 0;
	max-width: 960px;
	margin: -32px auto 0;
	padding: 0 24px calc(28px + env(safe-area-inset-bottom, 0));
	width: 100%;
	box-sizing: border-box;
}

.hb-home__hero--has-photo .hb-home__search-wrap {
	padding-bottom: calc(20px + env(safe-area-inset-bottom, 0));
}

/* Down cue: faint ring + chevron at bottom of hero (reference) */
.hb-home__hero-scroll-wrap {
	display: flex;
	justify-content: center;
	padding: 0 16px calc(32px + env(safe-area-inset-bottom, 0));
	flex-shrink: 0;
}

.hb-home__hero-scroll {
	position: relative;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.55);
	color: #fff;
	text-decoration: none;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hb-home__hero-scroll::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-3px);
	margin-top: -4px;
}

.hb-home__hero-scroll:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.85);
	transform: translateY(2px);
}

/* Hero pill bar — compact height + capped width (reference-style) */
.hb-home__booking-form.hb-home__booking-form--pill {
	background: #fff;
	border: 1px solid #e4eae5;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
	border-radius: 40px;
	padding: 8px 12px 8px 16px;
	display: grid;
	grid-template-columns:
		minmax(340px, 2.6fr) minmax(120px, 0.75fr) minmax(160px, 0.95fr);
	gap: 0 10px;
	align-items: center;
	max-width: 1250px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	box-sizing: border-box;
}

@media (min-width: 1025px) {
	.hb-home__booking-form.hb-home__booking-form--pill > .hb-home__field--distance,
	.hb-home__booking-form.hb-home__booking-form--pill > .hb-home__field--guests {
		border-left: 1px solid rgba(26, 36, 26, 0.1);
		padding-left: 16px;
		margin-left: 0;
	}
}

.hb-home__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.hb-home__field label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.02em;
	text-transform: none;
	color: #6f7a77;
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.hb-home__field-icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	background: transparent center / 16px no-repeat;
	opacity: 0.72;
}

.hb-home__field-icon--calendar {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a8783' stroke-width='1.75'%3E%3Crect x='3.5' y='5' width='17' height='15' rx='2'/%3E%3Cpath d='M3.5 10h17M8 3v4M16 3v4'/%3E%3C/svg%3E");
}

.hb-home__field-icon--guest {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a8783' stroke-width='1.75'%3E%3Cpath d='M12 11a3 3 0 100-6 3 3 0 000 6z'/%3E%3Cpath d='M5 21v-1a5 5 0 0110 0v1'/%3E%3C/svg%3E");
}

.hb-home__field-icon--bed {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a8783' stroke-width='1.75'%3E%3Cpath d='M12 3L4 9h3v10h10V9h3L12 3z'/%3E%3C/svg%3E");
}

.hb-home__field-icon--location {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a8783' stroke-width='1.75'%3E%3Cpath d='M12 21s-6-5.33-6-10a6 6 0 1112 0c0 4.67-6 10-6 10z'/%3E%3Ccircle cx='12' cy='11' r='2.2'/%3E%3C/svg%3E");
}

.hb-home__field-icon--distance {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a8783' stroke-width='1.75'%3E%3Cpath d='M4 12h16M7 9l-3 3 3 3M17 9l3 3-3 3'/%3E%3C/svg%3E");
}

.hb-home__field--narrow .hb-input {
	text-align: center;
}

.hb-home__field--submit .hb-home__submit-label {
	display: block;
	min-height: 1em;
}

.hb-home__booking-form.hb-home__booking-form--pill .hb-home__field--submit {
	justify-self: end;
	grid-column: 3 / 4;
}

.hb-home__booking-form .hb-input {
	width: 100%;
	min-width: 0;
	height: 42px;
	font-size: 15px;
	padding: 8px 10px;
	border: 1px solid #dde5df;
	border-radius: 10px;
	background: #fff;
	box-shadow: none;
	color: #1a241a;
	box-sizing: border-box;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.hb-home__booking-form .hb-input:focus {
	outline: none;
	border-color: var(--hb-sage, #84947e);
	box-shadow: 0 0 0 2px rgba(132, 148, 126, 0.28);
	background: #fff;
}

.hb-home__booking-form.hb-home__booking-form--pill .hb-input {
	border: 0;
	background: transparent;
	box-shadow: none;
	height: 32px;
	font-size: 15px;
	padding: 2px 8px;
	line-height: 1.25;
	border-radius: 6px;
}

.hb-home__booking-form.hb-home__booking-form--pill .hb-input:focus {
	border: 0;
	box-shadow: 0 0 0 2px rgba(132, 148, 126, 0.32);
	background: #fff;
}

.hb-home__booking-form.hb-home__booking-form--pill .hb-home__field {
	gap: 2px;
}

.hb-home__booking-form.hb-home__booking-form--pill .hb-home__field label {
	font-size: 13px;
	gap: 6px;
	line-height: 1.2;
}

.hb-home__booking-form.hb-home__booking-form--pill .hb-home__field-icon {
	width: 15px;
	height: 15px;
	background-size: 14px;
}

.hb-home__field--guests {
	position: relative;
}

.hb-home__guest-toggle.hb-input {
	display: flex;
	align-items: center;
	width: 100%;
	text-align: left;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hb-home__guests-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	width: min(320px, calc(100vw - 40px));
	padding: 8px 12px;
	background: #fff;
	border: 1px solid #dbe4de;
	border-radius: 12px;
	box-shadow: 0 14px 32px rgba(20, 27, 24, 0.2);
	z-index: 35;
}

.hb-home__guests-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 8px 0;
}

.hb-home__guests-row + .hb-home__guests-row {
	border-top: 1px solid rgba(26, 36, 26, 0.08);
}

.hb-home__guests-label {
	font-size: 14px;
	color: #2b3530;
}

.hb-home__guests-controls {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.hb-home__guests-btn {
	width: 28px;
	height: 28px;
	border: 1px solid #cfd8d2;
	border-radius: 50%;
	background: #fff;
	color: #2f3a35;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
}

.hb-home__guests-btn:hover {
	border-color: #95a59d;
}

.hb-home__guests-btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.hb-home__guests-value {
	min-width: 20px;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	color: #1f2a25;
}

.hb-home__booking-form.hb-home__booking-form--pill .hb-home__field--submit .hb-home__submit-label {
	display: none;
}

.hb-home__booking-form.hb-home__booking-form--pill .hb-home__search-btn.hb-btn {
	height: 44px;
	font-size: 11px;
	padding: 0 22px;
	letter-spacing: 0.12em;
	box-shadow: 0 3px 12px rgba(132, 148, 126, 0.4);
	min-width: 168px;
	width: auto;
	white-space: nowrap;
}

.hb-home__search-btn.hb-btn {
	background: var(--hb-sage, #84947e);
	color: #fff;
	height: 46px;
	font-size: 11px;
	padding: 0 18px;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-weight: 700;
	width: 100%;
	margin: 0;
	border: 0;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(132, 148, 126, 0.45);
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.2;
}

.hb-home__search-btn.hb-btn:hover {
	background: var(--hb-sage-dark, #6d7c68);
	color: #fff;
}

.hb-home__hero-search-note {
	margin: 12px auto 0;
	max-width: 900px;
	padding: 8px 12px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.9);
	color: #24312b;
	font-size: 13px;
	line-height: 1.4;
	text-align: center;
}

.hb-home__section {
	max-width: 1400px;
	margin: 42px auto;
	padding: 0 32px;
}

.hb-home__section--rooms {
	position: relative;
	z-index: 2;
	margin-top: 0;
	padding-top: 48px;
	padding-bottom: 72px;
	padding-left: 24px;
	padding-right: 24px;
	scroll-margin-top: 88px;
	background-color: #fff;
}

.hb-home__rooms-head--lux {
	display: grid;
	grid-template-columns: minmax(200px, 0.95fr) minmax(260px, 1.45fr) auto;
	align-items: start;
	gap: clamp(20px, 3vw, 36px) clamp(24px, 4vw, 48px);
	margin-bottom: 36px;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.hb-home__rooms-eyebrow {
	margin: 0 0 10px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: #8a9390;
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.hb-home__rooms-title {
	margin: 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(30px, 3.6vw, 44px);
	font-weight: 700;
	line-height: 1.12;
	color: #111;
	letter-spacing: -0.01em;
}

.hb-home__rooms-head__col--copy {
	margin: 0;
	font-size: clamp(14px, 1.25vw, 16px);
	line-height: 1.7;
	color: #6b7370;
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	padding-top: 2px;
	max-width: 52ch;
}

.hb-home__rooms-head__col--cta {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	padding-top: 2px;
}

.hb-home__btn-sage--accommodations {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 28px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	background: var(--hb-sage, #84947e);
	color: #fff;
	border: 0;
	box-shadow: 0 4px 18px rgba(132, 148, 126, 0.32);
	transition: background 0.15s ease, transform 0.15s ease;
}

.hb-home__btn-sage--accommodations:hover {
	background: var(--hb-sage-dark, #6d7c68);
	color: #fff;
	filter: none;
	transform: translateY(-1px);
}

.hb-home__rooms-search-note {
	max-width: 100%;
	margin: -20px auto 20px;
}

.hb-home__rooms-empty-hotels {
	margin: 0 0 16px;
	color: #6b7570;
}

.hb-home__rooms-no-cards {
	flex: 1 1 100%;
	margin: 0;
	padding: 24px 0;
	color: #6b7570;
	font-size: 16px;
}

.hb-home__section-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 32px;
}

.hb-home__section-head h2 {
	font-size: clamp(28px, 3.5vw, 38px);
	margin: 0 0 10px;
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 600;
	color: #1a2f24;
}

.hb-home__section-lead {
	margin: 0;
	font-size: 17px;
	color: #5a6a62;
	line-height: 1.5;
}

.hb-home__section h2 {
	font-size: 34px;
	margin-bottom: 20px;
}

/* Mountain landing (ThimPress-style) */
.hb-home--mountain {
	/* Aligned with MountainHotel / ThimPress demo (not frosted gray bar) */
	--hb-sage: #84947e;
	--hb-sage-dark: #6d7c68;
	--hb-sage-light: #9aab95;
	--hb-charcoal: #1a241a;
	--hb-forest: #1a241a;
}

.hb-home__section-head--row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	text-align: left;
	max-width: 100%;
	margin: 0 0 28px;
	flex-wrap: wrap;
}

.hb-home__section-head--row h2,
.hb-home__section-head--row .hb-home__section-lead {
	text-align: left;
	margin-left: 0;
	margin-right: 0;
}

.hb-home__view-all {
	font-weight: 700;
	font-size: 15px;
	color: var(--hb-sage, #70826b);
	text-decoration: none;
	border-bottom: 2px solid currentColor;
	padding-bottom: 4px;
	white-space: nowrap;
}

.hb-home__view-all:hover {
	opacity: 0.85;
}

/* Intro: full-width banner + centered story (Sailing / Engadin style) */
.hb-home__intro--about-band {
	max-width: none;
	margin: 0;
	padding: 0;
	background: #fff;
	overflow-x: hidden;
}

.hb-home__intro-story {
	max-width: 920px;
	margin: 0 auto;
	padding: clamp(40px, 6vw, 72px) 32px clamp(48px, 7vw, 88px);
	text-align: center;
	background: #fff;
	scroll-margin-top: 100px;
}

.hb-home__intro-kicker {
	margin: 0 0 16px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #8a9390;
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.hb-home__intro-title {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(26px, 3.2vw, 36px);
	font-weight: 600;
	line-height: 1.25;
	color: var(--hb-charcoal, #1a1a1a);
	margin: 0 0 18px;
}

.hb-home__intro-title--center {
	font-size: clamp(28px, 3.6vw, 44px);
	line-height: 1.2;
	margin: 0 0 22px;
	color: #111;
}

.hb-home__intro-lead {
	font-size: clamp(16px, 1.9vw, 18px);
	line-height: 1.75;
	color: #6b7570;
	margin: 0 auto 32px;
	max-width: 720px;
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.hb-home__intro-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px 18px;
}

.hb-home__btn-sage--about {
	min-height: 48px;
	padding: 0 28px;
	font-size: 15px;
}

.hb-home__btn-ghost-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 28px;
	border-radius: 999px;
	border: 1px solid #cfd5d1;
	background: transparent;
	color: #5a6460;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.hb-home__btn-ghost-outline:hover {
	border-color: var(--hb-sage, #7b8e78);
	color: #3d4542;
	background: rgba(123, 142, 120, 0.08);
}

.hb-home__btn-ghost-outline--sage {
	border-color: var(--hb-sage, #7b8e78);
	color: var(--hb-sage, #7b8e78);
}

.hb-home__btn-ghost-outline--sage:hover {
	border-color: #6b7d68;
	color: #4a5748;
	background: rgba(123, 142, 120, 0.1);
}

/* Intro mosaic: 1/3 + 2/3 top row, 2/3 + 1/3 bottom + sage services panel */
.hb-home__intro-mosaic-wrap {
	max-width: 1160px;
	margin: 0 auto;
	padding: clamp(12px, 2.5vw, 28px) 32px clamp(48px, 6vw, 88px);
}

.hb-home__intro-mosaic-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: minmax(220px, 26vw) minmax(240px, 28vw);
	gap: 14px;
}

.hb-home__intro-mosaic__media {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	background-color: #d8ddd5;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
	min-height: 200px;
}

.hb-home__intro-mosaic__media--tl {
	grid-column: 1 / 2;
	grid-row: 1;
}

.hb-home__intro-mosaic__media--tr {
	grid-column: 2 / 4;
	grid-row: 1;
}

.hb-home__intro-mosaic__media--bl {
	grid-column: 1 / 3;
	grid-row: 2;
}

.hb-home__intro-mosaic__services {
	grid-column: 3;
	grid-row: 2;
	margin: 0;
	border-radius: 18px;
	background: var(--hb-sage, #7b8e78);
	color: #fff;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.hb-home__intro-mosaic__services ul {
	list-style: none;
	margin: 0;
	padding: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.hb-home__intro-mosaic__services li {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 16px 18px 16px 22px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
	min-height: 3.25rem;
}

.hb-home__intro-mosaic__services li:last-child {
	border-bottom: 0;
}

.hb-home__intro-mosaic__services a {
	flex: 1;
	color: #fff;
	text-decoration: none;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(15px, 1.35vw, 17px);
	line-height: 1.35;
	font-weight: 500;
	transition: opacity 0.15s ease;
}

.hb-home__intro-mosaic__services a:hover {
	opacity: 0.88;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.hb-home__intro-mosaic__chev {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.5);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.hb-home__intro-mosaic__chev::after {
	content: '';
	display: block;
	width: 7px;
	height: 7px;
	margin-left: -2px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
}

@media (max-width: 768px) {
	.hb-home__intro-mosaic-wrap {
		padding-left: 16px;
		padding-right: 16px;
	}

	.hb-home__intro-mosaic-grid {
		grid-template-columns: 1fr;
		grid-template-rows: none;
		grid-auto-rows: minmax(200px, 46vw);
		gap: 12px;
	}

	.hb-home__intro-mosaic__media--tl,
	.hb-home__intro-mosaic__media--tr,
	.hb-home__intro-mosaic__media--bl,
	.hb-home__intro-mosaic__services {
		grid-column: 1;
		grid-row: auto;
	}

	.hb-home__intro-mosaic__services {
		min-height: auto;
	}

	.hb-home__intro-mosaic__services li {
		flex: 0 0 auto;
	}
}

.hb-home__btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 22px;
	border-radius: 999px;
	border: 2px solid var(--hb-charcoal, #1a1a1a);
	color: var(--hb-charcoal, #1a1a1a);
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease;
}

.hb-home__btn-outline:hover {
	background: var(--hb-charcoal, #1a1a1a);
	color: #fff;
}

.hb-home__btn-sage {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 22px;
	border-radius: 999px;
	background: var(--hb-sage, #7b8e78);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	border: 0;
	transition: filter 0.15s ease, transform 0.15s ease;
}

.hb-home__btn-sage:hover {
	filter: brightness(1.08);
	color: #fff;
}

.hb-home__btn-sage--ghost {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.85);
}

.hb-home__btn-sage--ghost:hover {
	background: rgba(255, 255, 255, 0.12);
}

.hb-home__btn-sage--large {
	min-height: 52px;
	padding: 0 36px;
	font-size: 16px;
}

.hb-home__card-price {
	font-size: 18px !important;
	font-weight: 700 !important;
	color: var(--hb-sage, #7b8e78) !important;
	margin-bottom: 8px !important;
}

.hb-home__card-meta {
	font-size: 14px !important;
	color: #666 !important;
}

/* Activities: copy column ~32%, image ~68%; summer row reverses track so image gets the wide column */
.hb-home__activities {
	padding: clamp(56px, 7vw, 96px) 24px;
	background: #fff;
}

.hb-home__activity {
	display: grid;
	grid-template-columns: minmax(0, 0.32fr) minmax(0, 0.68fr);
	align-items: center;
	gap: clamp(32px, 5vw, 72px);
	max-width: 1280px;
	margin: 0 auto;
	min-height: 0;
}

.hb-home__activity--summer {
	grid-template-columns: minmax(0, 0.68fr) minmax(0, 0.32fr);
}

.hb-home__activity + .hb-home__activity {
	margin-top: clamp(56px, 8vw, 100px);
}

.hb-home__activity-copy {
	padding: 8px 0 8px 4px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 18px;
	background: #fff;
	max-width: 100%;
}

.hb-home__activity-kicker {
	margin: 0;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #9aa6a1;
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.hb-home__activity-title {
	margin: 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(30px, 3.6vw, 42px);
	font-weight: 700;
	line-height: 1.12;
	color: #111;
	letter-spacing: -0.02em;
}

.hb-home__activity-lead {
	margin: 0;
	font-size: clamp(15px, 1.25vw, 17px);
	line-height: 1.65;
	color: #5c6562;
	max-width: 46ch;
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.hb-home__activity-stats {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: clamp(24px, 4vw, 48px);
	margin-top: 4px;
}

.hb-home__activity-stat {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
}

.hb-home__activity-stat__value {
	font-size: clamp(22px, 2.4vw, 28px);
	font-weight: 700;
	color: var(--hb-sage, #84947e);
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	letter-spacing: -0.02em;
	line-height: 1;
}

.hb-home__activity-stat__label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #9aa6a1;
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.hb-home__activity-discover {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 8px;
	min-height: 48px;
	padding: 0 32px;
	border-radius: 999px;
	background: var(--hb-sage, #84947e);
	color: #fff !important;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	border: 0;
	box-shadow: 0 6px 20px rgba(132, 148, 126, 0.35);
	transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.hb-home__activity-discover:hover {
	background: var(--hb-sage-dark, #6d7c68);
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 8px 26px rgba(132, 148, 126, 0.42);
}

.hb-home__activity-media {
	min-height: min(52vw, 440px);
	background-size: cover;
	background-position: center;
	border-radius: 18px;
	box-shadow: 0 12px 40px rgba(26, 36, 26, 0.08);
}

.hb-home__activity-media--winter {
	background-color: #dfe8e0;
	background-image: linear-gradient(135deg, rgba(30, 50, 45, 0.25), rgba(30, 50, 45, 0.45)), linear-gradient(160deg, #7a9e9a, #3d5c58);
}

.hb-home__activity-media--summer {
	background-color: #e2ebe4;
	background-image: linear-gradient(135deg, rgba(60, 90, 70, 0.3), rgba(60, 90, 70, 0.5)), linear-gradient(200deg, #9eb89a, #5a7a62);
}

.hb-home__rooms-carousel {
	position: relative;
	display: flex;
	align-items: center;
	gap: 6px;
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.hb-home__rooms-track {
	flex: 1;
	min-width: 0;
	width: 100%;
	overflow: hidden;
}

/*
 * Rooms strip: flex (not grid) so each tile is exactly half the *scrollport* width.
 * Percent grid-auto-columns was resolving against max-content width → 4 tiles visible.
 */
.hb-home__cards--rooms-pair {
	--hb-rooms-carousel-gap: 24px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: var(--hb-rooms-carousel-gap);
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	padding: 6px 0 20px;
	/* Hide bar; prev/next still scroll the track */
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
}

.hb-home__cards--rooms-pair::-webkit-scrollbar {
	display: none;
	height: 0;
	width: 0;
}

.hb-home__cards--rooms-pair > .hb-home__room-card {
	flex: 0 0 calc((100% - var(--hb-rooms-carousel-gap)) / 2);
	width: calc((100% - var(--hb-rooms-carousel-gap)) / 2);
	max-width: calc((100% - var(--hb-rooms-carousel-gap)) / 2);
	min-width: 0;
	box-sizing: border-box;
}

.hb-home__cards--rooms-pair > .hb-home__rooms-no-cards {
	flex: 0 0 100%;
	width: 100%;
	min-width: 100%;
}

.hb-home__room-card {
	min-width: 0;
	width: 100%;
	max-width: none;
	scroll-snap-align: none;
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	border: 0;
	box-shadow: 0 10px 36px rgba(26, 36, 26, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hb-home__section--rooms .hb-home__room-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 44px rgba(26, 36, 26, 0.1);
}

.hb-home__room-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.hb-home__room-card__media {
	position: relative;
	height: min(48vw, 420px);
	min-height: 280px;
	background: linear-gradient(145deg, #e8ede9, #c5d4c0);
	overflow: hidden;
	border-radius: 18px 18px 0 0;
}

/* Reference cards: clean photo, no color wash on hover */
.hb-home__section--rooms .hb-home__room-card__media::after {
	display: none;
}

.hb-home__room-card__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hb-home__room-card__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 3;
	padding: 7px 12px;
	border-radius: 6px;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	background: var(--hb-sage, #84947e);
	color: #fff;
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* Price row sits in card body (reference: top of white area, not on photo) */
.hb-home__room-card__price-tag {
	position: static;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0 6px;
	margin: 0 0 10px;
	padding: 0;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.2;
}

.hb-home__room-card__price-num {
	font-size: 20px;
	font-weight: 700;
	color: #111;
	letter-spacing: -0.02em;
}

.hb-home__room-card__price-unit {
	font-size: 13px;
	font-weight: 500;
	color: #8a9390;
}

.hb-home__room-card__price-num--solo {
	font-size: 16px;
	font-weight: 600;
}

.hb-home__room-card__price-tag--tiers {
	display: block;
	width: 100%;
	margin-bottom: 12px;
}

.hb-home__hotel-price-tiers {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: stretch;
	justify-content: center;
	row-gap: 12px;
}

.hb-home__hotel-price-tier {
	flex: 0 0 auto;
	min-width: 76px;
	width: 92px;
	max-width: 110px;
	padding: 10px 8px 8px;
	text-align: center;
	background: #f4f5f4;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.hb-home__hotel-price-tier__num {
	display: block;
	font-size: 17px;
	font-weight: 700;
	color: #111;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.hb-home__hotel-price-tier__num--empty {
	font-weight: 600;
	color: #9aa29e;
}

.hb-home__hotel-price-tier__dur {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	font-weight: 500;
	color: #7a827e;
	line-height: 1.2;
}

.hb-home__room-card__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 22px 22px 24px;
	gap: 0;
	min-height: 0;
}

.hb-home__room-card__title {
	margin: 0 0 16px;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(17px, 1.45vw, 21px);
	font-weight: 700;
	line-height: 1.28;
	color: #111;
}

.hb-home__room-card__hotel {
	margin: -8px 0 12px;
	font-size: 13px;
	color: #7b8581;
	font-weight: 500;
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.hb-home__room-card__footer {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px 20px;
	margin-top: auto;
	flex: 1;
	min-height: 0;
}

.hb-home__room-card__facts {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
	min-width: 0;
}

.hb-home__room-card__facts li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: #8a9390;
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.hb-home__room-fact-ic {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	opacity: 0.85;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 18px;
}

.hb-home__room-fact-ic--bed {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a9390' stroke-width='1.5'%3E%3Cpath d='M3 17V11M3 11h18v6M3 11V7h4v4M21 11V9a2 2 0 0 0-2-2h-3v4'/%3E%3C/svg%3E");
}

.hb-home__room-fact-ic--size {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a9390' stroke-width='1.5'%3E%3Cpath d='M4 8h16M4 16h16M8 4v16M16 4v16'/%3E%3C/svg%3E");
}

.hb-home__room-fact-ic--guest {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a9390' stroke-width='1.5'%3E%3Ccircle cx='12' cy='8' r='3'/%3E%3Cpath d='M6 20v-1a4 4 0 0 1 4-4h4a4 4 0 0 1 4 4v1'/%3E%3C/svg%3E");
}

.hb-home__room-fact-ic--distance {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a9390' stroke-width='1.5'%3E%3Cpath d='M12 21s-6-5.33-6-10a6 6 0 1112 0c0 4.67-6 10-6 10z'/%3E%3Ccircle cx='12' cy='11' r='2.2'/%3E%3C/svg%3E");
}

.hb-home__room-fact-ic--area {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a9390' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7l9-4 9 4-9 4-9-4z'/%3E%3Cpath d='M3 12l9 4 9-4'/%3E%3Cpath d='M3 17l9 4 9-4'/%3E%3C/svg%3E");
}

.hb-home__room-card__book {
	flex-shrink: 0;
	align-self: flex-end;
	margin: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 20px;
	border-radius: 999px;
	border: 1px solid #c5ccc9;
	background: transparent;
	color: #6f7a77;
	font-size: 13px;
	font-weight: 600;
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.hb-home__room-card:hover .hb-home__room-card__book {
	border-color: #9aa6a1;
	color: #4a5450;
	background: rgba(245, 248, 246, 0.9);
}

.hb-home__carousel-btn {
	flex: 0 0 44px;
	width: 44px;
	align-self: center;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(26, 36, 26, 0.14);
	background: #fff;
	cursor: pointer;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
	transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.hb-home__carousel-btn:hover {
	border-color: rgba(26, 36, 26, 0.28);
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

.hb-home__carousel-btn--prev {
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E") center / 20px no-repeat;
}

.hb-home__carousel-btn--next {
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E") center / 20px no-repeat;
}

@media (max-width: 1024px) {
	.hb-home__rooms-head--lux {
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}

	.hb-home__rooms-head__col--cta {
		grid-column: 1 / -1;
		justify-content: flex-start;
	}
}

@media (max-width: 900px) {
	.hb-home__cards--rooms-pair {
		--hb-rooms-carousel-gap: 18px;
	}

	.hb-home__cards--rooms-pair > .hb-home__room-card {
		flex-basis: 100%;
		width: 100%;
		max-width: 100%;
	}

	.hb-home__room-card__media {
		height: min(58vw, 360px);
		min-height: 240px;
	}
}

@media (max-width: 640px) {
	.hb-home__carousel-btn {
		display: none;
	}

	.hb-home__rooms-head--lux {
		grid-template-columns: 1fr;
	}

	.hb-home__rooms-head__col--cta {
		grid-column: auto;
	}

	.hb-home__btn-sage--accommodations {
		width: 100%;
		justify-content: center;
	}
}

/* Exclude rooms carousel: it uses flex two-up (see .hb-home__cards--rooms-pair earlier). */
.hb-home__cards:not(.hb-home__cards--rooms-pair) {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.hb-home__cards--blog {
	grid-template-columns: repeat(3, 1fr);
}

.hb-home__cards--service .hb-home__card-image {
	height: 240px;
}

.hb-home__card-image {
	position: relative;
	overflow: hidden;
	height: 220px;
	background: linear-gradient(125deg, #d8e2dc, #95d5b2);
	background-size: cover;
	background-position: center;
}

.hb-home__card-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hb-home__card {
	background: #fff;
	border: 1px solid #e4ebe6;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(27, 67, 50, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hb-home__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(27, 67, 50, 0.14);
}

.hb-home__card a {
	text-decoration: none;
	color: inherit;
}

.hb-home__card-body {
	padding: 18px 18px 20px;
}

.hb-home__card-body h3 {
	margin: 0 0 10px;
	font-size: 20px;
	font-family: Georgia, "Times New Roman", serif;
	color: #1a2f24;
}

.hb-home__card-body p {
	margin: 0 0 10px;
	color: #555;
}

.hb-home__availability {
	color: #1b4332 !important;
	font-weight: 600;
}

.hb-home__card-body span {
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #1b4332;
}

.hb-home__features {
	max-width: 1400px;
	margin: 26px auto 10px;
	padding: 20px 32px 8px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

.hb-home__features div {
	text-align: center;
}

.hb-home__features p {
	margin: 8px 0 0;
	color: #666;
	font-size: 14px;
}

.hb-home__promo-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.hb-home__promo-card {
	display: block;
	height: 220px;
	background: #ddd;
	background-size: cover;
	background-position: center;
	position: relative;
	text-decoration: none;
}

.hb-home__promo-card span {
	position: absolute;
	left: 16px;
	bottom: 16px;
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.hb-home__story {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 20px;
	align-items: center;
}

.hb-home__story-media {
	height: 280px;
	background: #ddd;
	background-size: cover;
	background-position: center;
}

.hb-home__story-text h3 {
	font-size: 34px;
	margin: 0 0 12px;
}

.hb-home__story-text p {
	color: #555;
}

@media (max-width: 1024px) {
	.hb-home__hero-inner,
	.hb-home__search-wrap,
	.hb-home__section,
	.hb-home__features,
	.hb-single-hotel {
		padding-left: 20px;
		padding-right: 20px;
	}
	.hb-home__masthead-top,
	.hb-home__masthead-nav {
		padding-left: 20px;
		padding-right: 20px;
	}
	.hb-home__brand {
		font-size: 30px;
	}
	.hb-home__masthead-nav {
		gap: 16px;
		flex-wrap: wrap;
	}
	.hb-home__masthead-nav a {
		font-size: 20px;
	}
	.hb-home__booking-form.hb-home__booking-form--pill {
		border-radius: 20px;
		padding: 12px 14px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 14px;
		column-gap: 16px;
	}

	.hb-home__field--submit {
		grid-column: 1 / -1;
	}

	.hb-home__guests-menu {
		right: 0;
		left: auto;
	}

	.hb-home__activity {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.hb-home__activity--winter .hb-home__activity-media {
		order: -1;
	}

	.hb-home__activity--summer .hb-home__activity-media {
		order: 0;
	}

	.hb-home__activity-copy {
		max-width: none;
		padding-left: 0;
	}

	.hb-home__cards,
	.hb-home__cards--blog {
		grid-template-columns: repeat(2, 1fr);
	}
	.hb-home__promo-grid,
	.hb-home__story,
	.hb-home__features {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.hb-home__masthead-top {
		padding-top: 16px;
		padding-bottom: 12px;
	}
	.hb-home__brand {
		font-size: 22px;
	}
	.hb-home__book-now {
		position: static;
		transform: none;
		margin-top: 10px;
	}
	.hb-home__masthead-nav {
		gap: 10px 14px;
		padding-top: 10px;
		padding-bottom: 12px;
	}
	.hb-home__masthead-nav a {
		font-size: 14px;
	}
	.hb-front-nav__inner {
		padding: 12px 14px;
	}
	.hb-front-nav__brand {
		font-size: 30px;
	}
	.hb-front-nav__menu {
		gap: 12px;
		flex-wrap: wrap;
		justify-content: flex-end;
	}
	.hb-front-nav__menu a {
		font-size: 16px;
	}
	.hb-home__hero-inner,
	.hb-home__search-wrap,
	.hb-home__section,
	.hb-home__features,
	.hb-single-hotel {
		padding-left: 14px;
		padding-right: 14px;
	}
	.hb-home__hero-title {
		font-size: 28px;
	}
	.hb-home__subtext {
		font-size: 16px;
	}
	.hb-home__booking-form.hb-home__booking-form--pill {
		border-radius: 16px;
		padding: 12px 12px;
		grid-template-columns: 1fr;
		row-gap: 12px;
	}

	.hb-home__guests-menu {
		position: static;
		width: 100%;
		margin-top: 8px;
	}

	.hb-home__section-head--row {
		flex-direction: column;
		align-items: flex-start;
	}

	.hb-home__view-all {
		align-self: flex-start;
	}

	.hb-home__intro-story {
		padding: 36px 16px 48px;
	}

	.hb-home__intro-actions {
		flex-direction: column;
		width: 100%;
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
	}

	.hb-home__intro-actions .hb-home__btn-sage--about,
	.hb-home__intro-actions .hb-home__btn-ghost-outline {
		width: 100%;
		justify-content: center;
	}

	.hb-home__cards,
	.hb-home__cards--blog,
	.hb-home__promo-grid,
	.hb-home__story,
	.hb-home__features {
		grid-template-columns: 1fr;
	}

}


@media (max-width: 1024px) {
	.hb-vendor-layout {
		grid-template-columns: 1fr;
	}
	.hb-vendor-sidebar {
		position: static;
	}
}

/* -------------------------------------------------------------------------
   Hotel single: Flatpickr calendar (rooms tab) — custom skin
   ------------------------------------------------------------------------- */
.hb-room-card__dates {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 18px;
	align-items: flex-end;
}

.hb-date-field-wrap {
	display: inline-flex;
	flex-direction: column;
	gap: 4px;
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

.hb-date-field-wrap .hb-input,
.hb-date-field-wrap .hb-flatpickr-alt {
	min-width: 150px;
	border-radius: 6px;
	border: 1px solid #d0d0d0;
	padding: 8px 38px 8px 12px;
	font-size: 14px;
	font-weight: 400;
	color: #222;
	background-color: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23666' stroke-width='1.5'%3E%3Crect x='2.5' y='4' width='13' height='11' rx='1.5'/%3E%3Cpath d='M2.5 7.5h13M6 2.5v3M12 2.5v3'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 18px 18px;
}

.hb-date-field-wrap .hb-flatpickr-alt:focus {
	outline: none;
	border-color: #2a9d9f;
	box-shadow: 0 0 0 2px rgba(42, 157, 159, 0.2);
}

/* Flatpickr popup (class added in JS) */
.flatpickr-calendar.hb-flatpickr-calendar {
	z-index: 100050;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	border: 1px solid #e3e3e3;
	border-radius: 10px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
	padding: 12px 14px 10px;
	background: #fff;
	width: auto;
}

.flatpickr-calendar.hb-flatpickr-calendar .flatpickr-months {
	padding-bottom: 8px;
}

.flatpickr-calendar.hb-flatpickr-calendar .flatpickr-current-month {
	font-size: 16px;
	font-weight: 600;
	color: #1a1a1a;
	padding: 4px 0;
}

.flatpickr-calendar.hb-flatpickr-calendar .flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-calendar.hb-flatpickr-calendar .numInputWrapper .numInput {
	font-weight: 600;
	color: #1a1a1a;
	border-radius: 4px;
}

.flatpickr-calendar.hb-flatpickr-calendar .flatpickr-prev-month,
.flatpickr-calendar.hb-flatpickr-calendar .flatpickr-next-month {
	top: 10px;
	padding: 4px 8px;
	border-radius: 4px;
	fill: #444;
}

.flatpickr-calendar.hb-flatpickr-calendar .flatpickr-prev-month:hover,
.flatpickr-calendar.hb-flatpickr-calendar .flatpickr-next-month:hover {
	background: #f3f3f3;
}

.flatpickr-calendar.hb-flatpickr-calendar span.flatpickr-weekday {
	font-weight: 700;
	color: #6b6b6b;
	font-size: 12px;
}

.flatpickr-calendar.hb-flatpickr-calendar .dayContainer {
	width: 100%;
	min-width: 252px;
}

.flatpickr-calendar.hb-flatpickr-calendar .flatpickr-day {
	border-radius: 50%;
	max-width: 36px;
	height: 36px;
	line-height: 36px;
	margin: 2px;
	color: #333;
	font-size: 14px;
	border: 1px solid transparent;
}

.flatpickr-calendar.hb-flatpickr-calendar .flatpickr-day.prevMonthDay,
.flatpickr-calendar.hb-flatpickr-calendar .flatpickr-day.nextMonthDay {
	color: #ccc;
}

.flatpickr-calendar.hb-flatpickr-calendar .flatpickr-day.today {
	border-color: #b8d4e8;
	color: #1a1a1a;
	font-weight: 600;
}

.flatpickr-calendar.hb-flatpickr-calendar .flatpickr-day:hover:not(.selected):not(.disabled) {
	background: #f0f7fa;
	border-color: transparent;
}

.flatpickr-calendar.hb-flatpickr-calendar .flatpickr-day.selected,
.flatpickr-calendar.hb-flatpickr-calendar .flatpickr-day.startRange,
.flatpickr-calendar.hb-flatpickr-calendar .flatpickr-day.endRange {
	background: #90d1e3;
	border: 2px solid #c5a370;
	color: #fff;
	font-weight: 600;
	box-shadow: none;
}

.flatpickr-calendar.hb-flatpickr-calendar .flatpickr-day.selected:hover,
.flatpickr-calendar.hb-flatpickr-calendar .flatpickr-day.startRange:hover,
.flatpickr-calendar.hb-flatpickr-calendar .flatpickr-day.endRange:hover {
	background: #7ec8dc;
	color: #fff;
}

.flatpickr-calendar.hb-flatpickr-calendar .flatpickr-day.flatpickr-disabled {
	color: #ddd;
}

.hb-flatpickr-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #eee;
}

.hb-fp-footer-btn {
	background: none;
	border: none;
	padding: 6px 4px;
	font-size: 14px;
	font-weight: 600;
	color: #0d6efd;
	cursor: pointer;
	font-family: inherit;
}

.hb-fp-footer-btn:hover {
	text-decoration: underline;
	color: #0056b3;
}
