
/* ============================================
   AIRBNB STYLE 2025-2026 - HBook Search Form
   ============================================ */

/* CSS Variables */
:root {
	--hb-airbnb-primary: #FF385C;
	--hb-airbnb-primary-hover: #E31C5F;
	--hb-airbnb-black: #222222;
	--hb-airbnb-gray-dark: #717171;
	--hb-airbnb-gray: #B0B0B0;
	--hb-airbnb-gray-light: #DDDDDD;
	--hb-airbnb-gray-lighter: #F7F7F7;
	--hb-airbnb-white: #FFFFFF;
	--hb-airbnb-shadow-sm: 0 1px 2px rgba(0,0,0,0.08);
	--hb-airbnb-shadow-md: 0 2px 8px rgba(0,0,0,0.12);
	--hb-airbnb-shadow-lg: 0 4px 16px rgba(0,0,0,0.12);
	--hb-airbnb-shadow-xl: 0 6px 20px rgba(0,0,0,0.2);
	--hb-airbnb-radius-full: 32px;
	--hb-airbnb-radius-lg: 16px;
	--hb-airbnb-radius-md: 12px;
	--hb-airbnb-transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Typography */
.hbook-wrapper {
	font-family: -apple-system, BlinkMacSystemFont, 'Circular', 'Helvetica Neue', sans-serif;
	font-feature-settings: 'ss01', 'ss02', 'cv01', 'cv03';
	letter-spacing: -0.01em;
}

/* ============================================
   AIRBNB SEARCH BAR - Unified Pill
   ============================================ */

.hb-booking-search-form.hb-airbnb-style {
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
	margin-bottom: 24px;
	overflow: visible;
}

.hb-booking-search-form.hb-airbnb-style::before {
	display: none;
}

/* Form Title - Airbnb Style */
.hb-airbnb-style .hb-title-search-form {
	font-size: 26px;
	font-weight: 600;
	color: var(--hb-airbnb-black);
	margin-bottom: 24px;
	letter-spacing: -0.02em;
}

.hb-airbnb-style .hb-title-search-form::before {
	display: none;
}

/* Search Bar Wrapper */
.hb-search-bar-wrapper {
	position: relative;
	max-width: 850px;
	margin: 0 auto;
}

/* Unified Search Bar (Pill) */
.hb-search-bar-unified {
	display: flex;
	align-items: center;
	background: var(--hb-airbnb-white);
	border: 1px solid var(--hb-airbnb-gray-light);
	border-radius: var(--hb-airbnb-radius-full);
	box-shadow: var(--hb-airbnb-shadow-md);
	padding: 0;
	transition: box-shadow var(--hb-airbnb-transition), border-color var(--hb-airbnb-transition);
}

.hb-search-bar-unified:hover {
	box-shadow: var(--hb-airbnb-shadow-lg);
}

.hb-search-bar-unified.hb-bar-active {
	box-shadow: var(--hb-airbnb-shadow-xl);
	border-color: var(--hb-airbnb-gray);
}

/* Segments */
.hb-segment {
	display: flex;
	align-items: stretch;
	flex: 1;
	min-width: 0;
}

.hb-segment-dates {
	flex: 1.5;
}

.hb-segment-inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 14px 24px;
	cursor: pointer;
	transition: background-color var(--hb-airbnb-transition), border-radius var(--hb-airbnb-transition);
	flex: 1;
	min-width: 0;
	border-radius: var(--hb-airbnb-radius-full);
	position: relative;
}

.hb-segment-inner:hover {
	background-color: var(--hb-airbnb-gray-lighter);
}

.hb-segment-inner.hb-segment-active {
	background-color: var(--hb-airbnb-white);
	box-shadow: var(--hb-airbnb-shadow-lg);
	z-index: 1;
}

.hb-segment-checkin {
	border-radius: var(--hb-airbnb-radius-full) 0 0 var(--hb-airbnb-radius-full);
}

.hb-segment-checkout {
	border-radius: 0;
}

.hb-segment-guests-trigger {
	border-radius: 0 var(--hb-airbnb-radius-full) var(--hb-airbnb-radius-full) 0;
	padding-right: 16px;
}

/* Segment Labels & Values */
.hb-segment-label {
	font-size: 12px;
	font-weight: 600;
	color: var(--hb-airbnb-black);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 2px;
	line-height: 1;
}

.hb-segment-value {
	font-size: 14px;
	font-weight: 400;
	color: var(--hb-airbnb-gray-dark);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.3;
}

.hb-segment-value.hb-has-value {
	color: var(--hb-airbnb-black);
	font-weight: 500;
}

/* Separators */
.hb-segment-divider {
	width: 1px;
	height: 32px;
	background-color: var(--hb-airbnb-gray-light);
	flex-shrink: 0;
	align-self: center;
}

.hb-bar-separator {
	width: 1px;
	height: 32px;
	background-color: var(--hb-airbnb-gray-light);
	flex-shrink: 0;
	align-self: center;
	margin: 0 4px;
}

/* Search Button - Airbnb Style */
.hb-search-btn-airbnb {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(to right, var(--hb-airbnb-primary), #E61E4D);
	color: var(--hb-airbnb-white);
	border: none;
	border-radius: var(--hb-airbnb-radius-full);
	padding: 14px 16px;
	margin: 7px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all var(--hb-airbnb-transition);
	white-space: nowrap;
	min-width: 48px;
	flex-shrink: 0;
}

.hb-search-btn-airbnb:hover {
	background: linear-gradient(to right, var(--hb-airbnb-primary-hover), #C4123F);
	transform: scale(1.04);
	box-shadow: 0 4px 12px rgba(255, 56, 92, 0.4);
}

.hb-search-btn-airbnb:active {
	transform: scale(0.98);
}

.hb-search-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.hb-search-btn-text {
	display: none;
}

@media (min-width: 900px) {
	.hb-search-btn-airbnb {
		padding: 14px 24px;
	}
	.hb-search-btn-text {
		display: inline;
	}
}

/* ============================================
   EXPANDABLE PANELS
   ============================================ */

.hb-expand-panel {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	right: 0;
	background: var(--hb-airbnb-white);
	border-radius: var(--hb-airbnb-radius-lg);
	box-shadow: var(--hb-airbnb-shadow-xl);
	border: 1px solid var(--hb-airbnb-gray-light);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1000;
	overflow: hidden;
}

.hb-expand-panel.hb-panel-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.hb-panel-header {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 20px;
	border-bottom: 1px solid #dddddd;
	position: relative;
	background: #ffffff;
}

.hb-panel-close {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	border: 1px solid #dddddd;
	border-radius: 50%;
	background: #ffffff;
	color: #222222;
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 200ms ease;
}

.hb-panel-close:hover {
	background: #f7f7f7;
	border-color: #b0b0b0;
}

.hb-panel-title {
	font-size: 16px;
	font-weight: 600;
	color: #222222;
}

.hb-panel-content {
	padding: 20px 24px;
	background: #ffffff;
}

.hb-panel-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 24px;
	border-top: 1px solid #dddddd;
	margin: 20px -24px -20px;
	background: #f7f7f7;
}

/* Calendar Panel */
.hb-panel-calendar {
	max-width: 100%;
}

.hb-calendar-tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--hb-airbnb-gray-light);
}

.hb-tab-btn {
	flex: 1;
	padding: 12px 20px;
	border: 2px solid var(--hb-airbnb-gray-light);
	border-radius: var(--hb-airbnb-radius-full);
	background: var(--hb-airbnb-white);
	color: var(--hb-airbnb-gray-dark);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all var(--hb-airbnb-transition);
}

.hb-tab-btn:hover {
	border-color: var(--hb-airbnb-black);
	color: var(--hb-airbnb-black);
}

.hb-tab-btn.hb-tab-active {
	border-color: var(--hb-airbnb-black);
	background: var(--hb-airbnb-black);
	color: var(--hb-airbnb-white);
}

.hb-calendar-inline-wrapper {
	position: relative;
}

.hb-calendar-inline-container {
	display: flex;
	justify-content: center;
	gap: 32px;
}

/* Guests Panel */
.hb-panel-guests {
	max-width: 400px;
	left: auto;
	right: 0;
}

.hb-guest-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	border-bottom: 1px solid #dddddd;
}

.hb-guest-row:last-of-type {
	border-bottom: none;
}

.hb-guest-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.hb-guest-type {
	font-size: 16px;
	font-weight: 500;
	color: #222222;
}

.hb-guest-desc {
	font-size: 14px;
	color: #717171;
}

/* Counter Buttons */
.hb-guest-counter {
	display: flex;
	align-items: center;
	gap: 16px;
}

.hb-counter-btn {
	width: 32px;
	height: 32px;
	border: 1px solid #b0b0b0;
	border-radius: 50%;
	background: #ffffff;
	color: #717171;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 200ms ease;
	padding: 0;
}

.hb-counter-btn svg {
	width: 14px;
	height: 14px;
}

.hb-counter-btn:hover:not(:disabled) {
	border-color: #222222;
	color: #222222;
}

.hb-counter-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.hb-counter-value {
	font-size: 16px;
	font-weight: 500;
	color: #222222;
	min-width: 24px;
	text-align: center;
}

/* Panel Buttons */
.hb-btn-clear {
	background: none;
	border: none;
	color: #222222;
	font-size: 14px;
	font-weight: 600;
	text-decoration: underline;
	cursor: pointer;
	padding: 8px 16px;
	transition: color 200ms ease;
}

.hb-btn-clear:hover {
	color: #717171;
}

.hb-btn-apply {
	background: #222222;
	color: #ffffff;
	border: none;
	border-radius: 12px;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 200ms ease;
}

.hb-btn-apply:hover {
	background: #717171;
}

/* Overlay */
.hb-panel-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.25);
	opacity: 0;
	visibility: hidden;
	transition: all 200ms ease;
	z-index: 999;
}

.hb-panel-overlay.hb-overlay-visible {
	opacity: 1;
	visibility: visible;
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 600px) {
	.hb-search-bar-unified {
		flex-direction: column;
		border-radius: var(--hb-airbnb-radius-lg);
		padding: 8px;
	}

	.hb-segment {
		width: 100%;
	}

	.hb-segment-dates {
		flex-direction: column;
	}

	.hb-segment-inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding: 16px;
		border-radius: var(--hb-airbnb-radius-md) !important;
	}

	.hb-segment-label {
		font-size: 11px;
	}

	.hb-segment-divider {
		width: 100%;
		height: 1px;
		margin: 0;
	}

	.hb-bar-separator {
		width: 100%;
		height: 1px;
		margin: 8px 0;
	}

	.hb-search-btn-airbnb {
		width: 100%;
		margin: 8px 0 0 0;
		padding: 16px;
		border-radius: var(--hb-airbnb-radius-md);
	}

	.hb-search-btn-text {
		display: inline;
	}

	/* Mobile Fullscreen Panels */
	.hb-expand-panel {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		border-radius: 0;
		transform: translateY(100%);
		max-width: 100%;
	}

	.hb-expand-panel.hb-panel-visible {
		transform: translateY(0);
	}

	.hb-panel-content {
		height: calc(100% - 130px);
		overflow-y: auto;
	}

	.hb-panel-footer {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		margin: 0;
		padding: 16px 20px;
		background: var(--hb-airbnb-white);
		border-top: 1px solid var(--hb-airbnb-gray-light);
	}

	.hb-calendar-inline-container {
		flex-direction: column;
		gap: 16px;
	}

	.hb-panel-guests {
		left: 0;
		max-width: 100%;
	}
}

/* ============================================
   DATEPICKER INTEGRATION - AIRBNB STYLE
   ============================================ */

/* Position datepicker inside the panel */
.hb-airbnb-style .hb-datepick-popup-wrapper {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	display: block !important;
	animation: none;
	margin: 0;
}

.hb-airbnb-style .hb-datepick-popup {
	border: none;
	box-shadow: none;
	background: transparent;
	border-radius: 0;
}

.hb-airbnb-style .hb-dp-month {
	background: transparent;
	width: 280px;
}

.hb-airbnb-style .hb-dp-month-header {
	background: transparent;
	border: none;
	margin: 0 0 16px 0;
	padding: 0;
	line-height: 1.4;
	font-size: 16px;
	font-weight: 600;
	color: var(--hb-airbnb-black);
}

.hb-airbnb-style .hb-datepick-legend {
	display: none;
}

/* Airbnb style calendar days */
.hb-airbnb-style .hb-dp-day > a,
.hb-airbnb-style .hb-dp-day > span {
	border-radius: 50%;
	width: 40px;
	height: 40px;
	line-height: 40px;
	margin: 0 auto;
	font-size: 14px;
}

.hb-airbnb-style .hb-dp-day > a:hover {
	background: var(--hb-airbnb-gray-lighter);
	transform: none;
	color: var(--hb-airbnb-black);
}

.hb-airbnb-style .hb-dp-day-check-in > a,
.hb-airbnb-style .hb-dp-day-check-out > a {
	background: var(--hb-airbnb-black) !important;
	color: var(--hb-airbnb-white) !important;
	box-shadow: none;
	border-radius: 50%;
}

.hb-airbnb-style .hb-dp-week-header div {
	font-size: 12px;
	font-weight: 600;
	color: var(--hb-airbnb-gray-dark);
	height: 32px;
	line-height: 32px;
}

/* Counter animation */
.hb-counter-value.hb-counter-animate {
	animation: hb-counter-pop 0.15s ease-out;
}

@keyframes hb-counter-pop {
	0% { transform: scale(1); }
	50% { transform: scale(1.2); }
	100% { transform: scale(1); }
}

/* Hide children row if disabled */
.hb-search-form-no-children .hb-guest-children-row {
	display: none;
}

/* ============================================
   HIDE LEGACY ELEMENTS IN AIRBNB STYLE
   ============================================ */

/* Force hide legacy selects and their wrappers */
.hb-airbnb-style .hb-legacy-hidden,
.hb-airbnb-style > select,
.hb-airbnb-style > .selectize-control,
.hb-airbnb-style .hb-people-wrapper,
.hb-airbnb-style .hb-accom-number-wrapper,
.hb-airbnb-style .hb-check-dates-wrapper:not(.hb-segment),
.hb-airbnb-style p > select.hb-adults,
.hb-airbnb-style p > select.hb-children,
.hb-airbnb-style select.hb-adults,
.hb-airbnb-style select.hb-children,
.hb-airbnb-style select.hb-accom-number,
.hb-airbnb-style .hb-multi-accom-people-selection-wrapper {
	display: none !important;
	visibility: hidden !important;
	position: absolute !important;
	width: 0 !important;
	height: 0 !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

/* Ensure panels are properly shown */
.hb-airbnb-style .hb-search-bar-wrapper {
	position: relative;
	z-index: 100;
}

.hb-airbnb-style .hb-expand-panel {
	display: block;
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	right: 0;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(0,0,0,0.2);
	border: 1px solid #dddddd;
	z-index: 10001;
}

.hb-airbnb-style .hb-expand-panel:not(.hb-panel-visible) {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-8px);
}

.hb-airbnb-style .hb-expand-panel.hb-panel-visible {
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
	transform: translateY(0) !important;
	z-index: 10001 !important;
}

.hb-airbnb-style .hb-panel-guests.hb-panel-visible {
	left: auto;
	right: 0;
	max-width: 400px;
}

.hb-airbnb-style .hb-panel-overlay {
	z-index: 10000;
}

.hb-airbnb-style .hb-panel-overlay.hb-overlay-visible {
	opacity: 1;
	visibility: visible;
}

/* ============================================
   DATEPICKER POPUP INSIDE PANEL - SIMPLIFIED
   ============================================ */
/* Hide HBook datepicker header elements when inside our panel */
.hb-airbnb-style .hb-panel-calendar .hb-datepick-popup-wrapper {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	transform: none !important;
	margin: 0 auto;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
}

/* Hide ALL datepicker chrome - legend, close button, etc. */
.hb-airbnb-style .hb-panel-calendar .hb-datepick-legend,
.hb-airbnb-style .hb-panel-calendar .hb-datepick-selecting-legend,
.hb-airbnb-style .hb-panel-calendar .hb-datepick-custom-legend,
.hb-airbnb-style .hb-panel-calendar .hb-dp-cmd-close {
	display: none !important;
}

/* Make the calendar itself clean */
.hb-airbnb-style .hb-panel-calendar .hb-datepick-popup {
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	padding: 10px !important;
}

/* Calendar panel simplified - FULL WIDTH */
.hb-airbnb-style .hb-panel-calendar {
	padding: 20px;
	max-width: none;
	width: auto;
	min-width: 700px;
	left: 0;
	right: 0;
	transform: none;
}

.hb-airbnb-style .hb-panel-calendar.hb-panel-visible {
	transform: translateY(0) !important;
}

/* Ensure datepicker shows both months side by side */
.hb-airbnb-style .hb-panel-calendar .hb-datepick-popup-wrapper {
	width: 100% !important;
	min-width: 650px;
	display: block !important;
	opacity: 1 !important;
	position: relative !important;
	top: auto !important;
	left: auto !important;
}

.hb-airbnb-style .hb-panel-calendar .hb-datepick-popup {
	display: flex !important;
	justify-content: center !important;
	width: 100% !important;
	gap: 20px;
}

.hb-airbnb-style .hb-panel-calendar .hb-dp-month-row {
	display: flex !important;
	justify-content: center !important;
	gap: 30px;
}

.hb-airbnb-style .hb-panel-calendar .hb-dp-month {
	min-width: 280px;
}

.hb-airbnb-style .hb-calendar-inline-wrapper {
	padding: 16px;
}

/* Hide date inputs but keep them focusable (sr-only technique) */
.hb-airbnb-style .hb-calendar-inline-wrapper .hb-check-in-date,
.hb-airbnb-style .hb-calendar-inline-wrapper .hb-check-out-date {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Override grid layout for calendar panel */
.hb-airbnb-style .hb-panel-calendar .hb-search-fields {
	display: block !important;
	grid-template-columns: none !important;
}

/* Capacity message */
.hb-capacity-message {
	background: #fff8e6;
	border: 1px solid #ffc107;
	border-radius: 8px;
	padding: 12px 16px;
	margin-top: 16px;
	text-align: center;
}

.hb-capacity-message.hb-visible {
	display: block !important;
}

.hb-capacity-text {
	color: #856404;
	font-size: 14px;
	font-weight: 500;
}

/* Guests panel simplified */
.hb-airbnb-style .hb-panel-guests {
	padding: 20px 24px;
}

.hb-airbnb-style .hb-panel-guests .hb-panel-content {
	padding: 0;
}

/* ============================================
   LEGACY STYLES (hidden but functional)
   ============================================ */

/* Form Title */
.hb-title-search-form {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #1a1a1a;
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	display: flex;
	align-items: center;
	gap: 12px;
}

.hb-title-search-form::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230066ff' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	flex-shrink: 0;
}

/* Search Fields Container - Grid Layout */
.hb-search-fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

@media (min-width: 900px) {
	.hb-search-fields {
		grid-template-columns: 1fr 1fr 1fr 1fr auto;
		gap: 16px;
		align-items: end;
	}
}

p.hb-check-dates-wrapper,
p.hb-accom-number-wrapper,
p.hb-people-wrapper,
p.hb-search-button-wrapper {
	float: none;
	margin-right: 0;
	position: relative;
	margin-bottom: 0;
	width: 100%;
}

p.hb-search-button-wrapper {
	grid-column: 1 / -1;
}

@media (min-width: 900px) {
	p.hb-search-button-wrapper {
		grid-column: auto;
	}
}

.hb-datepick-check-in-out-mobile-trigger {
	bottom: 0;
	display: none;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.hb-datepick-check-in-out-trigger {
	display: block;
	position: absolute;
}

/* Field Labels with Icons */
.hb-booking-search-form label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.5);
	margin-bottom: 10px;
}

/* Calendar icon for dates */
.hb-check-dates-wrapper label::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230066ff' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	flex-shrink: 0;
}

/* Users icon for adults */
.hb-people-wrapper-adults label::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230066ff' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	flex-shrink: 0;
}

/* Children icon */
.hb-people-wrapper-children label::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230066ff' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M14.828 14.828a4 4 0 01-5.656 0M9 10h.01M15 10h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	flex-shrink: 0;
}

/* Accom number icon */
.hb-accom-number-wrapper label::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230066ff' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	flex-shrink: 0;
}

/* Modern Input Styles */
.hb-check-dates-wrapper input,
.hb-accom-number-wrapper select,
.hb-people-wrapper select {
	box-sizing: border-box;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	border: 2px solid rgba(0, 0, 0, 0.06);
	border-radius: 14px;
	padding: 16px 20px;
	font-size: 15px;
	font-weight: 600;
	color: #1a1a1a;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	-webkit-appearance: none;
	appearance: none;
}

.hb-people-wrapper select,
.hb-accom-number-wrapper select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 18px;
	padding-right: 48px;
	cursor: pointer;
}

.hb-check-dates-wrapper input:hover,
.hb-accom-number-wrapper select:hover,
.hb-people-wrapper select:hover {
	border-color: rgba(0, 102, 255, 0.3);
	box-shadow: 0 4px 16px rgba(0, 102, 255, 0.1);
	transform: translateY(-1px);
}

.hb-check-dates-wrapper input:focus,
.hb-accom-number-wrapper select:focus,
.hb-people-wrapper select:focus {
	outline: none;
	border-color: #0066ff;
	box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.12), 0 8px 24px rgba(0, 102, 255, 0.15);
	transform: translateY(-2px);
	background: #ffffff;
}

/* Search Button - Modern Style */
.hb-search-button-wrapper input {
	box-sizing: border-box;
	width: 100%;
	text-align: center;
	white-space: nowrap;
	background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
	color: #ffffff;
	border: none;
	border-radius: 14px;
	padding: 18px 32px;
	font-weight: 700;
	letter-spacing: 0.04em;
	cursor: pointer;
	text-transform: uppercase;
	font-size: 13px;
	box-shadow: 0 4px 20px rgba(0, 102, 255, 0.35);
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.hb-search-button-wrapper input::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.5s ease;
}

.hb-search-button-wrapper input:hover {
	background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
	box-shadow: 0 8px 32px rgba(0, 102, 255, 0.45);
	transform: translateY(-3px);
}

.hb-search-button-wrapper input:hover::before {
	left: 100%;
}

.hb-search-button-wrapper input:active {
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(0, 102, 255, 0.35);
}

@media (min-width: 900px) {
	.hb-search-button-wrapper input {
		min-height: 54px;
	}
}

/* Hide default widths - using grid now */
.hb-check-dates-wrapper,
.hb-people-wrapper,
.hb-search-button-wrapper,
.hb-accom-number-wrapper {
	width: 100% !important;
}

.hb-admin-search-type-wrapper,
.hb-accom-number-wrapper,
.hb-search-form-multiple-accom .hb-people-wrapper,
.hb-search-form-no-people .hb-people-wrapper {
	display: none;
}

.hb-search-form-multiple-accom .hb-accom-number-wrapper {
	display: block;
}

.hb-search-form-no-children .hb-people-wrapper-children,
.hb-search-form-no-children .hb-chosen-children {
	display: none;
}

/* Vertical Search Form - Stacked Layout */
.hb-vertical-search-form .hb-search-fields {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hb-vertical-search-form .hb-searched-summary p,
.hb-vertical-search-form .hb-check-dates-wrapper,
.hb-vertical-search-form .hb-people-wrapper,
.hb-vertical-search-form .hb-accom-number-wrapper,
.hb-vertical-search-form .hb-search-button-wrapper,
.hb-vertical-search-form.hb-search-form-no-people:not(.hb-search-form-multiple-accom) .hb-check-dates-wrapper,
.hb-vertical-search-form.hb-search-form-no-people:not(.hb-search-form-multiple-accom) .hb-search-button-wrapper {
	margin-right: 0%;
	width: 100% !important;
}

.hb-vertical-search-form:not(.hb-search-form-no-children) p.hb-people-wrapper {
	float: none;
	width: 100% !important;
}

/* People fields side by side in vertical form */
.hb-vertical-search-form .hb-people-wrapper-adults,
.hb-vertical-search-form .hb-people-wrapper-children {
	display: inline-block;
	width: calc(50% - 8px) !important;
	vertical-align: top;
}

.hb-vertical-search-form .hb-people-wrapper-adults {
	margin-right: 16px;
}

.hb-vertical-search-form .hb-searched-summary p.hb-people-wrapper {
	width: 100% !important;
}

.hb-vertical-search-form:not(.hb-search-form-no-children) p.hb-people-wrapper-adults {
	margin-right: 16px;
}

.hb-vertical-search-form p.hb-people-wrapper-last {
	margin-right: 0;
}

.hb-vertical-search-form:not(.hb-narrow-search-form) .hb-search-button-wrapper input {
	width: 100%;
}

.hb-vertical-search-form .hb-search-button-wrapper label {
	display: none;
}

/* Mobile Responsive */
@media (max-width: 600px) {
	.hb-booking-search-form {
		padding: 24px 20px;
		border-radius: 20px;
	}

	.hb-search-fields {
		grid-template-columns: 1fr !important;
		gap: 16px;
	}

	.hb-title-search-form {
		font-size: 18px;
		margin-bottom: 20px;
		padding-bottom: 16px;
	}

	.hb-check-dates-wrapper input,
	.hb-accom-number-wrapper select,
	.hb-people-wrapper select {
		padding: 14px 16px;
		font-size: 14px;
	}

	.hb-search-button-wrapper input {
		padding: 16px 24px;
	}

	.hb-vertical-search-form .hb-people-wrapper-adults,
	.hb-vertical-search-form .hb-people-wrapper-children {
		display: block;
		width: 100% !important;
		margin-right: 0;
	}
}

p.hb-booking-searching,
.hb-multi-accom-people-selection-wrapper,
.hb-searched-summary,
.hb-search-no-result,
.hb-search-error,
.hb-accom-list {
	display: none;
}

/* Searched Summary - When displayed */
.hb-searched-summary {
	background: linear-gradient(135deg, rgba(0, 102, 255, 0.06) 0%, rgba(0, 212, 255, 0.04) 100%);
	border: 1px solid rgba(0, 102, 255, 0.12);
	border-radius: 16px;
	padding: 20px 24px;
	margin-bottom: 20px;
}

.hb-searched-summary p {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 20px 8px 0;
	font-size: 14px;
	font-weight: 500;
	color: #1a1a1a;
}

.hb-searched-summary p span {
	font-weight: 700;
	color: #0066ff;
}

.hb-change-search-wrapper input {
	background: transparent !important;
	border: 2px solid #0066ff !important;
	color: #0066ff !important;
	box-shadow: none !important;
	font-size: 12px !important;
	padding: 10px 20px !important;
}

.hb-change-search-wrapper input:hover {
	background: rgba(0, 102, 255, 0.08) !important;
	transform: translateY(-1px) !important;
}

/* Search Error & No Result - Modern Style */
.hb-search-no-result {
	background: linear-gradient(135deg, rgba(255, 149, 0, 0.08) 0%, rgba(255, 149, 0, 0.04) 100%);
	border: 1.5px solid rgba(255, 149, 0, 0.2);
	border-radius: 14px;
	padding: 16px 20px;
	color: #cc7700;
	font-weight: 500;
	font-size: 14px;
	margin: 16px 0;
	text-align: center;
}

.hb-people-popup-wrapper {
	/* Swiss Design 2026 Popup - Enhanced */
	border-radius: 24px;
	display: none;
	margin: 12px 0;
	left: 0;
	top: 100%;
	padding: 28px 32px 24px;
	position: absolute;
	z-index: 99999;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(40px) saturate(200%);
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow:
		0 24px 80px rgba(0, 0, 0, 0.15),
		0 8px 24px rgba(0, 0, 0, 0.08),
		0 0 0 1px rgba(0, 0, 0, 0.04);
	animation: hb-popup-enter 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	min-width: 320px;
}

@keyframes hb-popup-enter {
	from {
		opacity: 0;
		transform: translateY(-12px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.hb-people-popup-wrapper-close {
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	position: absolute;
	right: 12px;
	text-align: center;
	text-decoration: none;
	top: 12px;
	width: 32px;
	height: 32px;
	background: rgba(0, 0, 0, 0.04);
	color: #666;
	transition: all 0.2s ease;
}

.hb-people-popup-wrapper-close:hover {
	background: rgba(0, 0, 0, 0.08);
	color: #333;
}

.hb-multi-accom-people-title {
	display: block;
	font-weight: 700;
	font-size: 15px;
	color: #1a1a1a;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hb-multi-accom-people-wrapper {
	float: left;
	margin-right: 32px;
}

.hb-multi-accom-people-wrapper label {
	font-size: 12px !important;
	font-weight: 600 !important;
	color: rgba(0, 0, 0, 0.6) !important;
	margin-bottom: 8px !important;
}

.hb-multi-accom-people-wrapper select {
	min-width: 80px;
}

/* Placeholder Styles */
.hb-check-dates-wrapper input::placeholder {
	color: rgba(0, 0, 0, 0.35);
	font-weight: 500;
}

.hb-check-dates-wrapper input:focus::placeholder {
	opacity: 0.5;
}

/* end search form */

/* accommodation selection */

.hb-accom-quantity,
.hb-accom-page .hb-view-accom,
.hb-accom-selected-left-wrapper,
.hb-accom-none-left .hb-select-accom,
.hb-accom-selected .hb-select-accom,
.hb-multi-accom-no-accom-selected,
.hb-accom-page .hb-accom-selected .hb-select-accom-wrapper,
.hb-accom-selected-name {
	display: none;
}

.hb-accom {
	/* Swiss Design 2026 Card */
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(30px) saturate(180%);
	border: 1.5px solid rgba(0, 0, 0, 0.06);
	border-radius: 24px;
	margin-bottom: 24px;
	min-height: 90px;
	padding: 32px;
	padding-bottom: 24px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.02);
	position: relative;
	overflow: hidden;
}

.hb-accom:hover {
	border-color: rgba(0, 102, 255, 0.15);
	box-shadow: 0 8px 32px rgba(0, 102, 255, 0.12), 0 0 0 1px rgba(0, 102, 255, 0.08);
	transform: translateY(-4px);
}

.hb-accom::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, #0066ff 0%, #00ccff 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hb-accom:hover::before {
	opacity: 1;
}

.hb-accom-page .hb-multi-accom-choices.hb-accom-page-one-result .hb-accom {
	background: none;
	border: none;
	border-bottom: 1px solid #ccc;
	border-radius: 0;
	border-top: 1px solid #ccc;
	margin-bottom: 20px;
	padding: 0;
	padding-top: 15px;
}

.hb-accom-selected {
	background: #eee;
}

.hb-accom-title {
	/* Swiss Design 2026 Title */
	font-weight: 700;
	font-size: 24px;
	letter-spacing: -0.02em;
	color: #1a1a1a;
	margin-bottom: 12px;
	line-height: 1.3;
}

.hb-accom-img {
	display: block;
	float: right;
	margin: 0 0 15px 15px;
	max-width: 100%;
}

.hb-accom-price {
	float: left;
	/* Swiss Design 2026 Price Display */
	font-size: 40px;
	font-weight: 700;
	line-height: 52px;
	margin-right: 12px;
	background: linear-gradient(135deg, #0066ff 0%, #00ccff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.03em;
	position: relative;
}

.hb-accom-price-caption {
	float: left;
	font-size: 13px;
	font-weight: 500;
	line-height: 16px;
	margin: 24px 0 15px;
	color: rgba(0, 0, 0, 0.6);
	letter-spacing: -0.01em;
}

.hb-accom-price-caption-small {
	margin-top: 12px;
	font-size: 12px;
}

.hb-price-breakdown,
.hb-price-bd-hide-text,
.hb-hidden-price-breakdown,
.hb-price-breakdown-global-discount,
.hb-price-breakdown-section.hb-fee-accom-included,
.hb-price-breakdown-section.hb-fee-accom-final {
	display: none;
}

.hb-price-breakdown-title {
	display: block;
	font-weight: bold;
}

.hb-price-breakdown-section {
	display: block;
}

.hb-select-accom,
.hb-view-accom {
	float: left;
}

p.hb-select-accom {
	margin-right: 15px;
}

/* Swiss Design 2026 Action Buttons */
.hb-select-accom input,
.hb-view-accom input,
.hb-view-accom a {
	background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
	border: none;
	border-radius: 12px;
	color: #ffffff;
	padding: 14px 28px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.01em;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 16px rgba(0, 102, 255, 0.24);
	text-decoration: none;
	display: inline-block;
}

.hb-select-accom input:hover,
.hb-view-accom input:hover,
.hb-view-accom a:hover {
	background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
	box-shadow: 0 8px 24px rgba(0, 102, 255, 0.32);
	transform: translateY(-2px);
}

.hb-select-accom input:active,
.hb-view-accom input:active,
.hb-view-accom a:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(0, 102, 255, 0.24);
}

.hb-accom-selected .hb-accom-selected-name {
	display: block;
	font-weight: bold;
}

.hb-accom-page .hb-multi-accom-choices.hb-accom-page-one-result .hb-accom-selected .hb-accom-selected-name {
	display: none;
}

.hb-nb-accom-selected,
.hb-accom-left {
	display: block;
}

/* end accommodation selection */

/* booking details form */

.hb-booking-details-form,
.hb-saving-resa,
.hb-loading-summary,
.hb-processing-later-payment,
.hb-confirm-error,
.hb-policies-error,
.hb-resa-done-msg,
.hb-resa-payment-msg,
.hb-bottom-area-content,
.hb-bottom-area,
.hb-thank-you-page-form {
	display: none;
}

.hb-detail-field {
	box-sizing: border-box;
	width: 100%;
	/* Swiss Design 2026 Detail Fields */
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	border: 1.5px solid rgba(0, 0, 0, 0.08);
	border-radius: 14px;
	padding: 16px 20px;
	font-size: 15px;
	font-weight: 500;
	color: #1a1a1a;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', sans-serif;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.hb-detail-field:hover {
	border-color: rgba(0, 0, 0, 0.15);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.hb-detail-field:focus {
	outline: none;
	border-color: #0066ff;
	box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1), 0 8px 20px rgba(0, 102, 255, 0.12);
	background: rgba(255, 255, 255, 0.98);
}

textarea.hb-detail-field {
	height: 140px !important;
	resize: vertical;
	line-height: 1.6;
}

.hbook-wrapper .form-error {
	display: block;
	/* Swiss Design 2026 Error Messages */
	background: linear-gradient(135deg, rgba(255, 59, 48, 0.08) 0%, rgba(255, 59, 48, 0.04) 100%);
	border-left: 3px solid #ff3b30;
	border-radius: 10px;
	padding: 12px 16px;
	margin-top: 8px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: -0.01em;
	animation: hb-error-shake 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes hb-error-shake {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-8px); }
	75% { transform: translateX(8px); }
}

.hb-resa-summary-content {
	/* Swiss Design 2026 Summary Box */
	background: linear-gradient(135deg, rgba(248, 250, 252, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
	backdrop-filter: blur(40px) saturate(200%);
	border: 2px solid rgba(0, 102, 255, 0.12);
	border-radius: 20px;
	margin-bottom: 28px;
	padding: 28px 32px;
	box-shadow: 0 4px 24px rgba(0, 102, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
	position: relative;
}

.hb-resa-summary-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #0066ff 0%, #00ccff 50%, #0066ff 100%);
	border-radius: 20px 20px 0 0;
}

.hb-resa-summary-content .hb-fee-accom-final {
	display: block;
}

.hb-summary-multi-accom-title,
.hb-summary-accom-total-price,
.hb-summary-deposit,
.hb-summary-total-price,
.hb-summary-bond,
.hb-resa-done-email,
.hb-resa-done-alphanum-id {
	font-weight: bold;
}

.hb-summary-accom-content {
	margin-left: 30px;
}

.hb-resa-summary-content .hb-included-fees-wrapper {
	margin-left: 20px;
}

.hb-summary-total-price small {
	font-weight: normal;
}

.hb-summary-price-breakdown-trigger-wrapper {
	font-size: 12px;
}

.hb-booking-details-form .hb-payment-type-multiple-choice label,
.hb-booking-details-form .hb-payment-method label, .hb-payment-method-choice label {
	display: inline;
}

.hb-payment-data-summary,
.hb-payment-type-explanation,
.hb-payment-type-hidden,
.hb-payment-method-hidden,
.hb-payment-type-null-price-wrapper,
.hb-payment-method-wrapper {
	display: none;
}

.hb-payment-link-form .hb-payment-method-wrapper {
	display: block;
}

.hb-column-half {
	float: left;
	width: 48%;
}

.hb-column-third {
	float: left;
	width: 30.66%;
}

.hb-column-half,
.hb-column-third {
	margin-right: 4%;
}

.hb-column-half:last-of-type,
.hb-column-third:last-of-type {
	margin-right: 0;
}

.hb-details-form-stacked .hb-column-half,
.hb-details-form-stacked .hb-column-third {
	float: none;
	width: 100%;
}

/* end booking details form */

/* coupon */

input.hb-coupon-code {
	width: 200px;
}

.hb-coupon-code,
.hb-apply-coupon {
	float: left;
	margin-right: 15px;
}

.hb-processing-coupon,
.hb-coupon-msg,
.hb-coupon-error {
	display: none;
}

/* end coupon */

/* selectize */

.hbook-wrapper .selectize-control .selectize-input input[type="text"],
.hb-payment-link-form-wrapper .selectize-control .selectize-input input[type="text"] {
	padding: 0 !important;
	height: 20px !important;
}

.hbook-wrapper .selectize-control .selectize-input,
.hb-payment-link-form-wrapper .selectize-control .selectize-input {
	background-image: none;
	box-shadow: none;
	padding: 0;
}

.hbook-wrapper .selectize-control .selectize-input .item,
.hb-payment-link-form-wrapper .selectize-control .selectize-input .item {
	padding-right: 0px;
}

.selectize-dropdown .selected {
	background-color: #999;
}

.selectize-dropdown .active:not(.selected) {
	background-color: #dde8ee;
}

.selectize-control.single .selectize-input:not(.no-arrow):after {
	right: 8px;
}

.hotelwp-select-wrapper .selectize-control.single .selectize-input:not(.no-arrow):after,
.maestrel-select-wrapper .selectize-control.single .selectize-input:not(.no-arrow):after {
	display: none;
}

.hotelwp-select-hb-country-iso-select .hotelwp-select-arrow svg,
.hotelwp-select-selectized .hotelwp-select-arrow svg {
	top: 16px;
}

.hotelwp-select-selectized .selectize-control .selectize-input {
	padding-bottom: 2px;
}

/* end selectize */

/* misc */

.hb-payment-link-form-wrapper input[name="hb-payment-type"],
.hb-later-payment-thank-you-summary-top-js-msg,
.hb-later-payment-history-table,
#hb-payment-form-select-for-selectize-styles {
	display: none;
}

/* Swiss Design 2026 Loader */
.hb-dots-loader {
	display: inline-block;
	padding: 20px;
	text-align: center;
}

.hb-dots-loader span {
	font-family: monospace;
	font-weight: bold;
	clip-path: inset(0 3ch 0 0);
	animation: hb-dots-animation 1s steps(4) infinite;
	font-size: 24px;
	background: linear-gradient(135deg, #0066ff 0%, #00ccff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hb-dots-loader span:before {
	content: '...';
}

@keyframes hb-dots-animation {
	to {
		clip-path: inset(0 -1ch 0 0)
	}
}

/* Swiss Design 2026 Loading States */
.hb-booking-searching,
.hb-saving-resa,
.hb-loading-summary,
.hb-processing-later-payment,
.hb-processing-coupon {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(30px);
	border: 1.5px solid rgba(0, 102, 255, 0.15);
	border-radius: 16px;
	padding: 32px;
	text-align: center;
	box-shadow: 0 8px 32px rgba(0, 102, 255, 0.12);
	animation: hb-pulse 2s ease-in-out infinite;
}

@keyframes hb-pulse {
	0%, 100% {
		box-shadow: 0 8px 32px rgba(0, 102, 255, 0.12);
	}
	50% {
		box-shadow: 0 12px 40px rgba(0, 102, 255, 0.18);
	}
}

.hb-explanation {
	font-style: italic;
}

.hbook-wrapper input[type="text"] {
	display: block;
}

.hb-people-popup-wrapper label,
.hbook-wrapper label {
	display: table;
	/* Swiss Design 2026 Labels */
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #1a1a1a;
	margin-bottom: 12px;
	opacity: 0.85;
}

.hbook-wrapper label.hb-label-choice,
.hbook-wrapper label.hb-terms-and-cond,
.hbook-wrapper label.hb-privacy-policy {
	display: inline;
	text-transform: none;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: -0.01em;
}

.hb-accom-listing-shortcode-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

.hb-accom-listing-row {
	display: flex;
	align-items: stretch;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
}

.hb-accom-listing-column  {
	padding: 2%;
	margin-bottom: 50px;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: stretch;
}

.hb-accom-listing-actions-wrapper {
	display: flex;
	align-items: stretch;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	overflow: hidden;
}

.hb-listing-view-accom {
	margin-right: 20px;
}

.hb-accom-listing-mobile-view .hb-listing-view-accom {
	margin-right: 0px;
}

.hb-accom-listing-mobile-view .hb-accom-listing-actions-wrapper p, .hb-accom-listing-mobile-view .hb-accom-listing-actions-wrapper p input {
	width: 100%;
}

.hb-accom-listing-desc a {
	word-break: keep-all;
	word-wrap: normal;
}

.hb-accom-listing-mobile-view {
	max-width: 100% !important;
}

.hb-accom-listing-booking-form {
	display: none;
	margin-top: 12px;
}

a.hb-thumbnail-link {
	border: none;
	display: block;
}

.hb-accom-listing-thumb {
	display: block;
	float: left;
	max-width: 100%;
}

.hb-accom-listing-item h2,
.hb-accom-listing-item h3,
.hb-accom-listing-item h4 {
	clear: none;
}

.hb-single-option {
	line-height: 2;
}

.hb-quantity-option {
	margin-bottom: 5px;
}

.hb-summary-multi-accom-accom .hb-summary-price-details,
.hb-summary-price-breakdown-hide-text,
.hb-intermediate-step-wrapper,
.hb-options-form,
.hb-quantity-option,
.hb-single-option,
.hb-multiple-option {
	display: none;
}

.hbook-wrapper .hb-options-form label {
	display: inline;
}

.hb-options-total-price {
	font-weight: bold;
}

.hb-price-placeholder-minus {
	display: none;
}

.hb-select-accom-num-form {
	margin-bottom: 20px;
}

.hb-payment-form-stripe {
	background: #ddd;
	border-radius: 5px;
	padding: 20px;
	position: relative;
	margin-bottom: 22px;
}

.hb-stripe-payment-form-txt-top {
	margin-top: 0;
	padding-top: 0;
}

.hb-stripe-payment-form-txt-bottom,
.hb-powered-by-stripe {
	margin-bottom: 0;
	padding-bottom: 0;
}

.hb-stripe-payment-form-txt-bottom {
	margin-top: 10px;
}

.hb-stripe-payment-form-txt-bottom-has-margin {
	margin-right: 120px;
}

.hb-powered-by-stripe {
	bottom: 6px;
	position: absolute;
	right: 20px;
}

.hb-padlock-img {
	margin-right: 3px;
	vertical-align: text-bottom;
}

.hb-paypal-payment-gateway-label-img-paypal {
	margin-top: -4px;
}

.hb-bottom-area img,
.hbook-wrapper label img {
	vertical-align: middle;
}

/* Swiss Design 2026 Error Messages */
.hb-search-error,
.hb-confirm-error,
.hb-policies-error,
.hb-stripe-error,
.hb-coupon-error {
	color: #ff3b30;
	background: linear-gradient(135deg, rgba(255, 59, 48, 0.1) 0%, rgba(255, 59, 48, 0.05) 100%);
	border: 1.5px solid rgba(255, 59, 48, 0.2);
	border-radius: 14px;
	padding: 16px 20px;
	font-weight: 500;
	font-size: 14px;
	margin: 16px 0;
	box-shadow: 0 4px 16px rgba(255, 59, 48, 0.1);
	animation: hb-error-enter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes hb-error-enter {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Success Messages */
.hb-resa-done-msg,
.hb-coupon-msg {
	background: linear-gradient(135deg, rgba(52, 199, 89, 0.1) 0%, rgba(52, 199, 89, 0.05) 100%);
	border: 1.5px solid rgba(52, 199, 89, 0.2);
	border-radius: 14px;
	padding: 16px 20px;
	color: #34c759;
	font-weight: 500;
	font-size: 14px;
	margin: 16px 0;
	box-shadow: 0 4px 16px rgba(52, 199, 89, 0.1);
	animation: hb-success-enter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes hb-success-enter {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.hb-alignleft {
	float: left;
}

.hb-clearfix:after {
	clear: both;
	content: "";
	display: table;
}

/* Swiss Design 2026 - Advanced Interactions */

/* Ripple effect */
.hb-ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	width: 20px;
	height: 20px;
	margin-left: -10px;
	margin-top: -10px;
	animation: hb-ripple-animation 0.6s ease-out;
	pointer-events: none;
}

@keyframes hb-ripple-animation {
	from {
		transform: scale(0);
		opacity: 1;
	}
	to {
		transform: scale(20);
		opacity: 0;
	}
}

/* Field focus states */
.hb-field-focused {
	position: relative;
}

.hb-field-focused::before {
	content: '';
	position: absolute;
	left: -4px;
	right: -4px;
	top: -4px;
	bottom: -4px;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 204, 255, 0.05) 100%);
	pointer-events: none;
	animation: hb-field-glow 0.3s ease;
}

@keyframes hb-field-glow {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Price update animation */
.hb-price-updated {
	animation: hb-price-pop 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes hb-price-pop {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.08);
	}
}

/* Modern loading spinner */
.hb-modern-loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 48px;
	height: 48px;
	margin: -24px 0 0 -24px;
	border: 3px solid rgba(0, 102, 255, 0.1);
	border-top-color: #0066ff;
	border-radius: 50%;
	animation: hb-spinner 0.8s linear infinite;
}

@keyframes hb-spinner {
	to {
		transform: rotate(360deg);
	}
}

/* Popup backdrop */
body.hb-popup-active::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(8px);
	z-index: 99998;
	animation: hb-backdrop-fade 0.3s ease;
}

@keyframes hb-backdrop-fade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Enhanced scrollbar for webkit */
.hb-webkit-scrollbar .hbook-wrapper ::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

.hb-webkit-scrollbar .hbook-wrapper ::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.04);
	border-radius: 10px;
}

.hb-webkit-scrollbar .hbook-wrapper ::-webkit-scrollbar-thumb {
	background: rgba(0, 102, 255, 0.3);
	border-radius: 10px;
	transition: background 0.2s;
}

.hb-webkit-scrollbar .hbook-wrapper ::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 102, 255, 0.5);
}

/* Day hover animation */
.hb-day-hover {
	animation: hb-day-bounce 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes hb-day-bounce {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.12);
	}
}

/* Smooth card elevation */
.hb-accom {
	will-change: transform;
}

/* Swiss Design Grid Enhancement */
.hbook-wrapper {
	position: relative;
}

.hbook-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(0, 102, 255, 0.1) 50%, transparent 100%);
}

/* Responsive Swiss Design */
@media (max-width: 600px) {
	.hb-accom-price {
		font-size: 32px;
		line-height: 40px;
	}

	.hb-accom-title {
		font-size: 20px;
	}

	.hb-dp-month {
		width: 280px;
	}

	.hb-dp-day {
		height: 40px;
		line-height: 40px;
	}
}

/* end misc */
/* FIX CONFLICTS */
.hb-booking-search-form.hb-airbnb-style.hb-search-fields {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
}
.hb-booking-search-form.hb-airbnb-style.hb-search-fields > * {
    width: auto;
    margin: 0;
}
