/**
 * Homestay Booking System - Frontend Styles
 * Strict Flat Basic System - No border, No shadow, No border-radius (Flat 0px)
 * System Font, Root Clamp 16-18px
 * Version: 1.5.8
 */

/* Search Bar Shortcode */
.hb-search-bar-wrap {
	width: 100% !important;
	max-width: 100% !important;
	background-color: #0369a1;
	padding: 1.2rem;
	box-sizing: border-box;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-search-form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	align-items: flex-end;
	width: 100% !important;
}

.hb-search-col {
	flex: 1 1 200px;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.hb-search-btn-col {
	flex: 1 1 180px;
}

.hb-search-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #ffffff;
	font-size: 1rem !important;
	font-weight: 600;
}

.hb-search-input {
	width: 100% !important;
	height: 48px;
	padding: 0.6rem 0.9rem;
	background-color: #ffffff;
	color: #0f172a;
	font-size: 1rem !important;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
	box-sizing: border-box;
	outline: none;
}

.hb-search-input:focus {
	background-color: #e0f2fe;
}

.hb-btn-search {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	width: 100% !important;
	height: 48px;
	background-color: #0284c7;
	color: #ffffff;
	font-size: 1.05rem !important;
	font-weight: 700;
	cursor: pointer;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
	transition: background-color 0.2s ease;
}

.hb-btn-search:hover {
	background-color: #0ea5e9;
}

/* Room List Grid */
.hb-room-list-container {
	width: 100% !important;
	max-width: 100% !important;
	margin: 1.5rem 0;
}

.hb-list-filter-bar {
	margin-bottom: 1.5rem;
}

.hb-room-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 1.5rem;
	width: 100% !important;
}

.hb-room-card {
	background-color: #ffffff;
	display: flex;
	flex-direction: column;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
	overflow: hidden;
}

.hb-card-thumb-wrap {
	position: relative;
	width: 100% !important;
	height: 240px;
	background-color: #e2e8f0;
	overflow: hidden;
}

.hb-card-thumb {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	display: block;
	border-radius: 7px !important;
	border: none !important;
}

.hb-card-no-thumb {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #0369a1;
	background-color: #e0f2fe;
	font-size: 1.1rem;
	gap: 0.5rem;
}

.hb-card-badge {
	position: absolute;
	top: 0.8rem;
	left: 0.8rem;
	background-color: #0369a1;
	color: #ffffff;
	padding: 0.35rem 0.8rem;
	font-size: 0.95rem !important;
	font-weight: 700;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-card-body {
	padding: 1.2rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	background-color: #ffffff;
}

.hb-card-title {
	margin: 0 0 0.8rem 0;
	font-size: 1.25rem !important;
	line-height: 1.4;
}

.hb-card-title a {
	color: #0f172a;
	text-decoration: none;
}

.hb-card-title a:hover {
	color: #0284c7;
}

.hb-card-specs {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-bottom: 1rem;
	background-color: #f0f7fc;
	padding: 0.8rem;
}

.hb-spec-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #334155;
	font-size: 0.96rem !important;
}

.hb-card-amenities {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-bottom: 1.2rem;
}

.hb-amenity-chip {
	background-color: #e0f2fe;
	color: #0369a1;
	padding: 0.3rem 0.6rem;
	font-size: 0.92rem !important;
	font-weight: 500;
}

.hb-card-footer {
	margin-top: auto;
	padding-top: 1rem;
	background-color: #f8fafc;
	margin-left: -1.2rem;
	margin-right: -1.2rem;
	margin-bottom: -1.2rem;
	padding: 1rem 1.2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.8rem;
}

.hb-card-pricing {
	display: flex;
	flex-direction: column;
}

.hb-price-label {
	font-size: 0.92rem !important;
	color: #64748b;
}

.hb-price-val {
	font-size: 1.35rem !important;
	font-weight: 700;
	color: #0369a1;
}

.hb-price-unit {
	font-size: 0.92rem !important;
	color: #64748b;
}

.hb-card-actions {
	display: flex;
	gap: 0.5rem;
}

.hb-btn-book {
	background-color: #0284c7;
	color: #ffffff;
	padding: 0.65rem 1.2rem;
	font-size: 1rem !important;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-btn-book:hover {
	background-color: #0369a1;
	color: #ffffff;
}

.hb-btn-detail {
	background-color: #e2e8f0;
	color: #1e293b;
	padding: 0.65rem 1rem;
	font-size: 1rem !important;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-btn-detail:hover {
	background-color: #cbd5e1;
}

/* Empty Notice */
.hb-empty-notice {
	width: 100% !important;
	background-color: #ffffff;
	padding: 2.5rem;
	text-align: center;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-empty-text {
	font-size: 1.15rem !important;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 0.5rem;
}

.hb-empty-sub {
	font-size: 1rem !important;
	color: #64748b;
	margin-bottom: 1.5rem;
}

/* Booking App & Form */
.hb-booking-app {
	width: 100% !important;
	max-width: 100% !important;
	position: relative;
}

.hb-form-columns {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	width: 100% !important;
}

.hb-form-col-left {
	flex: 1 1 600px;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.hb-form-col-right {
	flex: 1 1 350px;
}

.hb-form-card {
	background-color: #ffffff;
	padding: 1.5rem;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-card-heading {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	margin: 0 0 1.2rem 0;
	font-size: 1.25rem !important;
	color: #0369a1;
}

.hb-step-num {
	width: 32px;
	height: 32px;
	background-color: #0369a1;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1rem !important;
}

.hb-form-grid-2 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1rem;
}

.hb-field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

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

.hb-align-end {
	justify-content: flex-end;
}

.hb-field-label {
	font-size: 0.98rem !important;
	font-weight: 600;
	color: #1e293b;
}

.hb-field-input,
.hb-field-select,
.hb-field-textarea {
	width: 100% !important;
	background-color: #f1f5f9;
	color: #0f172a;
	padding: 0.7rem 0.9rem;
	font-size: 1rem !important;
	box-sizing: border-box;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
	outline: none;
}

.hb-field-input:focus,
.hb-field-select:focus,
.hb-field-textarea:focus {
	background-color: #e0f2fe;
}

.hb-btn-check-avail {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background-color: #0284c7;
	color: #ffffff;
	height: 44px;
	font-weight: 700;
	font-size: 1rem !important;
	cursor: pointer;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-btn-check-avail:hover {
	background-color: #0369a1;
}

.hb-avail-status {
	margin-top: 1rem;
	font-size: 1rem !important;
	font-weight: 600;
}

.hb-status-ok {
	color: #15803d;
	background-color: #dcfce7;
	padding: 0.8rem;
}

.hb-status-err {
	color: #b91c1c;
	background-color: #fee2e2;
	padding: 0.8rem;
}

/* Services list in booking form */
.hb-services-list {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.hb-service-item {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	background-color: #f8fafc;
	padding: 0.9rem;
	cursor: pointer;
}

.hb-service-item:hover {
	background-color: #f0f7fc;
}

.hb-service-checkbox {
	width: 22px;
	height: 22px;
	accent-color: #0284c7;
	border-radius: 7px !important;
}

.hb-service-info {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.hb-service-name {
	font-size: 1.05rem !important;
	color: #0f172a;
}

.hb-service-desc {
	font-size: 0.94rem !important;
	color: #64748b;
}

.hb-service-cost {
	font-size: 1.05rem !important;
	font-weight: 700;
	color: #0369a1;
}

/* Summary Card Right */
.hb-summary-card {
	background-color: #ffffff;
	padding: 1.5rem;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
	position: sticky;
	top: 20px;
}

.hb-summary-title {
	margin: 0 0 1.2rem 0;
	font-size: 1.15rem !important;
	color: #0369a1;
}

.hb-summary-lines {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	background-color: #f8fafc;
	padding: 1.2rem;
	margin-bottom: 1.2rem;
}

.hb-sum-line {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1rem !important;
}

.hb-sum-label {
	color: #475569;
}

.hb-sum-value {
	font-weight: 700;
	color: #0f172a;
}

.hb-sum-discount {
	display: none;
	color: #16a34a;
}

.hb-sum-discount .hb-sum-value {
	color: #16a34a;
}

.hb-sum-divider {
	height: 2px;
	background-color: #e2e8f0;
	margin: 0.4rem 0;
}

.hb-sum-total {
	font-size: 1.15rem !important;
}

.hb-sum-total .hb-sum-value {
	font-size: 1.35rem !important;
	color: #0369a1;
}

.hb-sum-deposit {
	background-color: #e0f2fe;
	padding: 0.6rem;
	margin-top: 0.4rem;
}

.hb-sum-deposit .hb-sum-value {
	color: #0284c7;
	font-size: 1.2rem !important;
}

/* Coupon Box */
.hb-coupon-box {
	margin-bottom: 1.2rem;
	background-color: #f1f5f9;
	padding: 1rem;
}

.hb-coupon-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.98rem !important;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.hb-coupon-input-group {
	display: flex;
	gap: 0.5rem;
}

.hb-btn-apply-coupon {
	background-color: #0369a1;
	color: #ffffff;
	padding: 0 1rem;
	font-size: 0.96rem !important;
	font-weight: 600;
	cursor: pointer;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-coupon-status {
	margin-top: 0.5rem;
	font-size: 0.94rem !important;
	font-weight: 600;
}

/* Payment Options */
.hb-payment-choice {
	margin-bottom: 1.5rem;
}

.hb-choice-heading {
	margin: 0 0 0.8rem 0;
	font-size: 1.05rem !important;
	color: #1e293b;
}

.hb-payment-option {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	background-color: #f8fafc;
	padding: 0.8rem;
	margin-bottom: 0.5rem;
	cursor: pointer;
}

.hb-payment-option input {
	margin-top: 0.2rem;
	accent-color: #0284c7;
}

.hb-opt-text {
	display: flex;
	flex-direction: column;
}

.hb-opt-desc {
	font-size: 0.92rem !important;
	color: #64748b;
}

.hb-btn-submit-booking {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	width: 100% !important;
	background-color: #0284c7;
	color: #ffffff;
	padding: 1rem;
	font-size: 1.15rem !important;
	font-weight: 700;
	cursor: pointer;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
	transition: background-color 0.2s;
}

.hb-btn-submit-booking:hover {
	background-color: #0369a1;
}

.hb-submit-guarantee {
	text-align: center;
	font-size: 0.92rem !important;
	color: #64748b;
	margin-top: 0.8rem;
}

/* Modal VietQR Success - Wide Compact Layout */
.hb-success-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(15, 23, 42, 0.75);
	z-index: 999999;
	align-items: center;
	justify-content: center;
	padding: 0.75rem;
	box-sizing: border-box;
}

.hb-success-content {
	background-color: #ffffff;
	width: 100% !important;
	max-width: 980px !important;
	max-height: 94vh;
	overflow-y: auto;
	padding: 0.9rem 1.2rem;
	box-sizing: border-box;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-success-header {
	text-align: center;
	background-color: #0369a1;
	color: #ffffff;
	padding: 0.75rem 1rem;
	margin: -0.9rem -1.2rem 0.9rem -1.2rem;
	border: none !important;
	border-radius: 7px 7px 0 0 !important;
}

.hb-success-title {
	margin: 0;
	font-size: 1.25rem !important;
	font-weight: 700;
	color: #ffffff !important;
}

.hb-success-sub {
	margin: 0.2rem 0 0 0;
	font-size: 0.95rem !important;
	color: #e0f2fe;
}

.hb-success-body {
	display: grid;
	grid-template-columns: 330px 1fr;
	gap: 1rem;
	align-items: start;
	margin-bottom: 0.8rem;
}

@media (max-width: 780px) {
	.hb-success-body {
		grid-template-columns: 1fr;
		gap: 0.8rem;
	}
}

.hb-receipt-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.6rem;
	background-color: #f1f5f9;
	padding: 0.8rem;
	margin-bottom: 0;
	border: none !important;
	border-radius: 7px !important;
}

@media (max-width: 480px) {
	.hb-receipt-grid {
		grid-template-columns: 1fr;
	}
}

.hb-receipt-item {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	background-color: #ffffff;
	padding: 0.6rem 0.8rem;
	border: none !important;
	border-radius: 7px !important;
}

.hb-rc-label {
	font-size: 0.92rem !important;
	color: #64748b;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.hb-rc-val {
	font-size: 1.05rem !important;
	color: #0f172a;
	font-weight: 700;
}

.hb-booking-code {
	color: #0369a1;
	font-size: 1.2rem !important;
	font-weight: 800;
}

.hb-text-danger {
	color: #dc2626 !important;
	font-weight: 800;
}

.hb-qr-payment-box {
	background-color: #f8fafc;
	padding: 0.8rem;
	text-align: center;
	margin-bottom: 0;
	border: none !important;
	border-radius: 7px !important;
}

.hb-qr-title {
	margin: 0 0 0.5rem 0;
	font-size: 1rem !important;
	font-weight: 700;
	color: #0369a1;
}

.hb-qr-img-wrap {
	display: inline-block;
	background-color: #ffffff;
	padding: 0.4rem;
	margin-bottom: 0.5rem;
	border: none !important;
	border-radius: 7px !important;
}

.hb-qr-img-wrap img,
.hb-qr-img {
	max-width: 170px !important;
	height: auto;
	display: block;
	margin: 0 auto;
	border-radius: 7px !important;
	border: none !important;
}

.hb-bank-details {
	text-align: left;
	background-color: #ffffff;
	padding: 0.6rem 0.8rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	font-size: 0.94rem !important;
	border: none !important;
	border-radius: 7px !important;
}

.hb-bank-details p {
	margin: 0;
	display: flex;
	justify-content: space-between;
}

.hb-success-footer {
	display: flex;
	gap: 0.6rem;
	justify-content: flex-end;
	flex-wrap: wrap;
	padding-top: 0.6rem;
	border: none !important;
}

.hb-btn-primary {
	background-color: #0284c7;
	color: #ffffff !important;
	padding: 0.65rem 1.2rem;
	font-size: 1rem !important;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
	cursor: pointer;
}

.hb-btn-outline {
	background-color: #e2e8f0;
	color: #1e293b !important;
	padding: 0.65rem 1.2rem;
	font-size: 1rem !important;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
	cursor: pointer;
}

/* Lookup Shortcode Container */
.hb-lookup-container {
	width: 100% !important;
	max-width: 750px !important;
	margin: 2rem auto;
}

.hb-lookup-card {
	background-color: #ffffff;
	padding: 2rem;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-lookup-title {
	margin: 0 0 0.5rem 0;
	font-size: 1.25rem !important;
	color: #0369a1;
}

.hb-lookup-desc {
	margin: 0 0 1.5rem 0;
	font-size: 1rem !important;
	color: #64748b;
}

.hb-lookup-fields {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.hb-lookup-result {
	margin-top: 1.5rem;
}

/* SVG icon standard */
.hb-svg-icon {
	display: inline-block;
	vertical-align: middle;
	flex-shrink: 0;
}

/* Loader */
.hb-app-loading {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.85);
	z-index: 100;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	font-weight: 700;
	color: #0369a1;
}

/* Responsive adjustment */
@media (max-width: 768px) {
	.hb-search-bar-wrap {
		padding: 0.9rem;
	}
	.hb-card-footer {
		flex-direction: column;
		align-items: flex-start;
	}
	.hb-card-actions {
		width: 100%;
	}
}

/* Modern Multi-Image Grid Showcase */
.hb-detail-gallery-modern {
	position: relative;
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 0.5rem;
	width: 100% !important;
	max-height: 480px;
	overflow: hidden;
	margin-bottom: 1.5rem;
	background-color: #0f172a;
}

.hb-ggrid-hero {
	position: relative;
	width: 100% !important;
	height: 100% !important;
	cursor: pointer;
	overflow: hidden;
}

.hb-ggrid-hero img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	display: block;
	transition: opacity 0.2s ease;
}

.hb-ggrid-hero:hover img {
	opacity: 0.92;
}

.hb-hero-room-badge {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	background-color: #0369a1;
	color: #ffffff;
	padding: 0.4rem 0.9rem;
	font-weight: 700;
	font-size: 1rem !important;
}

.hb-ggrid-thumbs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 0.5rem;
	height: 100%;
}

.hb-gsub-item {
	position: relative;
	cursor: pointer;
	overflow: hidden;
	background-color: #1e293b;
}

.hb-gsub-item img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	display: block;
	transition: opacity 0.2s ease;
}

.hb-gsub-item:hover img {
	opacity: 0.92;
}

.hb-gmore-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(15, 23, 42, 0.75);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem !important;
	font-weight: 700;
}

.hb-btn-view-all-photos {
	position: absolute;
	bottom: 1rem;
	right: 1rem;
	background-color: #ffffff;
	color: #0f172a;
	padding: 0.65rem 1.2rem;
	font-size: 0.95rem !important;
	font-weight: 700;
	border: none !important;
	border-radius: 7px !important;
	box-shadow: none !important;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	z-index: 20;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.hb-btn-view-all-photos:hover {
	background-color: #0369a1;
	color: #ffffff;
}

.hb-btn-view-all-photos svg {
	width: 18px;
	height: 18px;
}

/* Lightbox Modal */
.hb-lightbox-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(15, 23, 42, 0.96);
	z-index: 1000000;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.hb-lightbox-overlay.active {
	display: flex;
}

.hb-btn-lb-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background-color: #0369a1;
	color: #ffffff;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 1000002;
	border: none !important;
	border-radius: 7px !important;
	box-shadow: none !important;
	transition: background-color 0.15s ease;
}

.hb-btn-lb-close:hover {
	background-color: #0284c7;
}

.hb-btn-lb-prev,
.hb-btn-lb-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: #0369a1;
	color: #ffffff;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 1000002;
	border: none !important;
	border-radius: 7px !important;
	box-shadow: none !important;
	transition: background-color 0.15s ease;
}

.hb-btn-lb-prev:hover,
.hb-btn-lb-next:hover {
	background-color: #0284c7;
}

.hb-btn-lb-prev { left: 1rem; }
.hb-btn-lb-next { right: 1rem; }

.hb-lightbox-stage {
	max-width: 96vw;
	max-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hb-lightbox-stage img {
	max-width: 100% !important;
	max-height: 90vh !important;
	object-fit: contain;
	display: block;
	border: none !important;
	border-radius: 7px !important;
	box-shadow: none !important;
}

.hb-lightbox-counter {
	margin-top: 0.6rem;
	color: #e0f2fe;
	font-size: 1.05rem !important;
	font-weight: 700;
}

@media (max-width: 768px) {
	.hb-btn-lb-close {
		top: 0.5rem;
		right: 0.5rem;
		width: 38px;
		height: 38px;
	}

	.hb-btn-lb-prev,
	.hb-btn-lb-next {
		width: 38px;
		height: 38px;
	}

	.hb-btn-lb-prev { left: 0.5rem; }
	.hb-btn-lb-next { right: 0.5rem; }

	.hb-lightbox-stage {
		max-width: 98vw;
		max-height: 84vh;
	}

	.hb-lightbox-stage img {
		max-height: 84vh !important;
	}
}

/* Cinema-Seat Room Matrix & Status Board */
.hb-matrix-wrapper {
	width: 100% !important;
	max-width: 100% !important;
	margin: 2rem 0;
}

.hb-matrix-toolbar {
	background-color: #0369a1;
	padding: 1.2rem;
	margin-bottom: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.hb-matrix-filter-form {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: flex-end;
}

.hb-filter-item {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	flex: 1 1 200px;
}

.hb-filter-btn-wrap {
	flex: 0 0 160px;
}

.hb-filter-label {
	color: #ffffff;
	font-size: 1rem !important;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.hb-filter-select,
.hb-filter-date {
	height: 46px;
	padding: 0.6rem 0.9rem;
	background-color: #ffffff;
	color: #0f172a;
	font-size: 1rem !important;
	width: 100% !important;
	box-sizing: border-box;
}

.hb-btn-filter-matrix {
	height: 46px;
	width: 100% !important;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	cursor: pointer;
}

/* Matrix Legend (Seat Status Bar) */
.hb-matrix-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	background-color: #0c4a6e;
	padding: 0.8rem 1rem;
}

.hb-leg-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #ffffff;
	font-size: 0.95rem !important;
	font-weight: 600;
}

.hb-leg-box {
	width: 18px;
	height: 18px;
	display: inline-block;
}

.hb-badge-available .hb-leg-box { background-color: #0284c7; }
.hb-badge-checking-out .hb-leg-box { background-color: #f59e0b; }
.hb-badge-booked .hb-leg-box { background-color: #64748b; }
.hb-badge-maintenance .hb-leg-box { background-color: #94a3b8; }

/* Floors & Room Matrix (Cinema Style) */
.hb-matrix-floors {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	width: 100% !important;
}

.hb-floor-block {
	background-color: #ffffff;
	padding: 1.5rem;
}

.hb-floor-header {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	background-color: #0369a1;
	color: #ffffff;
	padding: 0.8rem 1.2rem;
	margin-bottom: 1.2rem;
}

.hb-floor-title {
	margin: 0;
	font-size: 1.15rem !important;
	color: #ffffff;
}

.hb-floor-count {
	margin-left: auto;
	font-size: 0.95rem !important;
	background-color: #0284c7;
	padding: 0.2rem 0.6rem;
}

.hb-floor-rooms-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1rem;
	width: 100% !important;
}

/* Individual Seat / Room Card */
.hb-seat-card {
	padding: 1rem;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	transition: background-color 0.2s;
	position: relative;
}

/* Status: Available */
.hb-seat-card.hb-status-available {
	background-color: #f0f7fc;
	border: none !important;
}
.hb-seat-card.hb-status-available:hover {
	background-color: #e0f2fe;
}
.hb-seat-card.hb-status-available .hb-seat-status-pill {
	background-color: #0284c7;
	color: #ffffff;
}

/* Status: Checking Out Today */
.hb-seat-card.hb-status-checking_out {
	background-color: #fffbeb;
	border: none !important;
}
.hb-seat-card.hb-status-checking_out:hover {
	background-color: #fef3c7;
}
.hb-seat-card.hb-status-checking_out .hb-seat-status-pill {
	background-color: #f59e0b;
	color: #ffffff;
}

/* Status: Booked */
.hb-seat-card.hb-status-booked {
	background-color: #f1f5f9;
	border: none !important;
}
.hb-seat-card.hb-status-booked .hb-seat-status-pill {
	background-color: #64748b;
	color: #ffffff;
}

/* Status: Maintenance */
.hb-seat-card.hb-status-maintenance {
	background-color: #f8fafc;
	border: none !important;
	opacity: 0.75;
}
.hb-seat-card.hb-status-maintenance .hb-seat-status-pill {
	background-color: #94a3b8;
	color: #ffffff;
}

.hb-seat-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.hb-seat-number {
	font-size: 1.15rem !important;
	font-weight: 700;
	color: #0f172a;
}

.hb-seat-status-pill {
	font-size: 0.94rem !important;
	font-weight: 700;
	padding: 0.3rem 0.6rem;
}

.hb-seat-title {
	margin: 0;
	font-size: 1.1rem !important;
	color: #0f172a;
	line-height: 1.3;
}

.hb-seat-specs {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	font-size: 0.92rem !important;
	color: #64748b;
}

.hb-seat-footer {
	margin-top: auto;
	padding-top: 0.6rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: none !important;
}

.hb-seat-price {
	font-weight: 700;
	color: #0369a1;
	font-size: 1.1rem !important;
}

.hb-seat-action {
	font-size: 0.95rem !important;
	font-weight: 700;
	color: #0284c7;
}

/* Seat Modal / Quick Drawer - Wide 2-Column Flat Layout */
.hb-seat-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(15, 23, 42, 0.75);
	z-index: 999999;
	align-items: center;
	justify-content: center;
	padding: 0.75rem;
	box-sizing: border-box;
}

.hb-seat-modal.active {
	display: flex;
}

.hb-seat-modal-content {
	background-color: #ffffff;
	width: 100% !important;
	max-width: 880px !important;
	max-height: 92vh;
	overflow-y: auto;
	box-sizing: border-box;
	padding: 0.9rem 1.2rem;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-seat-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #0369a1;
	color: #ffffff;
	padding: 0.75rem 1rem;
	margin: -0.9rem -1.2rem 0.9rem -1.2rem;
	border: none !important;
	border-radius: 7px 7px 0 0 !important;
}

.hb-seat-modal-title {
	margin: 0;
	font-size: 1.2rem !important;
	font-weight: 700;
	color: #ffffff !important;
}

.hb-seat-modal-sub {
	font-size: 0.95rem !important;
	color: #e0f2fe;
	font-weight: 700;
	margin-top: 0.15rem;
}

.hb-seat-modal-close {
	background-color: transparent;
	color: #ffffff !important;
	cursor: pointer;
	padding: 0.3rem 0.6rem;
	font-size: 1.5rem !important;
	border: none !important;
	border-radius: 7px !important;
	box-shadow: none !important;
	line-height: 1;
}

.hb-seat-modal-body {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 1rem;
	align-items: start;
}

@media (max-width: 720px) {
	.hb-seat-modal-body {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}
}

.hb-seat-modal-img-wrap {
	width: 100% !important;
	height: 240px;
	overflow: hidden;
	background-color: #e2e8f0;
	margin-bottom: 0;
	border-radius: 7px !important;
	border: none !important;
}

@media (max-width: 720px) {
	.hb-seat-modal-img-wrap {
		height: 180px;
	}
}

.hb-seat-modal-img-wrap img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	display: block;
	border-radius: 7px !important;
}

.hb-seat-modal-info {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.hb-seat-modal-status-box {
	padding: 0.6rem 0.8rem;
	font-weight: 700;
	font-size: 0.98rem !important;
	border-radius: 7px !important;
	border: none !important;
}

.hb-seat-modal-specs {
	font-size: 0.95rem !important;
	color: #334155;
	line-height: 1.4;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.hb-seat-modal-price {
	font-size: 1.35rem !important;
	color: #d97706;
	font-weight: 800;
	padding: 0.2rem 0;
}

.hb-seat-modal-actions {
	display: flex;
	gap: 0.6rem;
	margin-top: 0.5rem;
	flex-wrap: wrap;
}

@media (max-width: 480px) {
	.hb-seat-modal-actions {
		flex-direction: column;
	}
}

.hb-seat-modal-actions .hb-btn-primary,
.hb-seat-modal-actions .hb-btn-outline {
	flex: 1;
	text-align: center;
	padding: 0.65rem 1rem;
	font-size: 0.98rem !important;
}

@media (max-width: 768px) {
	.hb-detail-gallery-modern {
		grid-template-columns: 1fr;
		max-height: none;
	}
	.hb-ggrid-hero {
		height: 250px;
	}
	.hb-ggrid-thumbs {
		height: 180px;
	}
	.hb-floor-rooms-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Booking.com Search & Filter Layout System
   Flat Basic 0px, No border, No shadow, System Font
   ========================================================================== */
.hb-bcom-wrapper {
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box;
	background-color: #f1f5f9;
	padding: 1.5rem 0;
}

/* Mobile Trigger Bar */
.hb-bcom-mobile-bar {
	display: none;
	justify-content: space-between;
	align-items: center;
	background-color: #0369a1;
	color: #ffffff;
	padding: 0.8rem 1rem;
	margin-bottom: 1rem;
}

.hb-bcom-btn-filter-toggle {
	background-color: #0284c7;
	color: #ffffff !important;
	padding: 0.6rem 1rem;
	font-size: 0.98rem !important;
	font-weight: 700;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-bcom-mobile-count {
	font-size: 0.95rem !important;
	color: #e0f2fe;
}

/* Two-column layout */
.hb-bcom-layout {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	width: 100% !important;
	box-sizing: border-box;
}

/* 1. Left Sidebar */
.hb-bcom-sidebar {
	width: 310px;
	min-width: 310px;
	flex-shrink: 0;
	box-sizing: border-box;
}

.hb-bcom-sidebar-inner {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.hb-bcom-mobile-close-bar {
	display: none;
	justify-content: space-between;
	align-items: center;
	background-color: #0369a1;
	color: #ffffff;
	padding: 0.8rem 1rem;
	margin-bottom: 0.5rem;
}

.hb-bcom-mobile-filter-title {
	font-size: 1.15rem !important;
	font-weight: 700;
}

.hb-bcom-btn-close-filter {
	background-color: transparent;
	color: #ffffff;
	cursor: pointer;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
	padding: 0.2rem;
}

/* Sidebar Boxes */
.hb-bcom-box {
	background-color: #ffffff;
	padding: 1.2rem;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
	margin-bottom: 1rem;
}

.hb-bcom-box-title {
	margin: 0 0 1rem 0;
	font-size: 1.2rem !important;
	color: #ffffff !important;
}

/* Search Box (Booking Blue Hero Style) */
.hb-bcom-search-box {
	background-color: #0369a1;
	color: #ffffff;
}

.hb-bcom-field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-bottom: 0.9rem;
}

.hb-bcom-label {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.94rem !important;
	font-weight: 700;
	color: #ffffff;
}

.hb-bcom-input,
.hb-bcom-select {
	padding: 0.65rem 0.8rem;
	font-size: 0.98rem !important;
	background-color: #ffffff;
	color: #0f172a;
	width: 100% !important;
	box-sizing: border-box;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-bcom-input:focus,
.hb-bcom-select:focus {
	outline: 2px solid #38bdf8;
}

.hb-bcom-btn-search {
	width: 100% !important;
	background-color: #0284c7;
	color: #ffffff !important;
	padding: 0.8rem 1rem;
	font-size: 1.05rem !important;
	font-weight: 700;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 0.5rem;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-bcom-btn-search:hover {
	background-color: #0c4a6e;
}

/* Cinema Room Matrix Teaser */
.hb-bcom-cinema-teaser {
	background-color: #e0f2fe;
	border: none !important;
	padding: 1rem 1.2rem;
}

.hb-bcom-teaser-header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #0369a1;
	margin-bottom: 0.4rem;
}

.hb-bcom-teaser-title {
	font-size: 1.1rem !important;
	font-weight: 700;
	color: #0369a1;
}

.hb-bcom-teaser-desc {
	margin: 0 0 0.8rem 0;
	font-size: 0.94rem !important;
	color: #334155;
	line-height: 1.4;
}

.hb-bcom-btn-cinema {
	background-color: #0284c7;
	color: #ffffff !important;
	padding: 0.5rem 0.9rem;
	text-decoration: none;
	font-size: 0.92rem !important;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-bcom-btn-cinema:hover {
	background-color: #0369a1;
}

/* Reset Box */
.hb-bcom-reset-box {
	background-color: #fef3c7;
	border: none !important;
	padding: 0.9rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.hb-bcom-reset-label {
	font-size: 0.92rem !important;
	color: #92400e;
	font-weight: 600;
}

.hb-bcom-btn-reset-all {
	background-color: #b45309;
	color: #ffffff !important;
	text-decoration: none;
	padding: 0.4rem 0.8rem;
	font-size: 0.92rem !important;
	font-weight: 700;
	text-align: center;
	display: inline-block;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

/* Filter Groups & Checklists */
.hb-bcom-filter-group {
	padding: 1.2rem;
}

.hb-bcom-group-title {
	margin: 0 0 0.9rem 0;
	font-size: 1.05rem !important;
	color: #0f172a;
	padding-bottom: 0.5rem;
	border: none !important;
}

.hb-bcom-checklist {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.hb-bcom-check-item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	cursor: pointer;
	font-size: 0.95rem !important;
	color: #334155;
}

.hb-bcom-check-item input[type="radio"],
.hb-bcom-check-item input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: #0284c7;
	border-radius: 7px !important;
	cursor: pointer;
}

.hb-bcom-check-text {
	flex-grow: 1;
}

.hb-bcom-check-badge {
	font-size: 0.92rem !important;
	background-color: #e2e8f0;
	color: #475569;
	padding: 0.15rem 0.45rem;
	font-weight: 700;
}

.hb-bcom-filter-submit-wrap {
	margin-top: 0.5rem;
}

.hb-bcom-btn-apply {
	width: 100% !important;
	background-color: #0284c7;
	color: #ffffff !important;
	padding: 0.7rem;
	font-size: 1rem !important;
	font-weight: 700;
	cursor: pointer;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-bcom-btn-apply:hover {
	background-color: #0369a1;
}

/* 2. Right Main Content Area */
.hb-bcom-content {
	flex: 1;
	min-width: 0;
	width: 100% !important;
	box-sizing: border-box;
}

/* Results Header Bar */
.hb-bcom-results-header {
	margin-bottom: 1.2rem;
}

.hb-bcom-header-top {
	background-color: #ffffff;
	padding: 1.2rem;
	margin-bottom: 0.8rem;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-bcom-results-title {
	margin: 0 0 0.6rem 0;
	font-size: 1.25rem !important;
	color: #0f172a;
}

.hb-bcom-meta-chips {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
}

.hb-bcom-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background-color: #f1f5f9;
	color: #334155;
	padding: 0.35rem 0.75rem;
	font-size: 0.92rem !important;
	font-weight: 600;
}

/* Sort Bar */
.hb-bcom-sort-bar {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	flex-wrap: wrap;
	background-color: #ffffff;
	padding: 0.8rem 1.2rem;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-bcom-sort-label {
	font-size: 0.95rem !important;
	font-weight: 700;
	color: #64748b;
}

.hb-bcom-sort-tabs {
	display: flex;
	gap: 0.4rem;
	flex-wrap: wrap;
}

.hb-bcom-sort-tab {
	padding: 0.5rem 0.9rem;
	background-color: #f1f5f9;
	color: #334155 !important;
	text-decoration: none;
	font-size: 0.94rem !important;
	font-weight: 600;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-bcom-sort-tab.active,
.hb-bcom-sort-tab:hover {
	background-color: #0284c7;
	color: #ffffff !important;
}

/* Horizontal Cards List */
.hb-bcom-cards-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	width: 100% !important;
}

/* Individual Booking.com Card - Sleek Compact Layout */
.hb-bcom-card {
	display: flex;
	background-color: #ffffff;
	padding: 0.75rem 0.9rem;
	gap: 0.9rem;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
	transition: background-color 0.15s ease;
	width: 100% !important;
	box-sizing: border-box;
	align-items: stretch;
}

.hb-bcom-card:hover {
	background-color: #fcfdfe;
}

/* Card Col 1: Thumbnail */
.hb-bcom-card-thumb-col {
	width: 190px;
	min-width: 190px;
	position: relative;
	background-color: #0f172a;
	overflow: hidden;
	height: 155px;
	flex-shrink: 0;
}

.hb-bcom-thumb-link {
	display: block;
	width: 100%;
	height: 100%;
}

.hb-bcom-card-img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	display: block;
	transition: opacity 0.2s ease;
}

.hb-bcom-card:hover .hb-bcom-card-img {
	opacity: 0.92;
}

.hb-bcom-no-img {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #94a3b8;
	gap: 0.4rem;
}

.hb-bcom-type-badge {
	position: absolute;
	top: 0.4rem;
	left: 0.4rem;
	background-color: #0284c7;
	color: #ffffff;
	padding: 0.15rem 0.45rem;
	font-size: 0.92rem !important;
	font-weight: 700;
}

.hb-bcom-room-badge {
	position: absolute;
	bottom: 0.4rem;
	left: 0.4rem;
	background-color: rgba(15, 23, 42, 0.85);
	color: #ffffff;
	padding: 0.15rem 0.45rem;
	font-size: 0.92rem !important;
	font-weight: 700;
}

.hb-bcom-photo-count {
	position: absolute;
	bottom: 0.4rem;
	right: 0.4rem;
	background-color: rgba(15, 23, 42, 0.85);
	color: #ffffff !important;
	padding: 0.15rem 0.4rem;
	font-size: 0.92rem !important;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	text-decoration: none;
}

/* Card Col 2: Info */
.hb-bcom-card-info-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 0;
	justify-content: space-between;
}

.hb-bcom-card-heading-box {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.hb-bcom-card-title {
	margin: 0;
	font-size: 1.15rem !important;
	line-height: 1.25;
}

.hb-bcom-card-title a {
	color: #0369a1 !important;
	text-decoration: none;
}

.hb-bcom-card-title a:hover {
	color: #0284c7 !important;
	text-decoration: underline;
}

.hb-bcom-location-line {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	flex-wrap: wrap;
	font-size: 0.92rem !important;
	color: #475569;
}

.hb-bcom-branch-name {
	color: #0f172a;
}

.hb-bcom-dot {
	color: #94a3b8;
}

.hb-bcom-address-text {
	color: #64748b;
}

.hb-bcom-cinema-link {
	color: #0284c7 !important;
	text-decoration: none;
	font-weight: 700;
	margin-left: 0.4rem;
}

.hb-bcom-cinema-link:hover {
	text-decoration: underline;
}

/* Specs Strip */
.hb-bcom-specs-strip {
	display: flex;
	gap: 0.4rem;
	flex-wrap: wrap;
	background-color: #f8fafc;
	padding: 0.3rem 0.5rem;
}

.hb-bcom-spec-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.92rem !important;
	color: #334155;
}

/* Value Props / Compact Perks Tags (1 Row) */
.hb-bcom-perks-tags {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	flex-wrap: wrap;
}

.hb-bcom-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.15rem 0.45rem;
	font-size: 0.92rem !important;
	font-weight: 600;
	background-color: #f1f5f9;
	color: #334155;
	border-radius: 7px !important;
	border: none !important;
}

.hb-bcom-tag svg {
	width: 13px;
	height: 13px;
}

.hb-tag-green {
	background-color: #dcfce7 !important;
	color: #15803d !important;
	font-weight: 700 !important;
}

.hb-tag-blue {
	background-color: #e0f2fe !important;
	color: #0369a1 !important;
	font-weight: 700 !important;
}

/* Compact Amenities Popover / Tooltip */
.hb-bcom-amenities-wrap {
	position: relative;
	display: inline-block;
	margin-top: auto;
	padding-top: 0.25rem;
}

.hb-bcom-btn-amenities-tooltip {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background-color: #f1f5f9;
	color: #0369a1;
	padding: 0.35rem 0.7rem;
	font-size: 0.95rem !important;
	font-weight: 700;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
	cursor: pointer;
	line-height: 1.2;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.hb-bcom-btn-amenities-tooltip:hover,
.hb-bcom-btn-amenities-tooltip:focus-visible,
.hb-bcom-amenities-wrap.is-open .hb-bcom-btn-amenities-tooltip {
	background-color: #0284c7;
	color: #ffffff;
}

.hb-bcom-btn-amenities-tooltip svg {
	width: 15px;
	height: 15px;
	flex-shrink: 0;
}

.hb-bcom-amenities-tooltip {
	display: none;
	position: absolute;
	bottom: calc(100% + 8px);
	left: 0;
	width: 320px;
	max-width: min(320px, calc(100vw - 40px));
	background-color: #0f172a;
	color: #ffffff;
	padding: 0.85rem 1rem;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
	z-index: 100;
	box-sizing: border-box;
}

.hb-bcom-amenities-wrap:hover .hb-bcom-amenities-tooltip,
.hb-bcom-amenities-wrap:focus-within .hb-bcom-amenities-tooltip,
.hb-bcom-amenities-wrap.is-open .hb-bcom-amenities-tooltip {
	display: block;
}

.hb-bcom-tooltip-head {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding: 0.5rem 0.6rem;
	margin-bottom: 0.6rem;
	background-color: #1e293b;
	border: none !important;
}

.hb-bcom-tooltip-head strong {
	font-size: 0.95rem !important;
	color: #38bdf8;
	font-weight: 700;
}

.hb-tooltip-sub {
	font-size: 0.92rem !important;
	color: #94a3b8;
}

.hb-bcom-tooltip-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.4rem 0.8rem;
	max-height: 220px;
	overflow-y: auto;
}

.hb-bcom-tooltip-item {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.92rem !important;
	color: #f8fafc;
	line-height: 1.3;
}

.hb-bcom-tooltip-item svg {
	width: 14px;
	height: 14px;
	stroke: #38bdf8;
	flex-shrink: 0;
}

/* AJAX Loading State */
.hb-bcom-content {
	position: relative;
	transition: opacity 0.2s ease;
}

.hb-bcom-content.hb-bcom-loading {
	opacity: 0.5;
	pointer-events: none;
}

.hb-bcom-content.hb-bcom-loading::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background-color: #0284c7;
	animation: hb-bar-loading 1s infinite ease-in-out;
	z-index: 50;
}

@keyframes hb-bar-loading {
	0% { transform: translateX(-100%); width: 30%; }
	50% { transform: translateX(50%); width: 60%; }
	100% { transform: translateX(200%); width: 30%; }
}

@media (max-width: 640px) {
	.hb-bcom-amenities-tooltip {
		left: 0;
		width: calc(100vw - 32px);
		max-width: calc(100vw - 32px);
	}
	.hb-bcom-tooltip-grid {
		grid-template-columns: 1fr;
	}
}

/* Card Col 3: Pricing & Actions */
.hb-bcom-card-pricing-col {
	width: 200px;
	min-width: 200px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: right;
	background-color: #f8fafc;
	padding: 0.75rem 0.85rem;
	flex-shrink: 0;
	box-sizing: border-box;
}

/* Review Badge */
.hb-bcom-rating-header {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.2rem;
}

.hb-bcom-rating-text-group {
	display: flex;
	flex-direction: column;
	text-align: right;
}

.hb-bcom-rating-word {
	font-weight: 700;
	font-size: 0.95rem !important;
	color: #0f172a;
}

.hb-bcom-rating-reviews {
	font-size: 0.92rem !important;
	color: #64748b;
}

.hb-bcom-rating-box {
	background-color: #0369a1;
	color: #ffffff;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.05rem !important;
	font-weight: 700;
	border-radius: 7px !important;
	flex-shrink: 0;
}

/* Pricing Block */
.hb-bcom-pricing-block {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	margin-bottom: 0.35rem;
}

.hb-bcom-duration-caption {
	font-size: 0.92rem !important;
	color: #64748b;
}

.hb-bcom-price-main {
	font-size: 1.25rem !important;
	font-weight: 700;
	color: #0369a1;
	line-height: 1.2;
}

.hb-bcom-rate-sub {
	font-size: 0.92rem !important;
	color: #64748b;
}

.hb-bcom-urgency-notice {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	justify-content: flex-end;
	font-size: 0.92rem !important;
	color: #dc2626;
	font-weight: 700;
	margin-top: 0.15rem;
}

/* Actions */
.hb-bcom-card-actions {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.hb-bcom-btn-book {
	background-color: #0284c7;
	color: #ffffff !important;
	padding: 0.5rem 0.8rem;
	text-decoration: none;
	font-size: 0.95rem !important;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.3rem;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-bcom-btn-book:hover {
	background-color: #0369a1;
}

.hb-bcom-btn-view {
	background-color: #e2e8f0;
	color: #1e293b !important;
	padding: 0.35rem 0.8rem;
	text-decoration: none;
	font-size: 0.92rem !important;
	font-weight: 600;
	text-align: center;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-bcom-btn-view:hover {
	background-color: #cbd5e1;
}

/* Zero results empty box */
.hb-bcom-empty-box {
	background-color: #ffffff;
	padding: 2.5rem;
	text-align: center;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-bcom-empty-inner {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.hb-bcom-empty-icon {
	color: #0284c7;
}

.hb-bcom-empty-title {
	margin: 0;
	font-size: 1.2rem !important;
	color: #0f172a;
}

.hb-bcom-empty-desc {
	margin: 0;
	font-size: 1rem !important;
	color: #64748b;
	line-height: 1.5;
}

.hb-bcom-empty-actions {
	display: flex;
	gap: 0.8rem;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
	.hb-bcom-mobile-bar {
		display: flex;
	}

	.hb-bcom-sidebar {
		display: none;
	}

	.hb-bcom-sidebar.mobile-open {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw !important;
		height: 100vh !important;
		background-color: rgba(15, 23, 42, 0.75);
		z-index: 999999;
		overflow-y: auto;
		padding: 1rem;
		box-sizing: border-box;
	}

	.hb-bcom-sidebar-inner {
		background-color: #f8fafc;
		padding: 1.2rem;
		max-height: 90vh;
		overflow-y: auto;
	}

	.hb-bcom-mobile-close-bar {
		display: flex;
	}

	.hb-bcom-card {
		flex-direction: column;
	}

	.hb-bcom-card-thumb-col {
		width: 100% !important;
		min-width: 100% !important;
		height: 180px;
	}

	.hb-bcom-card-pricing-col {
		width: 100% !important;
		min-width: 100% !important;
		text-align: left;
		padding: 1rem;
	}

	.hb-bcom-rating-header {
		justify-content: space-between;
	}

	.hb-bcom-urgency-notice {
		justify-content: flex-start;
	}
}

/* ==========================================================================
   Luxury Single Room & Villa Showcase Layout (Booking.com / Airbnb Luxe Style)
   Flat Basic Design - No Borders, No Shadows, 0px Radius, System Font
   ========================================================================== */

/* 1. Global Detail Wrapper */
.hb-dtl-luxury-view {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 0 3rem 0;
	box-sizing: border-box;
}

/* 2. Top Header Box & Breadcrumbs */
.hb-dtl-header-box {
	background-color: #ffffff;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	border: none !important;
	border-radius: 7px !important;
	box-shadow: none !important;
}

.hb-dtl-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	font-size: 0.95rem !important;
	color: #64748b;
	margin-bottom: 1rem;
}

.hb-dtl-breadcrumb a {
	color: #0284c7;
	text-decoration: none;
	font-weight: 500;
}

.hb-dtl-breadcrumb a:hover {
	color: #0369a1;
	text-decoration: underline;
}

.hb-dtl-bc-sep {
	color: #94a3b8;
	font-size: 1.1rem;
	line-height: 1;
}

.hb-dtl-bc-current {
	color: #0f172a;
	font-weight: 700;
}

.hb-dtl-title-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.hb-dtl-title-group {
	flex: 1 1 650px;
}

.hb-dtl-badge-strip {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	flex-wrap: wrap;
	margin-bottom: 0.6rem;
}

.hb-dtl-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.75rem;
	font-size: 0.95rem !important;
	font-weight: 600;
	border-radius: 7px !important;
	border: none !important;
}

.hb-dtl-badge svg {
	width: 16px;
	height: 16px;
}

.hb-badge-type {
	background-color: #0369a1;
	color: #ffffff;
}

.hb-badge-room-num {
	background-color: #e0f2fe;
	color: #0369a1;
}

.hb-badge-score {
	background-color: #0f172a;
	color: #ffffff;
}

.hb-dtl-score-val {
	background-color: #0284c7;
	color: #ffffff;
	padding: 0.15rem 0.45rem;
	font-weight: 700;
	margin-right: 0.3rem;
}

.hb-dtl-h1 {
	margin: 0.4rem 0 0.8rem 0;
	font-size: 1.35rem !important;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.25;
}

.hb-dtl-address-line {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	font-size: 1rem !important;
	color: #475569;
}

.hb-dtl-address-line svg {
	width: 18px;
	height: 18px;
	color: #0284c7;
	flex-shrink: 0;
}

.hb-dtl-branch-highlight {
	color: #0369a1;
	font-weight: 700;
}

.hb-dtl-dot {
	color: #94a3b8;
}

.hb-dtl-address-text {
	color: #475569;
}

.hb-dtl-cinema-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: #0284c7;
	font-weight: 600;
	font-size: 0.95rem !important;
	text-decoration: none;
	margin-left: 0.5rem;
	background-color: #e0f2fe;
	padding: 0.3rem 0.75rem;
	border-radius: 7px !important;
	border: none !important;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.hb-dtl-cinema-btn:hover {
	background-color: #0284c7;
	color: #ffffff;
}

.hb-dtl-cinema-btn svg {
	width: 16px;
	height: 16px;
}

.hb-dtl-header-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.6rem;
}

.hb-dtl-action-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background-color: #f1f5f9;
	color: #0f172a;
	padding: 0.6rem 1.1rem;
	font-size: 0.95rem !important;
	font-weight: 600;
	cursor: pointer;
	border: none !important;
	border-radius: 7px !important;
	box-shadow: none !important;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.hb-dtl-action-btn:hover {
	background-color: #0369a1;
	color: #ffffff;
}

.hb-dtl-action-btn svg {
	width: 18px;
	height: 18px;
}

.hb-dtl-direct-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.92rem !important;
	font-weight: 700;
	color: #0369a1;
	background-color: #f0fdf4;
	padding: 0.35rem 0.75rem;
	border-radius: 7px !important;
}

.hb-dtl-direct-tag svg {
	width: 16px;
	height: 16px;
	color: #16a34a;
}

/* 3. Key Highlights Strip (Specs Grid) */
.hb-dtl-specs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 1rem;
	margin-bottom: 2rem;
	width: 100% !important;
}

.hb-dtl-spec-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	background-color: #ffffff;
	padding: 1.1rem 1.25rem;
	border: none !important;
	border-radius: 7px !important;
	box-shadow: none !important;
}

.hb-dtl-spec-icon {
	background-color: #e0f2fe;
	color: #0284c7;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hb-dtl-spec-icon svg {
	width: 24px;
	height: 24px;
}

.hb-dtl-spec-info {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	min-width: 0;
}

.hb-dtl-spec-label {
	font-size: 0.92rem !important;
	color: #64748b;
	font-weight: 500;
}

.hb-dtl-spec-value {
	font-size: 1.05rem !important;
	color: #0f172a;
	font-weight: 700;
	line-height: 1.3;
}

/* 4. Main 2-Column Section */
.hb-dtl-columns {
	display: flex;
	gap: 2rem;
	align-items: flex-start;
	width: 100% !important;
}

.hb-dtl-main {
	flex: 1 1 0%;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.hb-dtl-sidebar {
	width: 380px;
	flex: 0 0 380px;
	position: sticky;
	top: 90px;
	z-index: 10;
}

/* 5. Detail Cards in Main Column */
.hb-dtl-card {
	background-color: #ffffff;
	padding: 1.8rem;
	border: none !important;
	border-radius: 7px !important;
	box-shadow: none !important;
}

.hb-dtl-card-title {
	margin: 0 0 1.2rem 0;
	font-size: 1.35rem !important;
	font-weight: 700;
	color: #0f172a;
	padding: 0.65rem 1rem;
	background-color: #f0f7fc;
	display: flex;
	align-items: center;
	border: none !important;
}

/* Highlights Grid */
.hb-dtl-highlights {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.2rem;
}

.hb-dtl-hl-item {
	display: flex;
	align-items: flex-start;
	gap: 0.9rem;
	background-color: #f8fafc;
	padding: 1.2rem;
	border: none !important;
	border-radius: 7px !important;
}

.hb-dtl-hl-icon {
	background-color: #0369a1;
	color: #ffffff;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hb-dtl-hl-icon svg {
	width: 18px;
	height: 18px;
}

.hb-dtl-hl-text strong {
	display: block;
	font-size: 1.05rem !important;
	color: #0f172a;
	margin-bottom: 0.35rem;
}

.hb-dtl-hl-text p {
	margin: 0;
	font-size: 0.98rem !important;
	color: #475569;
	line-height: 1.5;
}

/* Prose Overview */
.hb-dtl-prose {
	font-size: 1.05rem !important;
	line-height: 1.8;
	color: #334155;
}

.hb-dtl-prose p {
	margin: 0 0 1.2rem 0;
}

.hb-dtl-prose p:last-child {
	margin-bottom: 0;
}

.hb-dtl-prose h2,
.hb-dtl-prose h3,
.hb-dtl-prose h4 {
	color: #0f172a;
	font-weight: 700;
	margin: 1.5rem 0 0.8rem 0;
}

.hb-dtl-prose ul {
	margin: 0 0 1.2rem 1.5rem;
	padding: 0;
}

.hb-dtl-prose li {
	margin-bottom: 0.5rem;
}

/* Categorized Amenities */
.hb-dtl-amenity-groups {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.hb-dtl-am-group {
	background-color: #f8fafc;
	padding: 1.2rem 1.4rem;
	border: none !important;
	border-radius: 7px !important;
}

.hb-dtl-am-group-title {
	margin: 0 0 1rem 0;
	font-size: 1.15rem !important;
	font-weight: 700;
	color: #0369a1;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.hb-dtl-am-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 0.8rem 1.2rem;
}

.hb-dtl-am-item {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 1rem !important;
	color: #1e293b;
}

.hb-dtl-am-check {
	color: #0284c7;
	flex-shrink: 0;
	margin-top: 2px;
}

.hb-dtl-am-check svg {
	width: 18px;
	height: 18px;
}

/* Branch Box */
.hb-dtl-branch-box {
	background-color: #f0f7fc;
	padding: 1.5rem;
	border: none !important;
	border-radius: 7px !important;
}

.hb-dtl-branch-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1.2rem;
}

.hb-dtl-branch-name {
	margin: 0 0 0.4rem 0;
	font-size: 1.25rem !important;
	font-weight: 700;
	color: #0f172a;
}

.hb-dtl-branch-addr {
	margin: 0;
	font-size: 1rem !important;
	color: #475569;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.hb-dtl-branch-addr svg {
	width: 18px;
	height: 18px;
	color: #0284c7;
	flex-shrink: 0;
}

.hb-dtl-branch-cinema-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background-color: #0369a1;
	color: #ffffff;
	padding: 0.65rem 1.2rem;
	font-size: 0.98rem !important;
	font-weight: 700;
	text-decoration: none;
	border: none !important;
	border-radius: 7px !important;
	transition: background-color 0.2s ease;
}

.hb-dtl-branch-cinema-btn:hover {
	background-color: #0284c7;
	color: #ffffff;
}

.hb-dtl-branch-cinema-btn svg {
	width: 18px;
	height: 18px;
}

.hb-dtl-branch-contacts {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	font-size: 1rem !important;
	color: #334155;
	background-color: #ffffff;
	padding: 0.9rem 1.2rem;
	border: none !important;
	border-radius: 7px !important;
}

.hb-dtl-branch-contacts svg {
	width: 16px;
	height: 16px;
	color: #0284c7;
	vertical-align: middle;
	margin-right: 0.3rem;
}

.hb-dtl-branch-contacts strong {
	color: #0284c7;
}

/* Policies */
.hb-dtl-policy-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.hb-dtl-policy-box {
	background-color: #f8fafc;
	padding: 1.2rem;
	border: none !important;
	border-radius: 7px !important;
}

.hb-dtl-pol-head {
	display: block;
	font-size: 1.05rem !important;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 0.4rem;
}

.hb-dtl-policy-box p {
	margin: 0;
	font-size: 0.98rem !important;
	color: #475569;
	line-height: 1.5;
}

/* 6. Sticky Booking Widget (Right Column) */
.hb-dtl-widget {
	background-color: #ffffff;
	border: none !important;
	border-radius: 7px !important;
	box-shadow: none !important;
}

.hb-dtl-widget-header {
	background-color: #0f172a;
	color: #ffffff;
	padding: 1.5rem;
}

.hb-dtl-widget-tag {
	display: inline-block;
	background-color: #0284c7;
	color: #ffffff;
	font-size: 0.92rem !important;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0.25rem 0.6rem;
	margin-bottom: 0.8rem;
}

.hb-dtl-wprice-box {
	display: flex;
	align-items: baseline;
	gap: 0.4rem;
}

.hb-dtl-wprice-main {
	font-size: 1.35rem !important;
	font-weight: 800;
	color: #38bdf8;
	line-height: 1.1;
}

.hb-dtl-wprice-unit {
	font-size: 1.05rem !important;
	color: #cbd5e1;
}

.hb-dtl-wprice-weekend {
	margin-top: 0.5rem;
	font-size: 0.92rem !important;
	color: #94a3b8;
}

.hb-dtl-wprice-weekend strong {
	color: #ffffff;
}

.hb-dtl-widget-form {
	padding: 1.5rem;
	background-color: #ffffff;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.hb-dtl-wfield-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.8rem;
}

.hb-dtl-wfield {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.hb-dtl-wlabel {
	font-size: 0.92rem !important;
	font-weight: 700;
	color: #1e293b;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.hb-dtl-wlabel svg {
	width: 16px;
	height: 16px;
	color: #0284c7;
}

.hb-dtl-winput,
.hb-dtl-wselect {
	width: 100% !important;
	padding: 0.75rem 0.8rem;
	font-size: 1rem !important;
	background-color: #f1f5f9;
	color: #0f172a;
	border: none !important;
	border-radius: 7px !important;
	box-sizing: border-box;
}

.hb-dtl-winput:focus,
.hb-dtl-wselect:focus {
	background-color: #e0f2fe;
	outline: none;
}

.hb-dtl-calc-box {
	background-color: #f8fafc;
	padding: 1.1rem;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	border: none !important;
	border-radius: 7px !important;
}

.hb-dtl-calc-line {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.98rem !important;
	color: #475569;
}

.hb-dtl-calc-val {
	color: #0f172a;
	font-weight: 700;
}

.hb-calc-dep-line {
	background-color: #e0f2fe;
	margin: 0.3rem -1.1rem -1.1rem;
	padding: 0.9rem 1.1rem;
	color: #0369a1;
	font-weight: 700;
}

.hb-calc-dep-val {
	color: #0369a1;
	font-size: 1.15rem !important;
}

.hb-dtl-wactions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 0.5rem;
}

.hb-btn-dtl-book {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	background-color: #0284c7;
	color: #ffffff;
	padding: 1rem 1.5rem;
	font-size: 1.1rem !important;
	font-weight: 800;
	text-decoration: none;
	border: none !important;
	border-radius: 7px !important;
	box-shadow: none !important;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.hb-btn-dtl-book:hover {
	background-color: #0369a1;
	color: #ffffff;
}

.hb-btn-dtl-book svg {
	width: 18px;
	height: 18px;
}

.hb-btn-dtl-hotline {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background-color: #f1f5f9;
	color: #0f172a;
	padding: 0.8rem 1rem;
	font-size: 0.95rem !important;
	text-decoration: none;
	border: none !important;
	border-radius: 7px !important;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.hb-btn-dtl-hotline:hover {
	background-color: #e2e8f0;
	color: #0284c7;
}

.hb-btn-dtl-hotline svg {
	width: 16px;
	height: 16px;
	color: #0284c7;
}

.hb-dtl-wtrust-list {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	margin-top: 0.5rem;
	padding-top: 1rem;
	background-color: #ffffff;
}

.hb-dtl-wtrust-item {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.92rem !important;
	color: #64748b;
}

.hb-dtl-wtrust-item svg {
	width: 16px;
	height: 16px;
	color: #0284c7;
	flex-shrink: 0;
	margin-top: 2px;
}

/* 7. Related Rooms Section */
.hb-dtl-related-section {
	margin-top: 3rem;
	background-color: #ffffff;
	padding: 2rem;
	border: none !important;
	border-radius: 7px !important;
	box-shadow: none !important;
}

.hb-dtl-related-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.hb-dtl-related-title {
	margin: 0;
	font-size: 1.35rem !important;
	font-weight: 700;
	color: #0f172a;
}

.hb-dtl-related-link {
	color: #0284c7;
	font-weight: 600;
	font-size: 1rem !important;
	text-decoration: none;
}

.hb-dtl-related-link:hover {
	color: #0369a1;
	text-decoration: underline;
}

.hb-dtl-related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.hb-dtl-rel-card {
	background-color: #f8fafc;
	display: flex;
	flex-direction: column;
	border: none !important;
	border-radius: 7px !important;
	overflow: hidden;
}

.hb-dtl-rel-thumb {
	display: block;
	position: relative;
	width: 100% !important;
	height: 200px;
	overflow: hidden;
	background-color: #0f172a;
}

.hb-dtl-rel-thumb img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	display: block;
	transition: opacity 0.2s ease;
}

.hb-dtl-rel-thumb:hover img {
	opacity: 0.92;
}

.hb-dtl-rel-noimg {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #64748b;
}

.hb-dtl-rel-noimg svg {
	width: 48px;
	height: 48px;
}

.hb-dtl-rel-num {
	position: absolute;
	top: 0.8rem;
	left: 0.8rem;
	background-color: #0369a1;
	color: #ffffff;
	padding: 0.25rem 0.6rem;
	font-size: 0.92rem !important;
	font-weight: 700;
}

.hb-dtl-rel-body {
	padding: 1.2rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.hb-dtl-rel-title {
	margin: 0 0 0.8rem 0;
	font-size: 1.15rem !important;
	font-weight: 700;
	line-height: 1.35;
}

.hb-dtl-rel-title a {
	color: #0f172a;
	text-decoration: none;
}

.hb-dtl-rel-title a:hover {
	color: #0284c7;
}

.hb-dtl-rel-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 0.8rem;
}

.hb-dtl-rel-price {
	font-size: 1.15rem !important;
	font-weight: 800;
	color: #0369a1;
}

.hb-dtl-rel-btn {
	background-color: #e0f2fe;
	color: #0369a1;
	padding: 0.45rem 0.9rem;
	font-size: 0.95rem !important;
	font-weight: 700;
	text-decoration: none;
	border: none !important;
	border-radius: 7px !important;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.hb-dtl-rel-btn:hover {
	background-color: #0369a1;
	color: #ffffff;
}

/* 8. Lightbox Helper & Body Lock */
body.hb-lb-opened {
	overflow: hidden !important;
}

/* 9. Responsive Adjustments for Room Detail */
@media (max-width: 992px) {
	.hb-dtl-columns {
		flex-direction: column;
	}

	.hb-dtl-sidebar {
		width: 100% !important;
		flex: 1 1 100%;
		position: static;
	}

	.hb-detail-gallery-modern {
		grid-template-columns: 1fr;
		max-height: none;
		height: auto;
	}

	.hb-ggrid-hero {
		height: 320px !important;
	}

	.hb-ggrid-thumbs {
		display: none;
	}

	.hb-dtl-highlights {
		grid-template-columns: 1fr;
	}

	.hb-dtl-policy-grid {
		grid-template-columns: 1fr;
	}

	.hb-dtl-title-row {
		flex-direction: column;
	}

	.hb-dtl-header-actions {
		align-items: flex-start;
		width: 100%;
		flex-direction: row;
		justify-content: space-between;
	}
}

@media (max-width: 640px) {
	.hb-dtl-header-box {
		padding: 1rem;
	}

	.hb-dtl-h1 {
		font-size: 1.25rem !important;
	}

	.hb-dtl-specs-grid {
		grid-template-columns: 1fr;
	}

	.hb-dtl-card {
		padding: 1.2rem;
	}

	.hb-dtl-wfield-row {
		grid-template-columns: 1fr;
	}

	.hb-dtl-branch-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.hb-dtl-branch-cinema-btn {
		width: 100%;
		justify-content: center;
	}

	.hb-btn-view-all-photos {
		bottom: 0.5rem;
		right: 0.5rem;
		padding: 0.5rem 0.8rem;
		font-size: 0.94rem !important;
	}
}

/* ==========================================================================
   PayOS Online Payment Gateway Styles (VietQR Pro, Napas247, Instant Verify)
   Flat Basic Design - No Borders, No Shadows, 0px Radius, System Font
   ========================================================================== */
.hb-hidden {
	display: none !important;
}

.hb-payos-option {
	background-color: #f0fdf4 !important;
}

.hb-opt-title-group {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	flex-wrap: wrap;
}

.hb-badge-instant {
	background-color: #059669;
	color: #ffffff;
	font-size: 0.92rem !important;
	font-weight: 700;
	padding: 0.2rem 0.6rem;
	border-radius: 7px !important;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.hb-payos-payment-box {
	background-color: #f0fdf4;
	padding: 1.5rem;
	margin: 1.5rem 0;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-payos-alert-bar {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 1.05rem !important;
	font-weight: 700;
	color: #166534;
	margin-bottom: 1.2rem;
}

.hb-payos-alert-bar svg {
	width: 22px;
	height: 22px;
	color: #16a34a;
	flex-shrink: 0;
}

.hb-payos-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin: 1.2rem 0;
}

.hb-btn-payos-checkout {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	background-color: #0284c7;
	color: #ffffff;
	font-size: 1.1rem !important;
	font-weight: 800;
	padding: 1rem 1.6rem;
	text-decoration: none;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.hb-btn-payos-checkout:hover {
	background-color: #0369a1;
	color: #ffffff;
}

.hb-btn-payos-checkout svg {
	width: 20px;
	height: 20px;
}

.hb-payos-listening-box {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	background-color: #ffffff;
	padding: 0.9rem 1.2rem;
	font-size: 0.95rem !important;
	color: #334155;
	border-radius: 7px !important;
	border: none !important;
}

.hb-payos-pulse-dot {
	width: 12px;
	height: 12px;
	background-color: #0284c7;
	flex-shrink: 0;
	border-radius: 7px !important;
	animation: hb-pulse 1.4s infinite ease-in-out;
}

@keyframes hb-pulse {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.3;
		transform: scale(0.85);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.hb-text-success {
	color: #15803d !important;
	font-weight: 700;
}

/* Precise Date & Time Split Layout */
.hb-datetime-split {
	display: flex;
	gap: 0.6rem;
	align-items: center;
	width: 100%;
}

.hb-datetime-split .hb-field-input {
	flex: 2;
}

.hb-datetime-split .hb-field-select {
	flex: 1.2;
	min-width: 110px;
}

@media (max-width: 640px) {
	.hb-datetime-split {
		flex-direction: column;
		gap: 0.4rem;
	}
}

/* ==========================================================================
   Vacation Combo Packages (Gói Combo Nghỉ Dưỡng) - Wide Flat Design
   ========================================================================== */

/* 1. Instant Booking Modal - Wide 2-Column Desktop, Compact Mobile */
.hb-combo-modal {
	position: fixed;
	inset: 0;
	z-index: 999999;
	background-color: rgba(15, 23, 42, 0.75);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
	box-sizing: border-box;
}

.hb-combo-modal.active {
	display: flex !important;
}

.hb-combo-modal-content {
	background-color: #ffffff;
	width: 100% !important;
	max-width: 1060px !important;
	max-height: 94vh;
	overflow-y: auto;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
	box-sizing: border-box;
	padding: 0;
}

.hb-combo-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #0369a1;
	color: #ffffff;
	padding: 0.65rem 1rem;
	border-radius: 7px 7px 0 0 !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-combo-modal-title-box {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.hb-combo-modal-tag {
	font-size: 0.94rem !important;
	font-weight: 700;
	color: #fde047;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.hb-combo-modal-title {
	margin: 0;
	font-size: 1.25rem !important;
	font-weight: 700;
	color: #ffffff !important;
	line-height: 1.3;
}

.hb-combo-modal-close {
	background-color: #075985;
	color: #ffffff !important;
	width: 38px;
	height: 38px;
	font-size: 1.6rem !important;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-combo-modal-close:hover {
	background-color: #0c4a6e;
}

.hb-combo-modal-body {
	padding: 0.8rem;
	background-color: #f8fafc;
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 0.85rem;
	align-items: start;
}

@media (max-width: 860px) {
	.hb-combo-modal-body {
		display: flex;
		flex-direction: column;
		gap: 0.6rem;
		padding: 0.5rem;
	}
}

/* Combo Overview Banner inside Modal */
.hb-cm-banner {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	background-color: #ffffff;
	padding: 0.85rem;
	margin-bottom: 0;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

@media (max-width: 860px) and (min-width: 521px) {
	.hb-cm-banner {
		display: grid;
		grid-template-columns: 160px 1fr;
		gap: 0.75rem;
	}
}

.hb-cm-thumb-wrap {
	position: relative;
	width: 100% !important;
	height: 190px;
	min-height: 170px;
	background-color: #e2e8f0;
	overflow: hidden;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

@media (max-width: 860px) and (min-width: 521px) {
	.hb-cm-thumb-wrap {
		height: 100%;
		min-height: 140px;
	}
}

.hb-cm-img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	display: block;
	border-radius: 7px !important;
}

.hb-cm-badge-top {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #d97706;
	color: #ffffff;
	font-size: 0.94rem !important;
	font-weight: 700;
	padding: 0.2rem 0.5rem;
	border-radius: 7px !important;
}

.hb-cm-discount {
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: #dc2626;
	color: #ffffff;
	font-size: 0.94rem !important;
	font-weight: 700;
	padding: 0.2rem 0.5rem;
	border-radius: 7px !important;
}

.hb-cm-info {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.hb-cm-meta {
	display: flex;
	gap: 0.8rem;
	flex-wrap: wrap;
	font-size: 0.94rem !important;
	color: #475569;
}

.hb-cm-meta svg {
	vertical-align: -2px;
	stroke: #0284c7;
}

.hb-cm-price-row {
	display: flex;
	align-items: baseline;
	gap: 0.4rem;
}

.hb-cm-cur-price {
	font-size: 1.35rem !important;
	font-weight: 800;
	color: #d97706;
}

.hb-cm-unit {
	font-size: 0.94rem !important;
	color: #64748b;
	font-weight: 600;
}

.hb-cm-old-price {
	font-size: 0.94rem !important;
	color: #94a3b8;
	text-decoration: line-through;
}

.hb-cm-perks {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.hb-cm-perks li {
	font-size: 0.94rem !important;
	color: #1e293b;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.hb-cm-perks li svg {
	stroke: #16a34a;
	flex-shrink: 0;
}

/* Modal Form Styles */
.hb-cm-form {
	background-color: #ffffff;
	padding: 0.9rem;
	margin: 0;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-cm-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.65rem;
}

@media (max-width: 600px) {
	.hb-cm-form-grid {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}
}

/* Counter Stepper */
.hb-counter-input {
	display: flex;
	align-items: stretch;
	background-color: #f1f5f9;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
	width: 100% !important;
	box-sizing: border-box;
}

.hb-counter-btn {
	background-color: #e2e8f0;
	color: #0f172a;
	width: 44px;
	min-height: 42px;
	font-size: 1.3rem !important;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.hb-counter-btn:hover {
	background-color: #0284c7;
	color: #ffffff;
}

.hb-counter-num {
	flex: 1;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
	background-color: transparent;
	text-align: center;
	font-size: 1.1rem !important;
	font-weight: 700;
	color: #0f172a;
	padding: 0.4rem;
	-moz-appearance: textfield;
}

.hb-counter-num::-webkit-outer-spin-button,
.hb-counter-num::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Payment Mode Select */
.hb-pm-options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
	margin-top: 0.2rem;
}

@media (max-width: 600px) {
	.hb-pm-options {
		grid-template-columns: 1fr;
	}
}

.hb-pm-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background-color: #f1f5f9;
	padding: 0.6rem 0.8rem;
	cursor: pointer;
	border-radius: 7px !important;
	border: none !important;
	font-size: 0.94rem !important;
	font-weight: 600;
	color: #334155;
}

.hb-pm-item.active,
.hb-pm-item:has(input:checked) {
	background-color: #e0f2fe;
	color: #0369a1;
}

.hb-pm-item input[type="radio"] {
	width: 18px;
	height: 18px;
	accent-color: #0284c7;
	cursor: pointer;
	border-radius: 7px !important;
}

/* Live Total Card */
.hb-cm-total-card {
	background-color: #f1f5f9;
	padding: 0.65rem 0.85rem;
	margin-top: 0.7rem;
	margin-bottom: 0.7rem;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-cm-total-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.98rem !important;
	color: #334155;
	padding: 0.15rem 0;
}

.hb-cm-total-row strong {
	font-size: 1.15rem !important;
	font-weight: 800;
	color: #0f172a;
}

.hb-cm-deposit-row {
	margin-top: 0.35rem;
	padding-top: 0.4rem;
	border-top: 2px solid #e2e8f0;
	font-weight: 700;
}

.hb-cm-deposit-row strong {
	font-size: 1.3rem !important;
	color: #dc2626 !important;
}

.hb-btn-submit-combo {
	width: 100% !important;
	background-color: #d97706;
	color: #ffffff !important;
	padding: 0.8rem 1.2rem;
	font-size: 1.1rem !important;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
	transition: background-color 0.15s ease;
}

.hb-btn-submit-combo:hover {
	background-color: #b45309;
}

/* Combo Booking Success View - Wide Layout */
.hb-cm-success-result {
	grid-column: 1 / -1;
	width: 100% !important;
}

.hb-combo-success-box {
	background-color: #ffffff;
	padding: 0.9rem;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
	display: grid;
	grid-template-columns: 330px 1fr;
	gap: 0.85rem;
	align-items: start;
}

@media (max-width: 780px) {
	.hb-combo-success-box {
		display: flex;
		flex-direction: column;
		gap: 0.75rem;
	}
}

.hb-rc-success-banner {
	grid-column: 1 / -1;
	background-color: #ecfdf5;
	color: #065f46;
	padding: 0.85rem 1rem;
	margin-bottom: 0.6rem;
	text-align: center;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-rc-success-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background-color: #10b981;
	color: #ffffff;
	margin-bottom: 0.35rem;
	border-radius: 7px !important;
}

.hb-rc-success-title {
	margin: 0 0 0.25rem 0;
	font-size: 1.25rem !important;
	font-weight: 800;
	color: #065f46 !important;
}

.hb-rc-success-desc {
	margin: 0;
	font-size: 0.98rem !important;
	color: #047857;
	line-height: 1.45;
}

.hb-cm-qr-card {
	background-color: #f8fafc;
	padding: 0.8rem;
	margin-bottom: 0;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	text-align: center;
}

.hb-cm-qr-left {
	text-align: center;
}

.hb-vietqr-code-img {
	width: 170px;
	height: 170px;
	object-fit: contain;
	background-color: #ffffff;
	padding: 6px;
	display: inline-block;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-cm-qr-hint {
	margin: 0.35rem 0 0 0;
	font-size: 0.94rem !important;
	color: #64748b;
	font-weight: 600;
}

.hb-cm-qr-right {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	text-align: left;
}

.hb-cm-bank-info-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #ffffff;
	padding: 0.45rem 0.75rem;
	font-size: 0.94rem !important;
	color: #334155;
	border-radius: 7px !important;
}

.hb-btn-copy-code {
	background-color: #0284c7;
	color: #ffffff !important;
	padding: 0.2rem 0.5rem;
	font-size: 0.85rem !important;
	cursor: pointer;
	vertical-align: middle;
	margin-left: 0.4rem;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

.hb-btn-copy-code.copied {
	background-color: #16a34a !important;
}

.hb-cm-result-actions {
	grid-column: 1 / -1;
	display: flex;
	gap: 0.65rem;
	margin-top: 0.65rem;
}

@media (max-width: 600px) {
	.hb-cm-result-actions {
		flex-direction: column;
	}
}

.hb-btn-receipt-action {
	flex: 1;
	padding: 0.75rem 1rem;
	font-size: 1rem !important;
	font-weight: 700;
	text-align: center;
	text-decoration: none !important;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
}

/* 2. Dedicated Booking Page Layout (/dat-combo/) */
.hb-combo-page-container {
	width: 100% !important;
	max-width: 1200px !important;
	margin: 0 auto;
	padding: 1.5rem 1rem;
	box-sizing: border-box;
}

.hb-combo-page-layout {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 1.5rem;
	align-items: start;
	width: 100% !important;
}

@media (max-width: 960px) {
	.hb-combo-page-layout {
		grid-template-columns: 1fr;
	}
}

.hb-combo-summary-card {
	background-color: #ffffff;
	padding: 1.2rem;
	border-radius: 7px !important;
	border: none !important;
	box-shadow: none !important;
	position: sticky;
	top: 90px;
}

