/* =============================================================
   Stay and Play — Front-end Core Styles
   All design tokens come from the active theme's theme.css.
   ============================================================= */

/* --- Layout containers ---------------------------------------- */
.hb-main-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 18px 14px 70px;
	font-family: var(--hb-font, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif);
	color: var(--hb-text);
	position: relative;
	isolation: isolate;
	box-sizing: border-box;
}

.hb-main-container *,
.hb-main-container *::before,
.hb-main-container *::after { box-sizing: border-box; }

/* --- Section headings ---------------------------------------- */
.hb-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 10px;
	margin: 18px 2px 10px;
}
.hb-section-head h3 { margin: 0; font-size: 18px; letter-spacing: -.01em; color: var(--hb-text); }
.hb-section-head p  { margin: 0; color: var(--hb-muted); font-size: 12px; }

/* --- Banner -------------------------------------------------- */
.hb-banner-wrapper {
	border-radius: var(--hb-radius);
	overflow: hidden;
	border: 1px solid var(--hb-border);
	box-shadow: var(--hb-shadow);
	background: var(--hb-card);
	position: relative;
	margin-bottom: 14px;
}

.hb-banner-img,
.hb-banner-video { width: 100%; display: block; max-height: 420px; object-fit: cover; }

/* --- Cards --------------------------------------------------- */
.hb-card {
	background: var(--hb-card);
	border: 1px solid var(--hb-border);
	border-radius: var(--hb-radius2);
	overflow: hidden;
	transition: box-shadow .2s, border-color .2s;
}
.hb-card:hover { box-shadow: var(--hb-shadow2); border-color: var(--hb-accent); }
.hb-card-img { width: 100%; object-fit: cover; display: block; max-height: 200px; }
.hb-card-body { padding: 14px; }
.hb-card-title { font-size: 16px; font-weight: 600; color: var(--hb-text); margin: 0 0 6px; }
.hb-card-price { font-size: 14px; color: var(--hb-accent); font-weight: 700; margin-bottom: 6px; }
.hb-card-desc  { font-size: 13px; color: var(--hb-muted); line-height: 1.5; margin-bottom: 10px; }

/* --- Booking two-column layout ------------------------------ */
.hb-booking-layout { display: flex; gap: 24px; padding: 20px 0; }
.hb-booking-left   { flex: 3; min-width: 0; }
.hb-booking-right  { flex: 1; min-width: 260px; display: flex; flex-direction: column; gap: 16px; }

/* --- Sidebar / Cart box ------------------------------------- */
.hb-sidebar-wrap {
	border-radius: var(--hb-radius2);
	border: 1px solid var(--hb-border);
	background: var(--hb-card);
	overflow: hidden;
}
.hb-sidebar-box { padding: 14px 16px; border-bottom: 1px solid var(--hb-border); }
.hb-sidebar-box:last-child { border-bottom: none; }
.hb-sidebar-box h4 { margin: 0 0 10px; font-size: 15px; font-weight: 700; color: var(--hb-text); }

/* --- Price rows --------------------------------------------- */
.hb-price-rows { display: flex; flex-direction: column; gap: 8px; }
.hb-price-row  { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: baseline; }
.hb-price-row .hb-label { font-size: 13px; color: var(--hb-muted); }
.hb-price-row .hb-value { font-size: 13px; font-weight: 600; color: var(--hb-text); text-align: right; white-space: nowrap; }
.hb-price-row.hb-total  { padding-top: 8px; border-top: 1px dashed var(--hb-border); }
.hb-price-row.hb-total .hb-label,
.hb-price-row.hb-total .hb-value { font-size: 15px; font-weight: 700; color: var(--hb-text); }

/* --- Divider ------------------------------------------------ */
.hb-divider { height: 1px; background: var(--hb-border); margin: 10px 0; }

/* --- Stepper dates ------------------------------------------ */
.hb-date-stepper { display: flex; flex-direction: column; gap: 10px; position: relative; padding-left: 20px; }
.hb-date-stepper::before {
	content: '';
	position: absolute;
	left: 7px; top: 12px; bottom: 12px;
	width: 2px;
	background: var(--hb-border);
	border-radius: 2px;
}
.hb-date-step {
	position: relative;
	padding: 10px 12px;
	border-radius: var(--hb-radius2);
	background: var(--hb-bg2);
	border: 1px solid var(--hb-border);
}
.hb-date-step::before {
	content: '';
	position: absolute;
	left: -20px; top: 14px;
	width: 10px; height: 10px;
	border-radius: 50%;
	background: var(--hb-text);
	box-shadow: 0 0 0 3px var(--hb-border);
}
.hb-date-step .hb-step-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--hb-muted); margin-bottom: 3px; }
.hb-date-step .hb-step-value { font-size: 13px; font-weight: 600; color: var(--hb-text); }

/* --- Coupon input ------------------------------------------- */
.hb-coupon-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: center; }
.hb-coupon-input {
	width: 100%; height: 40px;
	border-radius: 10px;
	padding: 0 12px;
	border: 1px solid var(--hb-border);
	background: var(--hb-bg2);
	color: var(--hb-text);
	font-size: 13px;
	outline: none;
}
.hb-coupon-input:focus { border-color: var(--hb-accent); }
.hb-coupon-input::placeholder { color: var(--hb-muted); }

/* --- Buttons ----------------------------------------------- */
.hb-btn {
	display: inline-flex; align-items: center; justify-content: center;
	height: 44px; padding: 0 20px;
	border-radius: 12px; border: none; cursor: pointer;
	font-size: 14px; font-weight: 700;
	text-decoration: none; transition: opacity .15s, box-shadow .15s;
	white-space: nowrap;
}
.hb-btn:hover { opacity: .88; }
.hb-btn-primary { background: var(--hb-accent); color: var(--hb-btn-text, #fff); }
.hb-btn-secondary { background: var(--hb-card); color: var(--hb-text); border: 1px solid var(--hb-border); }
.hb-btn-white { background: rgba(255,255,255,.92); color: #111; }
.hb-btn-full  { width: 100%; }
.hb-btn-sm    { height: 34px; padding: 0 14px; font-size: 12px; border-radius: 8px; }

/* --- Item lists (extras/services) --------------------------- */
.hb-item-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.hb-item-list li {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	padding: 10px 12px;
	border-radius: 12px;
	background: var(--hb-bg2);
	border: 1px solid var(--hb-border);
}
.hb-item-list .hb-item-name { font-size: 13px; font-weight: 600; color: var(--hb-text); }
.hb-item-list .hb-item-meta { font-size: 12px; color: var(--hb-muted); margin-top: 2px; }
.hb-item-list .hb-remove { cursor: pointer; color: var(--hb-muted); transition: color .15s; }
.hb-item-list .hb-remove:hover { color: var(--hb-accent); }

/* --- Map ---------------------------------------------------- */
.hb-map { width: 100%; height: 165px; border-radius: var(--hb-radius2); overflow: hidden; border: 1px solid var(--hb-border); margin-bottom: 12px; }

/* --- Extras grid -------------------------------------------- */
.hb-extras-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 16px;
}
.hb-extra-card {
	background: var(--hb-card);
	border: 1px solid var(--hb-border);
	border-radius: var(--hb-radius2);
	padding: 14px;
	display: flex; flex-direction: column; gap: 8px;
}
.hb-extra-card-img  { width: 100%; height: 120px; object-fit: cover; border-radius: 8px; }
.hb-extra-card-title { font-size: 14px; font-weight: 700; color: var(--hb-text); }
.hb-extra-card-price { font-size: 13px; color: var(--hb-accent); font-weight: 700; }
.hb-extra-card-desc  { font-size: 12px; color: var(--hb-muted); line-height: 1.5; flex: 1; }
.hb-extras-checkbox  {
	width: 100%; padding: 8px;
	border-radius: 8px;
	border: 1.5px solid var(--hb-border);
	background: var(--hb-bg2);
	cursor: pointer;
	accent-color: var(--hb-accent);
}
.hb-extras-checkbox:checked { border-color: var(--hb-accent); }

/* --- Packages grid ------------------------------------------ */
.hb-packages-grid {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
}
.hb-package-card {
	width: 300px; min-width: 240px;
	border-radius: var(--hb-radius);
	border: 2px solid transparent;
	background: var(--hb-card);
	overflow: hidden;
	position: relative;
	transition: border-color .2s, box-shadow .2s;
}
.hb-package-card.hb-best-value { border-color: var(--hb-accent); box-shadow: 0 0 20px rgba(124,58,237,.25); }
.hb-package-header { padding: 20px; background: rgba(255,255,255,.05); border-bottom: 1px solid var(--hb-border); }
.hb-package-body   { padding: 20px; }
.hb-package-name   { font-size: 22px; font-weight: 800; color: var(--hb-text); }
.hb-package-price  { font-size: 26px; font-weight: 900; color: var(--hb-text); }
.hb-package-price .per { font-size: 13px; color: var(--hb-muted); }
.hb-package-desc   { font-size: 14px; color: var(--hb-muted); margin: 8px 0 16px; }
.hb-package-included, .hb-package-excluded { list-style: none; padding: 0; margin: 0 0 16px; line-height: 1.9; font-size: 14px; }
.hb-package-included li { color: #7CFC00; }
.hb-package-excluded li { color: var(--hb-muted); text-decoration: line-through; }
.hb-package-note { background: rgba(255,255,255,.05); border-radius: 12px; padding: 12px; font-size: 13px; color: var(--hb-muted); }

/* --- Gallery ----------------------------------------------- */
.hb-gallery { display: flex; flex-direction: column; gap: 12px; }
.hb-gallery-main img { width: 100%; border-radius: var(--hb-radius2); border: 1px solid var(--hb-border); object-fit: cover; max-height: 360px; display: block; }
.hb-gallery-thumbs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.hb-gallery-thumbs .hb-thumb-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; border: 2px solid transparent; cursor: pointer; }
.hb-gallery-thumbs .hb-thumb-item.active img { border-color: var(--hb-accent); }

/* --- Star rating ------------------------------------------- */
.hb-hotel-rating    { display: inline-flex; align-items: center; gap: 8px; }
.hb-stars-wrapper   { position: relative; display: inline-block; font-size: 18px; line-height: 1; }
.hb-stars-background { color: var(--hb-border); letter-spacing: 2px; }
.hb-stars-foreground {
	color: #ffc107;
	position: absolute; top: 0; left: 0;
	overflow: hidden; white-space: nowrap;
}
.hb-rating-number { font-size: 14px; font-weight: 600; color: var(--hb-text); }

/* --- Currency / price display ------------------------------ */
.hb-price { font-weight: 700; color: var(--hb-text); }
.hb-currency-symbol { margin-right: 1px; }
.hb-currency-amount { }

/* --- Notice ------------------------------------------------ */
.hb-notice {
	display: inline-block; padding: 10px 16px;
	border-radius: 12px;
	background: var(--hb-accent);
	color: #fff; font-size: 13px;
}

.hb-booking-empty {
	background: rgba(124,58,237,.15);
	border: 1px solid var(--hb-accent);
	border-radius: var(--hb-radius2);
	padding: 20px;
	text-align: center;
	color: var(--hb-text);
}
.hb-booking-empty a { color: var(--hb-accent); }

/* --- Form fields ------------------------------------------- */
.hb-form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.hb-form-field { display: flex; flex-direction: column; gap: 5px; }
.hb-form-label { font-size: 13px; font-weight: 600; color: var(--hb-text); }
.hb-required   { color: var(--hb-accent); }

.hb-form-input,
.hb-form-select {
	height: 42px; padding: 0 12px;
	border-radius: 10px;
	border: 1px solid var(--hb-border);
	background: var(--hb-bg2);
	color: var(--hb-text);
	font-size: 14px; width: 100%;
	outline: none; transition: border-color .15s;
}
.hb-form-input:focus,
.hb-form-select:focus { border-color: var(--hb-accent); }
.hb-form-input::placeholder { color: var(--hb-muted); }

/* Read-only reservation fields */
.hb_manage_reservation_not_allowed { opacity: .5; pointer-events: none; cursor: not-allowed; }

/* --- Guest info card --------------------------------------- */
.hb-guest-info-wrapper {
	border: 1px solid var(--hb-border);
	border-radius: var(--hb-radius2);
	margin-bottom: 20px;
	overflow: hidden;
}
.hb-guest-info-header {
	display: flex; align-items: center; gap: 12px;
	padding: 12px 16px;
	background: var(--hb-card);
	border-bottom: 1px solid var(--hb-border);
}
.hb-guest-info-title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--hb-muted); }
.hb-is-me-label { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--hb-text); cursor: pointer; margin-left: auto; }
.hb-is-me-radio { accent-color: var(--hb-accent); }
.hb-guest-info-form { padding: 16px; }

/* --- Checkout step header ---------------------------------- */
.hb-step-header {
	font-size: 24px; font-weight: 800;
	color: var(--hb-text);
	margin-bottom: 20px;
	display: flex; align-items: center; gap: 14px;
}
.hb-step-number {
	width: 32px; height: 32px;
	border-radius: 50%;
	background: var(--hb-accent);
	color: #fff;
	font-size: 14px; font-weight: 900;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}

/* --- Date range bar ---------------------------------------- */
.hb-date-bar {
	display: flex; gap: 10px; flex-wrap: wrap;
	margin-bottom: 20px;
}
.hb-date-chip {
	background: var(--hb-card);
	border: 1px solid var(--hb-border);
	border-radius: 20px;
	padding: 6px 14px;
	font-size: 13px; font-weight: 600;
	color: var(--hb-text);
}

/* --- Amenities tags ---------------------------------------- */
.hb-amenities { display: flex; flex-wrap: wrap; gap: 6px; }
.hb-amenity-tag {
	padding: 4px 10px;
	border: 1px solid var(--hb-border);
	border-radius: 20px;
	font-size: 12px;
	color: var(--hb-text);
	background: var(--hb-bg2);
}

/* --- Room services list ------------------------------------ */
.hb-room-services-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.hb-room-service-item {
	display: flex; align-items: center; gap: 10px;
	font-size: 14px; color: var(--hb-text);
}
.hb-room-service-thumb { width: 40px; height: 40px; object-fit: cover; border-radius: 8px; }

/* --- My Account bookings table ----------------------------- */
.hb-bookings-table { width: 100%; border-collapse: collapse; font-size: 14px; color: var(--hb-text); }
.hb-bookings-table th, .hb-bookings-table td { padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--hb-border); }
.hb-bookings-table th { font-weight: 700; background: var(--hb-card); }

/* --- Stripe card field ------------------------------------- */
#hb-stripe-card-element {
	padding: 12px;
	border: 1px solid var(--hb-border);
	border-radius: 10px;
	background: var(--hb-bg2);
	margin-bottom: 14px;
}

/* --- Responsive -------------------------------------------- */
@media (max-width: 768px) {
	.hb-booking-layout { flex-direction: column; }
	.hb-booking-right  { min-width: unset; }
	.hb-form-row       { grid-template-columns: 1fr; }
	.hb-coupon-row     { grid-template-columns: 1fr auto; }
	.hb-packages-grid  { flex-direction: column; align-items: center; }
	.hb-package-card   { width: 100%; max-width: 400px; }
}

@media (max-width: 480px) {
	.hb-extras-grid { grid-template-columns: 1fr 1fr; }
	.hb-date-bar    { flex-direction: column; }
}

/* =============================================================
   My Account & Thank You page styles
   ============================================================= */

.hb-account-shell,
.hb-thankyou-shell {
	max-width: 860px;
	margin: 0 auto;
}

/* Section headings with badge */
.hb-account-section-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 24px 0 10px;
}

.hb-account-badge {
	width: 28px; height: 28px;
	border-radius: 50%;
	background: var(--hb-accent);
	color: #fff;
	font-size: 13px; font-weight: 700;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}

.hb-account-txt {
	font-size: 16px; font-weight: 700;
	color: var(--hb-text);
}

/* Card container */
.hb-account-card {
	background: var(--hb-card);
	border: 1px solid var(--hb-border);
	border-radius: var(--hb-radius2);
	padding: 16px 20px;
	margin-bottom: 8px;
}

.hb-account-actions {
	margin: 12px 0 20px;
	display: flex; gap: 10px; flex-wrap: wrap;
}

.hb-account-back {
	margin-bottom: 16px;
}

/* Thank you header */
.hb-thankyou-header {
	text-align: center;
	padding: 32px 20px 24px;
}

.hb-success-icon {
	width: 60px; height: 60px;
	border-radius: 50%;
	background: var(--hb-accent);
	color: #fff;
	font-size: 30px; font-weight: 900;
	display: inline-flex; align-items: center; justify-content: center;
	margin-bottom: 14px;
}

.hb-thankyou-title {
	font-size: 26px; font-weight: 800;
	color: var(--hb-text);
	margin: 0 0 6px;
}

.hb-thankyou-ref {
	font-size: 14px;
	color: var(--hb-muted);
	margin: 0;
}

/* Stripe elements */
.hb-stripe-card-element {
	padding: 12px;
	border: 1px solid var(--hb-border);
	border-radius: 10px;
	background: var(--hb-bg2);
	margin-bottom: 12px;
}

.hb-stripe-error {
	color: #ef4444;
	font-size: 13px;
	margin-bottom: 10px;
	min-height: 18px;
}

/* Payment section */
.hb-payment-section {
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid var(--hb-border);
}

.hb-payment-title {
	font-size: 18px; font-weight: 700;
	color: var(--hb-text);
	margin: 0 0 14px;
}

/* Hotel header on single product page */
.hb-hotel-header {
	display: flex;
	gap: 24px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}

.hb-hotel-hero-gallery { flex: 1; min-width: 260px; }
.hb-hotel-info         { flex: 1; min-width: 220px; }
.hb-hotel-name         { font-size: 24px; font-weight: 800; color: var(--hb-text); margin: 0 0 8px; }
.hb-hotel-address      { font-size: 13px; color: var(--hb-muted); margin: 6px 0; }
.hb-hotel-meta-row     { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0; }
.hb-hotel-rating-wrap  { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hb-price-from         { font-size: 13px; color: var(--hb-accent); font-weight: 600; }

/* Room card */
.hb-rooms-list       { display: flex; flex-direction: column; gap: 20px; }
.hb-room-card-inner  { display: flex; gap: 20px; flex-wrap: wrap; }
.hb-room-gallery     { flex: 1; min-width: 200px; }
.hb-room-details     { flex: 2; min-width: 220px; display: flex; flex-direction: column; gap: 10px; }
.hb-room-meta-row    { display: flex; flex-wrap: wrap; gap: 6px; }
.hb-room-desc        { font-size: 14px; color: var(--hb-muted); line-height: 1.6; }
.hb-room-services-wrap { margin-top: 4px; }

.hb-meta-chip {
	display: inline-flex; align-items: center; gap: 4px;
	padding: 4px 10px;
	border-radius: 20px;
	border: 1px solid var(--hb-border);
	background: var(--hb-card);
	font-size: 12px; color: var(--hb-text);
}

.hb-price-chip { color: var(--hb-accent); border-color: var(--hb-accent); }
.hb-icon       { font-style: normal; }

/* Included grid on booking page */
.hb-included-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 14px;
	margin-bottom: 20px;
}

/* Booking form actions */
.hb-booking-form-actions {
	margin-top: 20px;
	display: flex; gap: 10px;
}

/* Banner content overlay — full-cover gradient for clear text */
.hb-banner-content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px 28px;
	background:
		linear-gradient(
			to top,
			rgba(0,0,0,.80) 0%,
			rgba(0,0,0,.50) 45%,
			rgba(0,0,0,.15) 75%,
			rgba(0,0,0,.00) 100%
		);
	pointer-events: none;
}

.hb-banner-title {
	font-size: 28px; font-weight: 800;
	color: #fff; margin: 0 0 6px;
	text-shadow:
		0 1px 3px  rgba(0,0,0,.9),
		0 4px 16px rgba(0,0,0,.7);
}

.hb-banner-desc {
	font-size: 15px;
	color: rgba(255,255,255,.92);
	margin: 0;
	text-shadow: 0 1px 4px rgba(0,0,0,.8);
}

.hb-banner-wrapper { position: relative; }

/* Banner iframe/video */
.hb-banner-video-wrap { position: relative; width: 100%; padding-top: 42%; overflow: hidden; }
.hb-banner-iframe     { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.hb-banner-video      { width: 100%; display: block; max-height: 420px; object-fit: cover; }

/* Gallery slider wrapper */
.hb-gallery-slider-wrap { overflow: hidden; border-radius: var(--hb-radius2); margin-bottom: 18px; }
.hb-gallery-slider      { display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 4px; }
.hb-gallery-slide       { flex-shrink: 0; scroll-snap-align: start; width: 260px; border-radius: 10px; overflow: hidden; }
.hb-gallery-slide img   { width: 100%; height: 160px; object-fit: cover; display: block; }

/* Date filter bar */
.hb-date-filter-wrap { margin-bottom: 20px; }
.hb-date-filter-form {
	display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-end;
	padding: 16px;
	background: var(--hb-card);
	border: 1px solid var(--hb-border);
	border-radius: var(--hb-radius2);
}

/* Package card per-package color override */
.hb-package-card { --pkg-color: var(--hb-accent); }
.hb-package-header .hb-package-name { color: var(--pkg-color, var(--hb-text)); }
.hb-package-header .hb-package-price { color: var(--pkg-color, var(--hb-accent)); }

/* Package select radio */
.hb-pkg-select-label { cursor: pointer; }
.hb-pkg-select-label input { accent-color: var(--hb-accent); width: 16px; height: 16px; }

/* Hotel card within slider */
.hb-hotel-card .hb-hotel-thumb { width: 100%; height: 160px; object-fit: cover; display: block; }

/* Sidebar actions */
.hb-sidebar-actions { display: flex; flex-direction: column; gap: 8px; }
.hb-muted-text { font-size: 13px; color: var(--hb-muted); margin: 0; }

/* Slider navigation buttons */
.hb-slider { position: relative; }
.hb-s-btn {
	position: absolute; top: 50%; transform: translateY(-50%);
	z-index: 2;
	width: 34px; height: 34px;
	border-radius: 50%;
	border: 1px solid var(--hb-border);
	background: var(--hb-card);
	color: var(--hb-text);
	font-size: 14px; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	transition: background .15s, border-color .15s;
}
.hb-s-btn:hover { background: var(--hb-accent); color: #fff; border-color: var(--hb-accent); }
.hb-s-prev { left: -14px; }
.hb-s-next { right: -14px; }
.hb-packages-wrapper {
	display: flex; gap: 16px;
	overflow-x: auto; scroll-behavior: smooth;
	padding: 4px 2px 10px;
	-ms-overflow-style: none; scrollbar-width: thin;
}
.hb-packages-wrapper::-webkit-scrollbar { height: 6px; }
.hb-packages-wrapper::-webkit-scrollbar-thumb { background: var(--hb-border); border-radius: 999px; }

@media (max-width: 640px) {
	.hb-hotel-header    { flex-direction: column; }
	.hb-room-card-inner { flex-direction: column; }
	.hb-date-filter-form { flex-direction: column; }
	.hb-s-prev { left: 0; }
	.hb-s-next { right: 0; }
}
