:root {
	--hotelbro-primary: #1a56db;
	--hotelbro-primary-hover: #1e40af;
	--hotelbro-secondary: #64748b;
	--hotelbro-success: #16a34a;
	--hotelbro-warning: #d97706;
	--hotelbro-danger: #dc2626;
	--hotelbro-bg: #f8fafc;
	--hotelbro-surface: #ffffff;
	--hotelbro-border: #e2e8f0;
	--hotelbro-text: #1e293b;
	--hotelbro-text-muted: #64748b;
	--hotelbro-radius: 8px;
	--hotelbro-shadow: 0 1px 3px rgba(0,0,0,0.1);
	--hotelbro-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

	/* HBS - Modern Booking Form (cascades from Elementor globals) */
	--hbs-bg: var(--e-global-color-background, #0f1419);
	--hbs-surface: var(--e-global-color-secondary, #1a1f2e);
	--hbs-surface-hover: var(--e-global-color-secondary, #232a3d);
	--hbs-border: rgba(255,255,255,0.08);
	--hbs-border-focus: rgba(255,255,255,0.2);
	--hbs-text: var(--e-global-color-text, #f1f5f9);
	--hbs-text-secondary: rgba(255,255,255,0.55);
	--hbs-accent: var(--e-global-color-accent, #c8a87c);
	--hbs-accent-hover: var(--e-global-color-accent, #d4b996);
	--hbs-radius: 16px;
	--hbs-radius-sm: 10px;
}

/* ── Search form base ── */
.hotelbro-search-form {
	font-family: var(--hotelbro-font);
	color: var(--hotelbro-text);
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1rem;
}

.hotelbro-search-form h2 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
}

/* ── Single-row search bar ── */
.hotelbro-search-form .hotelbro-form-row {
	display: flex;
	gap: 0;
	margin-bottom: 0;
	flex-wrap: nowrap;
	border: 1px solid var(--hotelbro-border);
	border-radius: var(--hotelbro-radius);
	overflow: hidden;
	box-shadow: var(--hotelbro-shadow);
	background: var(--hotelbro-surface);
}

.hotelbro-search-form .hotelbro-form-group {
	flex: 1;
	min-width: 0;
	padding: 0.5rem 1rem;
	background: var(--hotelbro-surface);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hotelbro-search-form .hotelbro-form-group + .hotelbro-form-group,
.hotelbro-search-form .hotelbro-form-group + .hotelbro-btn-primary {
	border-left: 1px solid var(--hotelbro-border);
}

.hotelbro-search-form .hotelbro-form-group label {
	margin: 0 0 2px;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--hotelbro-text-muted);
}

.hotelbro-search-form .hotelbro-form-group input[type="date"],
.hotelbro-search-form .hotelbro-form-group input[type="number"] {
	border: none !important;
	background: transparent !important;
	padding: 0;
	margin: 0;
	font-size: 1rem;
	color: var(--hotelbro-text);
	width: 100%;
	box-shadow: none !important;
	outline: none !important;
	border-radius: 0 !important;
	height: auto;
	min-height: unset;
}

.hotelbro-search-form .hotelbro-guests-inputs {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.hotelbro-search-form .hotelbro-guests-inputs input[type="number"] {
	width: 2.5rem;
	text-align: center;
	flex: 0 0 auto;
}

.hotelbro-search-form .hotelbro-guests-inputs span {
	font-size: 0.85rem;
	color: var(--hotelbro-text);
	white-space: nowrap;
}

.hotelbro-search-form .hotelbro-btn-primary {
	flex-shrink: 0;
	padding: 0.75rem 1.5rem;
	background-color: #fff !important;
	color: #1a56db !important;
	font-weight: 600;
	font-size: 1rem;
	border: none !important;
	border-color: transparent !important;
	border-radius: 0 !important;
	cursor: pointer;
	transition: background-color 0.2s;
	white-space: nowrap;
	outline: none !important;
	box-shadow: none !important;
	text-decoration: none;
}

.hotelbro-search-form .hotelbro-btn-primary:hover,
.hotelbro-search-form .hotelbro-btn-primary:focus,
.hotelbro-search-form .hotelbro-btn-primary:active {
	background-color: #1a56db !important;
	color: #fff !important;
	border-color: transparent !important;
	outline: none !important;
	box-shadow: none !important;
}

.hotelbro-search-results {
	margin-top: 2rem;
}

/* ── Generic form styles (non-search contexts) ── */
.hotelbro-checkout,
.hotelbro-confirmation,
.hotelbro-guest-portal {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1rem;
}

.hotelbro-checkout h2 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
}

.hotelbro-form-row {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.hotelbro-form-group {
	flex: 1;
	min-width: 200px;
}

.hotelbro-form-group label {
	display: block;
	font-weight: 500;
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
}

.hotelbro-form-group input,
.hotelbro-form-group select,
.hotelbro-form-group textarea {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid var(--hotelbro-border);
	border-radius: var(--hotelbro-radius);
	font-size: 1rem;
	transition: border-color 0.2s;
}

.hotelbro-form-group input:focus,
.hotelbro-form-group select:focus,
.hotelbro-form-group textarea:focus {
	outline: none;
	border-color: var(--hotelbro-primary);
	box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.hotelbro-btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: var(--hotelbro-radius);
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s, transform 0.1s;
	text-decoration: none;
	text-align: center;
}

.hotelbro-btn:active {
	transform: scale(0.98);
}

.hotelbro-btn-primary {
	background-color: var(--hotelbro-primary);
	color: #fff;
}

.hotelbro-btn-primary:hover {
	background-color: var(--hotelbro-primary-hover);
}

.hotelbro-btn-secondary {
	background-color: var(--hotelbro-secondary);
	color: #fff;
}

.hotelbro-btn-secondary:hover {
	background-color: #475569;
}

.hotelbro-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.hotelbro-room-grid {
	display: grid;
	gap: 1.5rem;
}

.hotelbro-grid-cols-1 { grid-template-columns: 1fr; }
.hotelbro-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.hotelbro-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.hotelbro-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
	.hotelbro-grid-cols-3,
	.hotelbro-grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
	.hotelbro-grid-cols-2,
	.hotelbro-grid-cols-3,
	.hotelbro-grid-cols-4 { grid-template-columns: 1fr; }
}

.hotelbro-room-card {
	background: var(--hotelbro-surface);
	border-radius: var(--hotelbro-radius);
	box-shadow: var(--hotelbro-shadow);
	overflow: hidden;
	transition: transform 0.2s, box-shadow 0.2s;
}

.hotelbro-room-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hotelbro-room-image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.hotelbro-room-content {
	padding: 1.25rem;
}

.hotelbro-room-name {
	font-size: 1.125rem;
	margin: 0 0 0.5rem;
}

.hotelbro-room-name a {
	color: var(--hotelbro-text);
	text-decoration: none;
}

.hotelbro-room-name a:hover {
	color: var(--hotelbro-primary);
}

.hotelbro-room-excerpt {
	color: var(--hotelbro-text-muted);
	font-size: 0.875rem;
	margin-bottom: 0.75rem;
}

.hotelbro-room-meta {
	font-size: 0.875rem;
	color: var(--hotelbro-text-muted);
	margin-bottom: 0.75rem;
}

.hotelbro-room-price {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.hotelbro-price-period {
	font-size: 0.875rem;
	font-weight: 400;
	color: var(--hotelbro-text-muted);
}

.hotelbro-checkout-steps {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 2rem;
	padding: 1rem;
	background: var(--hotelbro-surface);
	border-radius: var(--hotelbro-radius);
	box-shadow: var(--hotelbro-shadow);
}

.hotelbro-step {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--hotelbro-text-muted);
}

.hotelbro-step-active {
	color: var(--hotelbro-primary);
	font-weight: 600;
}

.hotelbro-step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: var(--hotelbro-border);
	font-size: 0.875rem;
}

.hotelbro-step-active .hotelbro-step-number {
	background: var(--hotelbro-primary);
	color: #fff;
}

.hotelbro-checkout-actions {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
	justify-content: space-between;
}

.hotelbro-room-selection {
	display: grid;
	gap: 1rem;
}

.hotelbro-room-option {
	display: flex;
	gap: 1rem;
	padding: 1rem;
	border: 2px solid var(--hotelbro-border);
	border-radius: var(--hotelbro-radius);
	cursor: pointer;
	transition: border-color 0.2s;
}

.hotelbro-room-option:hover,
.hotelbro-room-option.selected {
	border-color: var(--hotelbro-primary);
}

.hotelbro-room-option img {
	width: 120px;
	height: 80px;
	object-fit: cover;
	border-radius: 4px;
}

.hotelbro-extras-selection {
	display: grid;
	gap: 0.75rem;
}

.hotelbro-extra-item {
	background: var(--hotelbro-surface);
	border: 1.5px solid var(--hotelbro-border);
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

.hotelbro-extra-item:hover {
	border-color: var(--hotelbro-primary);
	box-shadow: 0 4px 16px rgba(26, 86, 219, 0.12);
	transform: translateY(-2px);
}

.hotelbro-extra-item:has(input:checked) {
	border-color: var(--hotelbro-primary);
	background: linear-gradient(135deg, #f0f5ff 0%, #e8effe 100%);
	box-shadow: 0 2px 8px rgba(26, 86, 219, 0.15);
}

.hotelbro-extra-label {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	cursor: pointer;
	width: 100%;
	min-height: 100%;
}

.hotelbro-extra-label input[type="checkbox"] {
	width: 1.25rem;
	height: 1.25rem;
	accent-color: var(--hotelbro-primary);
	flex-shrink: 0;
}

.hotelbro-extra-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.hotelbro-extra-name {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--hotelbro-text);
	letter-spacing: -0.01em;
}

.hotelbro-extra-desc {
	font-size: 0.8rem;
	color: var(--hotelbro-text-muted);
	line-height: 1.4;
}

.hotelbro-extra-price {
	text-align: right;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.hotelbro-extra-price span {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--hotelbro-primary);
	white-space: nowrap;
}

.hotelbro-extra-price small {
	font-size: 0.7rem;
	font-weight: 500;
	color: var(--hotelbro-text-muted);
	white-space: nowrap;
}

.hotelbro-checkout-summary {
	background: var(--hotelbro-bg);
	padding: 1.25rem;
	border-radius: var(--hotelbro-radius);
	margin: 1.5rem 0;
}

.hotelbro-checkout-summary table {
	width: 100%;
	border-collapse: collapse;
}

.hotelbro-checkout-summary th,
.hotelbro-checkout-summary td {
	padding: 0.5rem 0;
	text-align: left;
}

.hotelbro-checkout-summary th {
	color: var(--hotelbro-text-muted);
	font-weight: 400;
}

.hotelbro-checkout-summary .hotelbro-total {
	border-top: 2px solid var(--hotelbro-border);
	padding-top: 0.75rem;
	margin-top: 0.5rem;
	font-weight: 600;
	font-size: 1.125rem;
}

.hotelbro-payment-methods {
	display: grid;
	gap: 0.75rem;
	margin: 1.5rem 0;
}

.hotelbro-payment-method {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem;
	border: 2px solid var(--hotelbro-border);
	border-radius: var(--hotelbro-radius);
	cursor: pointer;
}

.hotelbro-payment-method.selected {
	border-color: var(--hotelbro-primary);
	background: rgba(26, 86, 219, 0.05);
}

.hotelbro-terms {
	margin: 1.5rem 0;
}

.hotelbro-confirmation-success {
	text-align: center;
	padding: 2rem;
	background: var(--hotelbro-surface);
	border-radius: var(--hotelbro-radius);
	box-shadow: var(--hotelbro-shadow);
	margin-bottom: 2rem;
}

.hotelbro-confirmation-success h1 {
	color: var(--hotelbro-success);
	margin-bottom: 0.5rem;
}

.hotelbro-details-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--hotelbro-surface);
	border-radius: var(--hotelbro-radius);
	box-shadow: var(--hotelbro-shadow);
}

.hotelbro-details-table th,
.hotelbro-details-table td {
	padding: 0.75rem 1rem;
	text-align: left;
	border-bottom: 1px solid var(--hotelbro-border);
}

.hotelbro-details-table th {
	color: var(--hotelbro-text-muted);
	font-weight: 500;
	width: 40%;
}

.hotelbro-confirmation-actions {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
	flex-wrap: wrap;
}

.hotelbro-status-badge {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 500;
	text-transform: uppercase;
}

.status-hold { background: #fef3c7; color: #92400e; }
.status-pending_payment { background: #fef3c7; color: #92400e; }
.status-deposit_paid { background: #dbeafe; color: #1e40af; }
.status-confirmed { background: #dcfce7; color: #166534; }
.status-checked_in { background: #dbeafe; color: #1e40af; }
.status-checked_out { background: #e2e8f0; color: #475569; }
.status-cancelled { background: #fee2e2; color: #991b1b; }
.status-no_show { background: #fee2e2; color: #991b1b; }

.hotelbro-guest-login {
	max-width: 400px;
	margin: 2rem auto;
	padding: 2rem;
	background: var(--hotelbro-surface);
	border-radius: var(--hotelbro-radius);
	box-shadow: var(--hotelbro-shadow);
	text-align: center;
}

.hotelbro-guest-login h2 {
	margin-bottom: 1rem;
}

.hotelbro-availability-calendar {
	min-height: 200px;
}

@media (prefers-reduced-motion: reduce) {
	.hotelbro-room-card,
	.hotelbro-btn {
		transition: none;
	}
}

.hotelbro-amenities-grid {
	margin-top: 1.5rem;
	padding: 1.5rem;
	background: var(--hotelbro-surface);
	border-radius: var(--hotelbro-radius);
	border: 1px solid var(--hotelbro-border);
}

.hotelbro-amenities-grid h3 {
	font-size: 1.25rem;
	margin-top: 0;
	margin-bottom: 1.25rem;
	font-weight: 600;
	color: var(--hotelbro-text);
}

.hotelbro-no-amenities,
.hotelbro-amenities-grid-error {
	color: var(--hotelbro-text-muted);
	font-size: 0.95rem;
	font-style: italic;
}

.hotelbro-amenities-grid-error {
	color: var(--hotelbro-danger);
	padding: 1rem;
	background: rgba(220, 38, 38, 0.05);
	border: 1px solid var(--hotelbro-danger);
	border-radius: var(--hotelbro-radius);
}

.hotelbro-amenities-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 1rem;
}

.hotelbro-amenity-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	background: var(--hotelbro-bg);
	border-radius: var(--hotelbro-radius);
	font-size: 0.95rem;
	color: var(--hotelbro-text);
	transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
	border: 1px solid transparent;
}

.hotelbro-amenity-item:hover {
	background: var(--hotelbro-surface);
	border-color: var(--hotelbro-border);
	transform: translateY(-2px);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.hotelbro-amenity-icon {
	color: var(--hotelbro-primary);
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
}

.hotelbro-amenity-name {
	font-weight: 500;
}

/* Amenity tag pills on room cards / listings */
.hotelbro-room-amenities-preview {
	display: flex;
	flex-wrap: wrap;
	gap: 0.375rem;
	margin-bottom: 0.75rem;
}

.hotelbro-amenity-tag {
	display: inline-block;
	padding: 0.2rem 0.6rem;
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--hotelbro-primary);
	background: rgba(26, 86, 219, 0.08);
	border: 1px solid rgba(26, 86, 219, 0.2);
	border-radius: 9999px;
	white-space: nowrap;
	line-height: 1.5;
	transition: background-color 0.15s, color 0.15s;
}

.hotelbro-amenity-tag:hover {
	background: rgba(26, 86, 219, 0.15);
}

@media (max-width: 480px) {
	.hotelbro-amenities-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ── Cozystay-style cs-reservation-form / csf-dropdown ── */
.cs-reservation-form {
	background: var(--hotelbro-surface);
	border-radius: var(--hotelbro-radius);
	padding: 1rem;
}

.cs-reservation-form .cs-form-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	align-items: stretch;
	border: 1px solid var(--hotelbro-border);
	border-radius: var(--hotelbro-radius);
	overflow: hidden;
	background: var(--hotelbro-surface);
}

.cs-reservation-form .cs-form-field {
	flex: 1 1 0;
	min-width: 140px;
	padding: 0.5rem 1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-right: 1px solid var(--hotelbro-border);
	background: var(--hotelbro-surface);
}

.cs-reservation-form .cs-form-field:last-child {
	border-right: none;
}

.cs-reservation-form .cs-form-field.hide {
	display: none;
}

.cs-reservation-form .cs-form-field .field-wrap {
	position: relative;
	width: 100%;
}

.cs-reservation-form .cs-form-label {
	display: block;
	font-size: 0.7rem !important;
	font-weight: 600 !important;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--hotelbro-text-muted);
	margin: 0 0 4px;
}

.cs-reservation-form .field-input-wrap input[type="text"],
.cs-reservation-form .field-input-wrap input[type="date"] {
	width: 100%;
	border: none !important;
	background: transparent !important;
	padding: 0 !important;
	margin: 0 !important;
	font-size: 1rem !important;
	color: var(--hotelbro-text) !important;
	box-shadow: none !important;
	outline: none !important;
	border-radius: 0 !important;
	height: auto;
	min-height: unset;
}

.cs-reservation-form .cs-has-dropdown .csf-dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	background: var(--hotelbro-surface);
	border: 1px solid var(--hotelbro-border);
	border-radius: var(--hotelbro-radius);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	padding: 0.75rem;
	z-index: 100;
}

.cs-reservation-form .cs-has-dropdown.open .csf-dropdown {
	display: block;
}

.cs-reservation-form .csf-dropdown-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--hotelbro-border);
}

.cs-reservation-form .csf-dropdown-item:last-child {
	border-bottom: none;
}

.cs-reservation-form .csf-dropdown-item.hide {
	display: none;
}

.cs-reservation-form .csf-dropdown-item .cs-form-label {
	margin: 0;
}

.cs-reservation-form .cs-quantity {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.cs-reservation-form .cs-quantity button {
	width: 28px;
	height: 28px;
	border: 1px solid var(--hotelbro-border);
	background: var(--hotelbro-surface);
	border-radius: 50%;
	cursor: pointer;
	font-size: 1rem;
	line-height: 1;
	color: var(--hotelbro-text);
	padding: 0;
}

.cs-reservation-form .cs-quantity button:hover {
	background: var(--hotelbro-bg);
	border-color: var(--hotelbro-primary);
}

.cs-reservation-form .cs-quantity input {
	width: 40px;
	text-align: center;
	border: none;
	background: transparent;
	font-size: 1rem;
	color: var(--hotelbro-text);
}

.cs-reservation-form .cs-submit {
	flex: 0 0 auto;
	padding: 0;
	border-right: none;
}

.cs-reservation-form .cs-submit .button {
	padding: 0.75rem 1.5rem;
	background-color: #fff !important;
	color: #1a56db !important;
	font-weight: 600;
	font-size: 1rem;
	border: none !important;
	border-radius: 0 !important;
	cursor: pointer;
	white-space: nowrap;
	height: 100%;
	min-height: 60px;
}

.cs-reservation-form .cs-submit .button:hover,
.cs-reservation-form .cs-submit .button:focus {
	background-color: #1a56db !important;
	color: #fff !important;
}

.cs-reservation-form .cs-btn-color-black {
	background-color: #1f2937 !important;
	color: #fff !important;
}

.cs-reservation-form .cs-btn-rounded {
	border-radius: 9999px !important;
}

@media (max-width: 768px) {
	.cs-reservation-form .cs-form-wrap {
		flex-direction: column;
	}
	.cs-reservation-form .cs-form-field {
		border-right: none;
		border-bottom: 1px solid var(--hotelbro-border);
		min-width: 100%;
	}
	.cs-reservation-form .cs-form-field:last-child {
		border-bottom: none;
	}
}

/* ── Search results page layout ── */
.hotelbro-search-results-page {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1rem;
	font-family: var(--hotelbro-font);
	color: var(--hotelbro-text);
}

.hotelbro-search-results-header {
	margin-bottom: 1.5rem;
}

.hotelbro-search-results-header h1 {
	font-size: 1.75rem;
	margin: 0 0 0.5rem;
}

.hotelbro-search-summary {
	color: var(--hotelbro-text-muted);
	margin: 0;
}

.hotelbro-search-results-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 2rem;
	align-items: start;
}

.hotelbro-search-results-main {
	min-width: 0;
}

.hotelbro-search-results-sidebar {
	min-width: 0;
}

.hotelbro-search-form-sticky {
	position: sticky;
	top: 1rem;
	background: var(--hotelbro-surface);
	border: 1px solid var(--hotelbro-border);
	border-radius: var(--hotelbro-radius);
	padding: 1rem;
	box-shadow: var(--hotelbro-shadow);
}

.hotelbro-search-form-sticky h3 {
	margin: 0 0 0.75rem;
	font-size: 1.125rem;
}

.hotelbro-no-results {
	background: var(--hotelbro-surface);
	border: 1px solid var(--hotelbro-border);
	border-radius: var(--hotelbro-radius);
	padding: 2rem;
	text-align: center;
}

.hotelbro-no-results h2 {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
}

.hotelbro-results-count {
	margin-bottom: 1rem;
	color: var(--hotelbro-text-muted);
	font-size: 0.95rem;
}

.hotelbro-room-card .hotelbro-room-actions {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-top: 0.5rem;
}

.hotelbro-room-card .hotelbro-room-total {
	display: block;
	margin-top: 0.25rem;
	color: var(--hotelbro-text-muted);
}

@media (max-width: 900px) {
	.hotelbro-search-results-layout {
		grid-template-columns: 1fr;
	}
	.hotelbro-search-form-sticky {
		position: static;
	}
}

/* Featured Amenity (hero card) */
.hotelbro-featured-amenity {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	align-items: stretch;
	margin: 1rem 0 1.25rem;
	padding: 0;
	background: #fff;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: var(--hotelbro-radius, 8px);
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.hotelbro-featured-amenity-image {
	flex: 0 0 38%;
	max-width: 38%;
	overflow: hidden;
	background: #f3f4f6;
}

.hotelbro-featured-amenity-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hotelbro-featured-amenity-body {
	flex: 1 1 auto;
	padding: 1rem 1.25rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hotelbro-featured-amenity-label {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #b08a3e;
	margin-bottom: 0.4rem;
}

.hotelbro-featured-amenity-name {
	margin: 0 0 0.35rem;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--hotelbro-text, #1f2937);
}

.hotelbro-featured-amenity-name i {
	color: var(--hotelbro-primary, #1a56db);
	margin-right: 0.4rem;
}

.hotelbro-featured-amenity-desc {
	margin: 0;
	font-size: 0.9rem;
	color: var(--hotelbro-text-muted, #4b5563);
	line-height: 1.45;
}

.hotelbro-featured-amenity--compact {
	flex-direction: column;
	margin: 0.75rem 0;
	font-size: 0.85rem;
}

.hotelbro-featured-amenity--compact .hotelbro-featured-amenity-image {
	flex: 0 0 auto;
	max-width: 100%;
	height: 140px;
}

.hotelbro-featured-amenity--compact .hotelbro-featured-amenity-body {
	padding: 0.75rem;
}

@media (max-width: 540px) {
	.hotelbro-featured-amenity {
		flex-direction: column;
	}
	.hotelbro-featured-amenity-image {
		flex: 0 0 180px;
		max-width: 100%;
		height: 180px;
	}
}

/* Amenity groups (Free Amenity + Facility split) */
.hotelbro-amenity-group {
	margin: 0.85rem 0;
}

.hotelbro-amenity-group-title {
	margin: 0 0 0.4rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--hotelbro-text-muted, #4b5563);
}

.hotelbro-amenity-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.4rem 1rem;
}

.hotelbro-amenity-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.92rem;
	color: var(--hotelbro-text, #1f2937);
}

.hotelbro-amenity-item i {
	color: var(--hotelbro-primary, #1a56db);
	width: 1.1em;
	text-align: center;
}

.hotelbro-amenity-group--facility .hotelbro-amenity-group-title {
	color: #0f766e;
}

.hotelbro-amenity-group--facility .hotelbro-amenity-item i {
	color: #0f766e;
}

.hotelbro-amenity-group--compact .hotelbro-amenity-list {
	grid-template-columns: 1fr;
	gap: 0.25rem;
}

.hotelbro-amenity-group--compact .hotelbro-amenity-item {
	font-size: 0.82rem;
}

@media (max-width: 540px) {
	.hotelbro-amenity-list {
		grid-template-columns: 1fr;
	}
}

/* ── Room card feature pills (room size / bed size) ── */
.hotelbro-room-card-features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.hotelbro-feature-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.25rem 0.75rem;
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--hotelbro-text, #1f2937);
	background: var(--hotelbro-bg, #f8fafc);
	border: 1px solid var(--hotelbro-border, #e2e8f0);
	border-radius: 9999px;
	white-space: nowrap;
	line-height: 1.5;
}

.hotelbro-feature-pill i {
	color: var(--hotelbro-primary, #1a56db);
	font-size: 0.85rem;
}

/* ── Room Gallery Horizontal Slider ── */
.hotelbro-room-gallery {
	position: relative;
	width: 100%;
	height: 450px;
	overflow: hidden;
	border-radius: 12px;
	background: #f1f5f9;
}

.hotelbro-room-gallery-viewport {
	width: 100%;
	height: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.hotelbro-room-gallery-viewport::-webkit-scrollbar { display: none; }

.hotelbro-room-gallery-track {
	display: flex;
	height: 100%;
}

.hotelbro-room-gallery-slide {
	flex: 0 0 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	scroll-snap-align: start;
}

.hotelbro-room-gallery-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 12px;
}

/* Navigation arrows */
.hotelbro-gallery-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	font-size: 1.1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, transform 0.2s, opacity 0.2s;
	opacity: 0;
	pointer-events: none;
}

.hotelbro-room-gallery:hover .hotelbro-gallery-arrow,
.hotelbro-room-gallery:focus-within .hotelbro-gallery-arrow {
	opacity: 1;
	pointer-events: auto;
}

.hotelbro-gallery-arrow:hover {
	background: rgba(0, 0, 0, 0.7);
	transform: translateY(-50%) scale(1.08);
}

.hotelbro-gallery-arrow:active {
	transform: translateY(-50%) scale(0.95);
}

.hotelbro-gallery-arrow--prev {
	left: 16px;
}

.hotelbro-gallery-arrow--next {
	right: 16px;
}

/* Pagination dots */
.hotelbro-gallery-dots {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 8px;
	align-items: center;
}

.hotelbro-gallery-dot {
	width: 10px;
	height: 10px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	padding: 0;
	transition: background 0.3s, transform 0.3s;
}

.hotelbro-gallery-dot:hover {
	background: rgba(255, 255, 255, 0.7);
	transform: scale(1.2);
}

.hotelbro-gallery-dot.is-active {
	background: #fff;
	transform: scale(1.25);
}

/* Price badge overlay on gallery */
.hotelbro-sr-price-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 10;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(8px);
	color: #fff;
	padding: 10px 18px;
	border-radius: 10px;
	text-align: center;
	line-height: 1.3;
	pointer-events: none;
}

.hotelbro-sr-price-amount {
	display: block;
	font-size: 1.4rem;
	font-weight: 700;
}

.hotelbro-sr-price-period {
	display: block;
	font-size: 0.75rem;
	font-weight: 400;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* Single room hero layout */
.hotelbro-sr-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: start;
	margin-bottom: 2.5rem;
}

.hotelbro-sr-gallery {
	height: 500px;
	border-radius: 14px;
}

.hotelbro-sr-hero-info {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.hotelbro-sr-room-type {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--hotelbro-primary, #1a56db);
	margin-bottom: 0.25rem;
}

.hotelbro-sr-title {
	font-size: 2rem;
	font-weight: 700;
	margin: 0;
	line-height: 1.2;
	color: var(--hotelbro-text, #1e293b);
}

.hotelbro-sr-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hotelbro-sr-meta-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	color: var(--hotelbro-text-muted, #64748b);
}

.hotelbro-sr-meta-item i {
	color: var(--hotelbro-primary, #1a56db);
	width: 1.1em;
	text-align: center;
}

.hotelbro-sr-featured {
	display: flex;
	gap: 1rem;
	padding: 1rem;
	background: var(--hotelbro-surface, #fff);
	border: 1px solid var(--hotelbro-border, #e2e8f0);
	border-radius: 10px;
}

.hotelbro-sr-featured-image {
	flex: 0 0 100px;
	overflow: hidden;
	border-radius: 8px;
}

.hotelbro-sr-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hotelbro-sr-featured-body {
	flex: 1;
}

.hotelbro-sr-featured-label {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #b08a3e;
}

.hotelbro-sr-featured-name {
	margin: 0.25rem 0;
	font-size: 1rem;
	font-weight: 600;
}

.hotelbro-sr-featured-desc {
	margin: 0;
	font-size: 0.85rem;
	color: var(--hotelbro-text-muted, #64748b);
}

.hotelbro-sr-price-row {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	padding: 1rem 0;
	border-top: 1px solid var(--hotelbro-border, #e2e8f0);
}

.hotelbro-sr-price-from {
	font-size: 0.9rem;
	color: var(--hotelbro-text-muted, #64748b);
}

.hotelbro-sr-price-value {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--hotelbro-text, #1e293b);
}

.hotelbro-sr-price-per {
	font-size: 0.85rem;
	color: var(--hotelbro-text-muted, #64748b);
}

.hotelbro-sr-book-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 2rem;
	background: var(--hotelbro-primary, #1a56db);
	color: #fff;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s, transform 0.15s;
	align-self: flex-start;
}

.hotelbro-sr-book-btn:hover {
	background: var(--hotelbro-primary-hover, #1e40af);
	color: #fff;
	transform: translateY(-1px);
}

/* Section titles */
.hotelbro-sr-section-title {
	font-size: 1.4rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
}

.hotelbro-sr-section-sub {
	margin: 0 0 1rem;
	font-size: 0.9rem;
	color: var(--hotelbro-text-muted, #64748b);
}

.hotelbro-sr-description,
.hotelbro-sr-amenities,
.hotelbro-sr-booking {
	margin-bottom: 2.5rem;
}

.hotelbro-sr-description-body {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--hotelbro-text, #1e293b);
	max-width: 720px;
}

.hotelbro-sr-amenities {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

@media (max-width: 900px) {
	.hotelbro-sr-hero {
		grid-template-columns: 1fr;
	}
	.hotelbro-sr-gallery {
		height: 350px;
	}
	.hotelbro-sr-amenities {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 540px) {
	.hotelbro-sr-gallery {
		height: 280px;
	}
	.hotelbro-sr-title {
		font-size: 1.5rem;
	}
	.hotelbro-gallery-arrow {
		width: 36px;
		height: 36px;
		font-size: 0.9rem;
	}
}

.hotelbro-section {
	margin-bottom: 2rem;
}

.hotelbro-selected-room-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.25rem;
	background: var(--hotelbro-bg);
	border: 2px solid var(--hotelbro-primary);
	border-radius: var(--hotelbro-radius);
}

.hotelbro-selected-room-info h3 {
	margin: 0 0 0.25rem;
	font-size: 1.125rem;
}

.hotelbro-selected-room-info .hotelbro-room-type {
	color: var(--hotelbro-text-muted);
	font-size: 0.875rem;
	margin: 0 0 0.5rem;
}

.hotelbro-selected-room-info .hotelbro-room-dates,
.hotelbro-selected-room-info .hotelbro-room-guests {
	margin: 0.125rem 0;
	font-size: 0.875rem;
}

.hotelbro-selected-room-price .hotelbro-price {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--hotelbro-primary);
	white-space: nowrap;
}

/* ============================================================
   HBS — Modern Luxury Booking Form
   All styles are scoped under .hbs-form to avoid conflicts.
   ============================================================ */

.hbs-form {
	font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
	max-width: 1200px;
	margin: 0 auto;
	padding: 1.5rem 1rem;
	color: var(--hbs-text);
}

/* ── Card Container ── */
.hbs-form__card {
	background: var(--hbs-surface);
	border: 1px solid var(--hbs-border);
	border-radius: var(--hbs-radius);
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

/* ── Form Row ── */
.hbs-form__wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 0;
	position: relative;
}

/* ── Individual Fields ── */
.hbs-field {
	flex: 1 1 0;
	min-width: 140px;
	display: flex;
	align-items: stretch;
	border-right: 1px solid var(--hbs-border);
	position: relative;
	transition: background 0.2s ease;
}

.hbs-field:last-of-type {
	border-right: none;
}

.hbs-field--hidden {
	display: none;
}

.hbs-field__inner {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem 1rem;
	width: 100%;
	transition: background 0.2s ease;
}

.hbs-field:hover .hbs-field__inner {
	background: var(--hbs-surface-hover);
}

/* ── Icons ── */
.hbs-field__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: var(--hbs-radius-sm);
	background: rgba(255,255,255,0.04);
	color: var(--hbs-accent);
	transition: background 0.2s ease, color 0.2s ease;
}

.hbs-field:hover .hbs-field__icon {
	background: rgba(200,168,124,0.12);
	color: var(--hbs-accent-hover);
}

/* ── Content ── */
.hbs-field__content {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.hbs-field__label {
	font-size: 0.65rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--hbs-text-secondary);
	transition: color 0.2s ease;
	line-height: 1;
}

.hbs-field:hover .hbs-field__label {
	color: var(--hbs-text);
}

/* ── Date Inputs ── */
.hbs-field__input {
	-webkit-appearance: none;
	appearance: none;
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--hbs-text);
	outline: none;
	box-shadow: none;
	border-radius: 0;
	width: 100%;
	font-family: inherit;
	line-height: 1.4;
	cursor: pointer;
}

.hbs-field__input::-webkit-calendar-picker-indicator {
	opacity: 0.4;
	cursor: pointer;
	filter: invert(1);
	transition: opacity 0.2s ease;
}

.hbs-field__input::-webkit-calendar-picker-indicator:hover {
	opacity: 0.8;
}

.hbs-field__input:focus {
	outline: none;
}

/* ── hbsr Date Inputs (clean text-like, no calendar icon) ── */
.hbsr-date-input {
	appearance: textfield;
	-moz-appearance: textfield;
	-webkit-appearance: none;
	border: none;
	background: transparent;
	padding: 0;
	margin: 0;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--hbs-text);
	outline: none;
	box-shadow: none;
	border-radius: 0;
	width: 100%;
	font-family: inherit;
	line-height: 1.4;
	cursor: pointer;
	min-height: unset;
	height: auto;
}

.hbsr-date-input::-webkit-calendar-picker-indicator {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	cursor: pointer;
}

.hbsr-date-input::-webkit-clear-button,
.hbsr-date-input::-webkit-inner-spin-button {
	display: none !important;
	-webkit-appearance: none !important;
}

.hbsr-date-input:focus {
	outline: none;
}

/* ── Stepper (quantity controls) ── */
.hbs-stepper {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	background: rgba(255,255,255,0.04);
	border-radius: 8px;
	padding: 2px;
	user-select: none;
}

.hbs-stepper__value {
	min-width: 1.5rem;
	text-align: center;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--hbs-text);
	line-height: 1;
	padding: 0 0.15rem;
}

.hbs-stepper__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border: none;
	border-radius: 6px;
	background: transparent;
	color: var(--hbs-text-secondary);
	cursor: pointer;
	transition: all 0.15s ease;
	padding: 0;
	line-height: 1;
}

.hbs-stepper__btn:hover {
	background: rgba(255,255,255,0.08);
	color: var(--hbs-text);
}

.hbs-stepper__btn:active {
	background: rgba(255,255,255,0.12);
	transform: scale(0.92);
}

/* ── Guest Selector ── */
.hbs-guest-selector {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.hbs-guest-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.hbs-guest-row--hidden {
	display: none;
}

.hbs-guest-row__label {
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--hbs-text-secondary);
	white-space: nowrap;
}

/* ── Submit Button ── */
.hbs-field--submit {
	flex: 0 0 auto;
	border-right: none;
	padding: 0;
}

#hbs-form .hbs-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	height: 100%;
	padding: 0.875rem 1.5rem;
	border: none;
	background: var(--hbs-accent);
	color: #0f1419;
	font-size: 0.85rem;
	font-weight: 600;
	font-family: inherit;
	letter-spacing: 0.01em;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
	min-height: 64px;
	position: relative;
	overflow: hidden;
	border-radius: 0;
	box-shadow: none;
	outline: none;
	text-shadow: none;
	line-height: 1.4;
	text-decoration: none;
	text-transform: none;
}

#hbs-form .hbs-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
	pointer-events: none;
}

#hbs-form .hbs-btn:hover {
	background: var(--hbs-accent-hover);
	color: #0f1419;
	transform: translateX(1px);
}

#hbs-form .hbs-btn:active {
	transform: translateX(0) scale(0.98);
}

#hbs-form .hbs-btn__arrow {
	transition: transform 0.2s ease;
	display: inline-block;
	vertical-align: middle;
}

#hbs-form .hbs-btn:hover .hbs-btn__arrow {
	transform: translateX(3px);
}

#hbs-form .hbs-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

/* ── Results Container ── */
.hbs-results {
	margin-top: 1.5rem;
}

/* ── Responsive ── */
@media (max-width: 820px) {
	.hbs-form__wrap {
		flex-direction: column;
	}

	.hbs-field {
		border-right: none;
		border-bottom: 1px solid var(--hbs-border);
		min-width: 100%;
	}

	.hbs-field:last-of-type {
		border-bottom: none;
	}

	.hbs-field--submit {
		border-bottom: none;
	}

	#hbs-form .hbs-btn {
		justify-content: center;
		min-height: 52px;
		width: 100%;
	}

	.hbs-field__inner {
		padding: 0.75rem 1rem;
	}
}

@media (max-width: 480px) {
	.hbs-form {
		padding: 0.75rem 0.5rem;
	}

	.hbs-form__card {
		border-radius: 12px;
	}

	.hbs-field__inner {
		padding: 0.625rem 0.75rem;
		gap: 0.5rem;
	}

	.hbs-field__icon {
		width: 30px;
		height: 30px;
	}

	.hbs-field__icon svg {
		width: 15px;
		height: 15px;
	}

	#hbs-form .hbs-btn {
		padding: 0.75rem 1rem;
		min-height: 46px;
		font-size: 0.8rem;
	}
}

/* ── Light mode override ── */
@media (prefers-color-scheme: light) {
	:root {
		--hbs-bg: var(--e-global-color-background, #f5f5f0);
		--hbs-surface: var(--e-global-color-secondary, #ffffff);
		--hbs-surface-hover: var(--e-global-color-secondary, #fafaf8);
		--hbs-border: rgba(0,0,0,0.08);
		--hbs-border-focus: rgba(0,0,0,0.18);
		--hbs-text: var(--e-global-color-text, #1a1a1a);
		--hbs-text-secondary: rgba(0,0,0,0.45);
		--hbs-accent: var(--e-global-color-accent, #b8945c);
		--hbs-accent-hover: var(--e-global-color-accent, #a07e4a);
	}

	.hbs-field__icon {
		background: rgba(0,0,0,0.035);
	}

	.hbs-field:hover .hbs-field__icon {
		background: rgba(184,148,92,0.1);
	}

	.hbs-field__input::-webkit-calendar-picker-indicator {
		filter: none;
		opacity: 0.3;
	}

	.hbs-stepper {
		background: rgba(0,0,0,0.035);
	}

	.hbs-stepper__btn:hover {
		background: rgba(0,0,0,0.06);
	}

	.hbs-field:hover .hbs-field__inner {
		background: var(--hbs-surface-hover);
	}

	#hbs-form .hbs-btn {
		color: #fff;
	}

	#hbs-form .hbs-btn::before {
		background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 50%);
	}
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
	.hbs-field__inner,
	.hbs-field__icon,
	.hbs-field__label,
	.hbs-stepper__btn,
	#hbs-form .hbs-btn,
	#hbs-form .hbs-btn__arrow {
		transition: none;
	}

	#hbs-form .hbs-btn:hover {
		transform: none;
	}

	#hbs-form .hbs-btn:hover .hbs-btn__arrow {
		transform: none;
	}
}

/* ═══════════════════════════════════════════════════════════════════ */
/* MODERN CHECKOUT PAGE STYLING                                         */
/* ═══════════════════════════════════════════════════════════════════ */

/* Modern Step Indicator */
.hotelbro-booking-steps-modern {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	margin: 0 0 3rem 0;
	padding: 2rem;
	background: linear-gradient(135deg, #f8fafc 0%, #eef2f5 100%);
	border-radius: 16px;
	flex-wrap: wrap;
}

.hotelbro-step-modern {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	text-align: center;
	min-width: fit-content;
}

.hotelbro-step-circle {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--hotelbro-border);
	font-weight: 700;
	color: var(--hotelbro-text-muted);
	font-size: 1.125rem;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.hotelbro-step-modern.active .hotelbro-step-circle {
	background: linear-gradient(135deg, var(--hotelbro-primary) 0%, #1e40af 100%);
	color: white;
	border-color: var(--hotelbro-primary);
	box-shadow: 0 8px 20px rgba(26, 86, 219, 0.25);
	transform: scale(1.1);
}

.hotelbro-step-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--hotelbro-text-muted);
	letter-spacing: 0.02em;
	transition: all 0.3s ease;
}

.hotelbro-step-modern.active .hotelbro-step-label {
	color: var(--hotelbro-primary);
	font-weight: 700;
}

.hotelbro-step-line {
	flex: 0 0 1.5rem;
	height: 2px;
	background: var(--hotelbro-border);
	transition: all 0.3s ease;
}

.hotelbro-step-modern.active ~ .hotelbro-step-line {
	background: var(--hotelbro-primary);
}

/* Modern Alert */
.hotelbro-alert-modern {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 1.5rem;
	border-radius: 12px;
	border-left: 4px solid;
	margin-bottom: 2rem;
	background-color: #fef3f2;
	border-color: var(--hotelbro-warning);
	animation: slideInDown 0.4s ease;
}

.hotelbro-alert-icon {
	font-size: 1.75rem;
	min-width: fit-content;
	display: flex;
	align-items: center;
}

.hotelbro-alert-content {
	flex: 1;
}

.hotelbro-alert-title {
	margin: 0 0 0.5rem 0;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--hotelbro-danger);
}

.hotelbro-alert-message {
	margin: 0;
	font-size: 0.95rem;
	color: #6b3422;
	line-height: 1.5;
}

@keyframes slideInDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Modern Section Headers */
.hotelbro-section-modern {
	background: var(--hotelbro-surface);
	border-radius: 12px;
	padding: 2rem;
	margin-bottom: 2rem;
	border: 1px solid var(--hotelbro-border);
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hotelbro-section-modern:hover {
	border-color: #d4d8e0;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.hotelbro-section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid var(--hotelbro-border);
}

.hotelbro-section-header h2 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--hotelbro-text);
	letter-spacing: -0.01em;
}

.hotelbro-section-badge {
	display: inline-block;
	background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
	color: var(--hotelbro-primary);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

/* Modern Form Elements */
.hotelbro-form-modern {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.hotelbro-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.hotelbro-form-row.full {
	grid-template-columns: 1fr;
}

.hotelbro-form-group,
.hotelbro-form-group-modern {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.hotelbro-form-group label,
.hotelbro-form-group-modern label {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--hotelbro-text);
	letter-spacing: -0.01em;
}

.hotelbro-form-group label .required,
.hotelbro-form-group-modern label .required {
	color: var(--hotelbro-danger);
	margin-left: 2px;
}

.hotelbro-form-group label .optional,
.hotelbro-form-group-modern label .optional {
	color: var(--hotelbro-text-muted);
	font-size: 0.85em;
	font-weight: 400;
}


.hotelbro-form-group input,
.hotelbro-form-group textarea,
.hotelbro-form-group-modern input,
.hotelbro-form-group-modern textarea {
	padding: 0.875rem 1rem;
	border: 1.5px solid var(--hotelbro-border);
	border-radius: 8px;
	font-size: 1rem;
	font-family: var(--hotelbro-font);
	color: var(--hotelbro-text);
	background: var(--hotelbro-surface);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	outline: none;
}

.hotelbro-form-group input:focus,
.hotelbro-form-group textarea:focus,
.hotelbro-form-group-modern input:focus,
.hotelbro-form-group-modern textarea:focus {
	border-color: var(--hotelbro-primary);
	background: #f8fdff;
	box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.hotelbro-form-group input::placeholder,
.hotelbro-form-group textarea::placeholder,
.hotelbro-form-group-modern input::placeholder,
.hotelbro-form-group-modern textarea::placeholder {
	color: var(--hotelbro-text-muted);
	opacity: 0.6;
}

/* Modern Room Card */
.hotelbro-room-summary-card-modern {
	background: linear-gradient(135deg, #f8fafc 0%, #eef2f5 100%);
	border-radius: 12px;
	padding: 1.5rem;
	border: 1px solid #dae1e7;
	transition: all 0.3s ease;
}

.hotelbro-room-summary-card-modern:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	border-color: var(--hotelbro-primary);
}

.hotelbro-room-name {
	margin: 0 0 0.5rem 0;
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--hotelbro-text);
	letter-spacing: -0.01em;
}

.hotelbro-room-type {
	display: inline-block;
	background: var(--hotelbro-primary);
	color: white;
	padding: 0.375rem 0.875rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.hotelbro-room-amenities-preview {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.hotelbro-badge {
	display: inline-block;
	background: white;
	border: 1px solid var(--hotelbro-border);
	color: var(--hotelbro-text-muted);
	padding: 0.35rem 0.75rem;
	border-radius: 16px;
	font-size: 0.8rem;
	font-weight: 500;
	transition: all 0.2s ease;
}

.hotelbro-badge:hover {
	background: var(--hotelbro-primary);
	color: white;
	border-color: var(--hotelbro-primary);
}

.hotelbro-reservation-details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1.5rem;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 2px solid #dae1e7;
}

.hotelbro-detail-item {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.hotelbro-detail-label {
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--hotelbro-text-muted);
}

.hotelbro-detail-value {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--hotelbro-text);
	letter-spacing: -0.01em;
}

/* Modern Extras Grid */
.hotelbro-extras-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}

/* Modern Buttons */
.hotelbro-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 1.5rem;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	font-family: var(--hotelbro-font);
	border: none;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	letter-spacing: -0.01em;
	text-decoration: none;
	white-space: nowrap;
}

.hotelbro-btn-primary {
	background: linear-gradient(135deg, var(--hotelbro-primary) 0%, #1e40af 100%);
	color: white;
	box-shadow: 0 4px 12px rgba(26, 86, 219, 0.3);
}

.hotelbro-btn-primary:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(26, 86, 219, 0.4);
	background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.hotelbro-btn-primary:active:not(:disabled) {
	transform: translateY(0);
}

.hotelbro-btn-outline,
.hotelbro-btn-secondary {
	background: var(--hotelbro-surface);
	color: var(--hotelbro-primary);
	border: 2px solid var(--hotelbro-primary);
}

.hotelbro-btn-outline:hover:not(:disabled),
.hotelbro-btn-secondary:hover:not(:disabled) {
	background: var(--hotelbro-primary);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(26, 86, 219, 0.2);
}

.hotelbro-btn-large {
	padding: 1rem 2rem;
	font-size: 1.0625rem;
	border-radius: 10px;
}

.hotelbro-btn-small {
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
	border-radius: 6px;
}

.hotelbro-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Modern Checkout Actions */
.hotelbro-checkout-actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 2px solid var(--hotelbro-border);
}

.hotelbro-checkout-notice {
	margin: 0;
	font-size: 0.875rem;
	color: var(--hotelbro-text-muted);
	text-align: center;
	letter-spacing: -0.01em;
}

/* Modern Terms Checkbox */
.hotelbro-terms {
	margin: 1rem 0;
}

.hotelbro-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.95rem;
	color: var(--hotelbro-text);
	cursor: pointer;
	user-select: none;
}

.hotelbro-checkbox-label input[type="checkbox"] {
	width: 1.25rem;
	height: 1.25rem;
	margin-top: 0.15rem;
	cursor: pointer;
	accent-color: var(--hotelbro-primary);
}

.hotelbro-checkbox-label a {
	color: var(--hotelbro-primary);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.2s ease;
}

.hotelbro-checkbox-label a:hover {
	text-decoration: underline;
	color: #1e40af;
}

/* Modern Coupon Group */
.hotelbro-coupon-group {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.hotelbro-coupon-input-wrap {
	display: flex;
	gap: 0.75rem;
}

.hotelbro-coupon-input-wrap input {
	flex: 1;
	padding: 0.875rem 1rem;
	border: 1.5px solid var(--hotelbro-border);
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.hotelbro-coupon-input-wrap input:focus {
	border-color: var(--hotelbro-primary);
	box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.hotelbro-coupon-message {
	font-size: 0.875rem;
	margin-top: 0.25rem;
	min-height: 1.25rem;
}

/* Modern Layout */
.hotelbro-booking-layout {
	display: grid;
	grid-template-columns: 1fr 350px;
	gap: 2rem;
}

.hotelbro-booking-main {
	flex: 1;
}

.hotelbro-booking-sidebar {
	position: sticky;
	top: 2rem;
	height: fit-content;
}

.hotelbro-price-breakdown-card {
	background: linear-gradient(135deg, #f8fafc 0%, #eef2f5 100%);
	border-radius: 12px;
	padding: 1.75rem;
	border: 1px solid var(--hotelbro-border);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.hotelbro-price-breakdown-card h3 {
	margin: 0 0 1.25rem 0;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--hotelbro-text);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.hotelbro-booking-layout {
		grid-template-columns: 1fr;
	}

	.hotelbro-booking-sidebar {
		position: static;
	}

	.hotelbro-form-row {
		grid-template-columns: 1fr;
	}

	.hotelbro-booking-steps-modern {
		gap: 1rem;
		padding: 1.5rem;
	}
}

@media (max-width: 640px) {
	.hotelbro-section-modern {
		padding: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.hotelbro-section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.hotelbro-booking-steps-modern {
		gap: 0.75rem;
		padding: 1rem;
	}

	.hotelbro-step-modern {
		gap: 0.5rem;
	}

	.hotelbro-step-circle {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.hotelbro-step-label {
		font-size: 0.75rem;
	}

	.hotelbro-step-line {
		flex: 0 0 0.75rem;
		height: 1px;
	}

	.hotelbro-extras-grid {
		grid-template-columns: 1fr;
	}

	.hotelbro-checkout-actions {
		flex-direction: column-reverse;
	}
}

/* ═══════════════════════════════════════════════════════════════════
   HBSR — Single Room Reservation Card (dark theme, gold accents)
   ═══════════════════════════════════════════════════════════════════ */

.hbsr-card {
	background: var(--hbs-surface);
	border: 1px solid var(--hbs-border);
	border-radius: var(--hbs-radius);
	padding: 1.5rem;
	font-family: var(--e-global-typography-text-font-family, 'Instrument Sans'), -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
	font-size: var(--e-global-typography-text-font-size, 0.9375rem);
	font-weight: var(--e-global-typography-text-font-weight, 400);
	line-height: var(--e-global-typography-text-line-height, 1.5);
	color: var(--hbs-text);
}

.hbsr-card .hotelbro-reservation-form {
	margin: 0;
}

/* ── Header ── */
.hbsr-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 1.25rem;
}

.hbsr-header-label {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 1rem;
	font-weight: 400;
	color: var(--hbs-text);
	letter-spacing: 0.04em;
}

.hbsr-header-price {
	font-size: 0.8rem;
	text-align: right;
}

.hbsr-header-from {
	color: var(--hbs-text-secondary);
}

.hbsr-header-amount {
	color: var(--hbs-text);
	font-weight: 700;
}

/* ── Fields ── */
.hbsr-field {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0.75rem 1rem;
	margin-bottom: 0.5rem;
	border: 1px solid var(--hbs-accent);
	border-radius: var(--hbs-radius-sm);
	background: var(--hbs-bg);
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.hbsr-field:hover {
	border-color: var(--hbs-accent-hover);
	background: var(--hbs-surface-hover);
}

.hbsr-field-label {
	position: absolute;
	top: 0.4rem;
	left: 1rem;
	font-size: 0.6rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--hbs-text-secondary);
	pointer-events: none;
	line-height: 1;
}

.hbsr-field-input,
.hbsr-field-select {
	-webkit-appearance: none;
	appearance: none;
	border: none;
	background: transparent;
	padding: 0.65rem 0 0;
	margin: 0;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--hbs-text);
	outline: none;
	box-shadow: none;
	border-radius: 0;
	width: 100%;
	font-family: inherit;
	cursor: pointer;
}


.hbsr-field-select option {
	background: var(--hbs-surface);
	color: var(--hbs-text);
}

/* ── Chevron ── */
.hbsr-chevron {
	position: absolute;
	right: 0.85rem;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	pointer-events: none;
}

.hbsr-chevron::after {
	content: '';
	position: absolute;
	top: 1px;
	left: 0;
	width: 7px;
	height: 7px;
	border: 2px solid var(--hbs-text-secondary);
	border-top: none;
	border-left: none;
	transform: rotate(45deg);
	transition: border-color 0.2s ease;
}

.hbsr-field:hover .hbsr-chevron::after {
	border-color: var(--hbs-text);
}

/* ── Two-column row (Adults / Children) ── */
.hbsr-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.hbsr-field--half {
	margin-bottom: 0;
}

/* ── Divider ── */
.hbsr-divider {
	height: 1px;
	background: var(--hbs-border);
	margin: 0.75rem 0;
}

/* ── Total Cost row ── */
.hbsr-total-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0;
}

.hbsr-total-label {
	display: flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--hbs-text-secondary);
}

.hbsr-total-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	color: inherit;
	width: 16px;
	height: 16px;
}

.hbsr-total-chevron {
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid var(--hbs-text-secondary);
	transition: transform 0.2s ease;
}

.hbsr-total-chevron.is-open {
	transform: rotate(180deg);
}

.hbsr-total-value {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--hbs-text);
}

/* ── Breakdown ── */
.hbsr-breakdown {
	padding: 0 0 0.5rem 1.5rem;
}

.hbsr-breakdown-text {
	font-size: 0.78rem;
	color: var(--hbs-text-secondary);
	line-height: 1.4;
}

/* ── Submit button ── */
.hbsr-submit-btn {
	display: block;
	width: 100%;
	margin-top: 1rem;
	padding: 0.85rem 1.5rem;
	border: none;
	border-radius: var(--hbs-radius-sm);
	background: var(--hbs-accent);
	color: var(--hbs-bg);
	font-family: var(--e-global-typography-button-font-family, inherit);
	font-size: var(--e-global-typography-button-font-size, 0.9rem);
	font-weight: var(--e-global-typography-button-font-weight, 600);
	line-height: var(--e-global-typography-button-line-height, 1.3);
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease;
	text-align: center;
}

.hbsr-submit-btn:hover {
	background: var(--hbs-accent-hover);
	transform: translateY(-1px);
}

.hbsr-submit-btn:active {
	transform: translateY(0);
}

/* ── Form message (inline toast) ── */
.hbsr-form-message {
	display: none;
	padding: 0.75rem 1rem;
	border-radius: var(--hbs-radius-sm);
	font-size: var(--e-global-typography-text-font-size, 0.875rem);
	margin-bottom: 0.75rem;
	line-height: 1.4;
}
.hbsr-form-message--error {
	background: #fef2f2;
	color: #b91c1c;
	border: 1px solid #fecaca;
}
.hbsr-form-message--success {
	background: #f0fdf4;
	color: #15803d;
	border: 1px solid #bbf7d0;
}

/* ── Extras list inside reservation card ── */
.hbsr-extras-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.hbsr-extra-item {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.6rem 0.75rem;
	background: var(--hbs-bg);
	border: 1px solid var(--hbs-border);
	border-radius: var(--hbs-radius-sm);
	cursor: pointer;
	transition: all 0.15s ease;
	user-select: none;
}

.hbsr-extra-item:hover {
	border-color: var(--hbs-accent);
	background: var(--hbs-surface-hover);
}

.hbsr-extra-item:has(input:checked) {
	border-color: var(--hbs-accent);
	background: rgba(200,168,124,0.08);
}

.hbsr-extra-item input[type="checkbox"] {
	accent-color: var(--hbs-accent);
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
	cursor: pointer;
}

.hbsr-extra-name {
	flex: 1;
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--hbs-text);
	line-height: 1.3;
}

.hbsr-extra-price-label {
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--hbs-accent);
	white-space: nowrap;
	flex-shrink: 0;
}

.hbsr-extras-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	width: 100%;
	padding: 0.5rem;
	margin-top: 0.25rem;
	border: 1px dashed var(--hbs-border);
	border-radius: var(--hbs-radius-sm);
	background: transparent;
	color: var(--hbs-accent);
	font-size: 0.78rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.15s ease;
	font-family: inherit;
}

.hbsr-extras-toggle:hover {
	border-color: var(--hbs-accent);
	background: var(--hbs-surface-hover);
}

.hbsr-extras-toggle-icon {
	font-size: 0.6rem;
	line-height: 1;
}

/* ── Guest info fields inside reservation card ── */
#hbsr-guest-section .hbsr-field-input {
	-webkit-appearance: none;
	appearance: none;
	border: none;
	background: transparent;
	padding: 0.65rem 0 0;
	margin: 0;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--hbs-text);
	outline: none;
	box-shadow: none;
	border-radius: 0;
	width: 100%;
	font-family: inherit;
	cursor: text;
}

#hbsr-guest-section .hbsr-field-input::placeholder {
	color: var(--hbs-text-secondary);
	opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════════════
   HBS Vertical variant — search form in reservation-style layout
   ═══════════════════════════════════════════════════════════════════ */

.hbs-form--vertical {
	max-width: 420px;
	padding: 0;
}

.hbs-form--vertical .hbs-form__card {
	padding: 1.5rem;
}

.hbs-form--vertical .hbs-form__wrap {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.hbs-form--vertical .hbsr-field--hidden {
	display: none;
}

/* ── Responsive ── */
@media (max-width: 480px) {
	.hbsr-card {
		padding: 1rem;
	}

	.hbsr-field {
		padding: 0.65rem 0.85rem;
	}

	.hbsr-field-input,
	.hbsr-field-select {
		font-size: 0.85rem;
	}

	.hbsr-total-value {
		font-size: 1.05rem;
	}
}

