/* Hotel Booking Pro — frontend styles. Theme-agnostic, scoped to .hbp- classes. */
:root {
	--hbp-accent: #c0a062;
	--hbp-accent-hover: #a98a4f;
	--hbp-dark: #1c1c1c;
	--hbp-text: #2b2f36;
	--hbp-muted: #8a8f98;
	--hbp-border: #e6e8eb;
	--hbp-bg: #ffffff;
	--hbp-radius: 8px;
}

/* ============================================================ SEARCH BAR */
.hbp-search-bar { display:flex; align-items:stretch; flex-wrap:wrap; background:#fff; border-radius:6px; box-shadow:0 10px 30px rgba(0,0,0,.12); padding:10px 12px; max-width:1040px; margin:0 auto; box-sizing:border-box; }
.hbp-sb-field { display:flex; flex-direction:column; justify-content:center; gap:4px; flex:1 1 auto; min-width:150px; padding:6px 14px; position:relative; }
.hbp-sb-label { font-size:12px; font-weight:600; letter-spacing:.04em; color:var(--hbp-muted); }
.hbp-sb-field input[type="date"], .hbp-sb-field select { border:0; outline:0; background:transparent; font-size:15px; color:var(--hbp-text); padding:2px 0; width:100%; font-family:inherit; cursor:pointer; }
.hbp-sb-field input[type="date"]::-webkit-calendar-picker-indicator { opacity:.6; cursor:pointer; }
.hbp-sb-field select { -webkit-appearance:none; appearance:none; }
.hbp-sb-select::after { content:""; position:absolute; right:12px; bottom:14px; width:12px; height:8px; pointer-events:none; background-repeat:no-repeat; background-size:contain; opacity:.6; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%238a8f98' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); }
.hbp-sb-divider { width:1px; align-self:center; height:42px; background:var(--hbp-border); flex:0 0 auto; }
.hbp-sb-btn { flex:0 0 auto; align-self:center; margin-left:8px; border:0; border-radius:4px; background:var(--hbp-accent); color:#fff; font-size:14px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:13px 28px; cursor:pointer; transition:background .15s ease; }
.hbp-sb-btn:hover { background:var(--hbp-accent-hover); }
@media (max-width:782px){ .hbp-search-bar{flex-direction:column;padding:10px;} .hbp-sb-field{min-width:0;padding:10px 12px;border-bottom:1px solid var(--hbp-border);} .hbp-sb-divider{display:none;} .hbp-sb-btn{margin:12px 0 0;padding:14px;width:100%;} .hbp-sb-select::after{bottom:16px;} }

/* ============================================================ ROOMS SLIDER */
.hbp-slider { position:relative; width:100%; max-width:1200px; margin:0 auto; padding:52px 20px; box-sizing:border-box; overflow:hidden; }
.hbp-slider-heading { text-align:center; font-size:26px; font-weight:600; margin:0 0 22px; color:var(--hbp-text); }
.hbp-slider-track { display:flex; gap:24px; overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth; -webkit-overflow-scrolling:touch; padding:6px 2px 12px; scrollbar-width:none; }
.hbp-slider-track::-webkit-scrollbar { display:none; }
.hbp-slide { scroll-snap-align:start; flex:0 0 calc((100% - (var(--hbp-per-view) - 1) * 24px) / var(--hbp-per-view)); background:#fff; border:1px solid var(--hbp-border); border-radius:6px; overflow:hidden; display:flex; flex-direction:column; box-shadow:0 4px 14px rgba(0,0,0,.05); }
.hbp-slide-thumb { display:block; aspect-ratio:16/11; overflow:hidden; }
.hbp-slide-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.hbp-slide-noimg { display:block; width:100%; height:100%; background:#eceff3; }
.hbp-slide-body { padding:14px 16px 4px; flex:1; }
.hbp-slide-head { display:flex; justify-content:space-between; align-items:baseline; gap:8px; }
.hbp-slide-title { margin:0; font-size:17px; font-weight:600; }
.hbp-slide-title a { color:var(--hbp-text); text-decoration:none; }
.hbp-slide-reviews { font-size:12px; color:var(--hbp-muted); white-space:nowrap; }
.hbp-slide-hotel { margin:6px 0 0; font-size:14px; color:var(--hbp-text); }
.hbp-slide-location { margin:2px 0 0; font-size:13px; color:var(--hbp-muted); }
.hbp-slide-price { margin:10px 0 0; color:var(--hbp-accent); font-size:15px; }
.hbp-slide-price strong { font-size:17px; }
.hbp-slide-price span { color:var(--hbp-muted); font-size:12px; }
.hbp-slide-btn { display:block; text-align:center; margin:14px 0 0; padding:12px; background:var(--hbp-accent); color:#fff; font-weight:600; text-decoration:none; transition:background .15s ease; }
.hbp-slide-btn:hover { background:var(--hbp-accent-hover); color:#fff; }
.hbp-slide-facilities { display:flex; flex-wrap:wrap; align-items:center; gap:16px; margin:14px 0 4px; padding-top:12px; border-top:1px solid var(--hbp-border); color:var(--hbp-accent); }
.hbp-slide-fac { line-height:0; display:inline-flex; }
.hbp-slide-fac svg { width:24px; height:24px; display:block; }
.hbp-slider-arrow { position:absolute; top:38%; transform:translateY(-50%); z-index:3; width:42px; height:42px; border-radius:50%; border:0; background:#fff; box-shadow:0 4px 14px rgba(0,0,0,.18); color:var(--hbp-accent); cursor:pointer; display:flex; align-items:center; justify-content:center; padding:0; }
.hbp-slider-arrow svg { display:block; }
.hbp-slider-arrow:disabled { opacity:.35; cursor:default; }
.hbp-slider-arrow svg { width:20px; height:20px; display:block; }
.hbp-slider-prev { left:6px; }
.hbp-slider-next { right:6px; }
@media (max-width:1024px){ .hbp-slide{ flex-basis:calc((100% - 24px)/2); } }
@media (max-width:640px){ .hbp-slide{ flex-basis:82%; } .hbp-slider-prev{left:0;} .hbp-slider-next{right:0;}
	.hbp-slider-arrow{ display:none; }
	.hbp-slider--mobile-arrows .hbp-slider-arrow{ display:flex; } }

/* ============================================================ SEARCH RESULTS CARDS */
.hbp-results { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:18px; margin-top:26px; }
.hbp-room-card { border:1px solid var(--hbp-border); border-radius:var(--hbp-radius); overflow:hidden; background:#fff; }
.hbp-room-thumb img { width:100%; height:160px; object-fit:cover; display:block; }
.hbp-room-body { padding:14px; }
.hbp-room-title { margin:0 0 8px; font-size:17px; }
.hbp-room-price { margin:0 0 12px; color:var(--hbp-muted); }
.hbp-room-price strong { color:var(--hbp-text); font-size:18px; }

/* ============================================================ SINGLE ROOM PAGE */
.hbp-single { max-width:1160px; margin:0 auto; padding:44px 16px; color:var(--hbp-text); }
.hbp-single-grid { display:grid; grid-template-columns:minmax(0,1fr) 340px; gap:28px; align-items:start; }
.hbp-single-grid > * { min-width:0; }
.hbp-single-main { min-width:0; max-width:100%; }
.hbp-single-titlebar { display:flex; flex-wrap:wrap; justify-content:space-between; align-items:baseline; gap:8px 16px; margin:0 0 16px; }
.hbp-single-title { margin:0; font-size:28px; font-weight:700; }
.hbp-single-price { font-size:16px; color:var(--hbp-accent); }
.hbp-single-price strong { font-size:22px; }
.hbp-single-price span { color:var(--hbp-muted); font-size:13px; }

/* ── Gallery: big main image on top (arrows on sides) + thumbnail row below ── */
.hbp-gallery--flipkart {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.hbp-gallery-stage {
	position: relative;
	width: 100%;
	min-width: 0;
}
.hbp-gallery-main img {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
	border-radius: 12px;
	display: block;
}
.hbp-gallery-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(0,0,0,.06);
	border-radius: 50%;
	background: rgba(255,255,255,.95);
	color: #1c1c1c;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 18px rgba(0,0,0,.16);
	transition: background .15s ease, box-shadow .15s ease, transform .15s ease;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}
.hbp-gallery-arrow svg { display: block; }
.hbp-gallery-arrow:hover {
	background: #fff;
	box-shadow: 0 8px 22px rgba(0,0,0,.22);
}
.hbp-gallery-arrow:active { transform: translateY(-50%) scale(.94); }
.hbp-gallery-prev { left: 14px; }
.hbp-gallery-next { right: 14px; }

/* Thumbnail row below the main image. */
.hbp-gallery--flipkart .hbp-gallery-thumbs {
	display: flex;
	flex-direction: row;
	gap: 10px;
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 4px;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
}
.hbp-gallery--flipkart .hbp-gallery-thumbs::-webkit-scrollbar { height: 5px; }
.hbp-gallery--flipkart .hbp-gallery-thumbs::-webkit-scrollbar-thumb { background: var(--hbp-border); border-radius: 6px; }
.hbp-gallery-thumb {
	padding: 0;
	border: 2px solid transparent;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	background: none;
	width: 84px;
	height: 62px;
	flex: 0 0 auto;
	transition: border-color .15s ease;
}
.hbp-gallery-thumb:hover { border-color: var(--hbp-accent); }
.hbp-gallery-thumb.is-active { border-color: var(--hbp-accent); }
.hbp-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Tablet */
@media (max-width: 900px) {
	.hbp-gallery-main img { max-height: 440px; }
}
/* Mobile */
@media (max-width: 640px) {
	.hbp-gallery { gap: 10px; }
	.hbp-gallery-main img { max-height: 300px; border-radius: 10px; }
	.hbp-gallery-arrow { width: 38px; height: 38px; }
	.hbp-gallery-arrow svg { width: 20px; height: 20px; }
	.hbp-gallery-prev { left: 8px; }
	.hbp-gallery-next { right: 8px; }
	.hbp-gallery-thumb { width: 68px; height: 50px; }
}
@media (max-width: 400px) {
	.hbp-gallery-main img { max-height: 260px; }
	.hbp-gallery-thumb { width: 60px; height: 46px; }
}

.hbp-tabs { margin-top:28px; }
.hbp-tabs-nav { display:flex; gap:22px; border-bottom:1px solid var(--hbp-border); flex-wrap:wrap; }
.hbp-tab { border:0 !important; background:transparent !important; box-shadow:none !important; border-radius:0 !important; padding:0 0 12px !important; font-size:13px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--hbp-muted); cursor:pointer; border-bottom:2px solid transparent !important; margin-bottom:-1px; -webkit-appearance:none; appearance:none; }
.hbp-tab:hover, .hbp-tab:focus, .hbp-tab:active { background:transparent !important; box-shadow:none !important; outline:none !important; color:var(--hbp-accent); }
.hbp-tab.is-active { background:transparent !important; color:var(--hbp-accent); border-bottom-color:var(--hbp-accent) !important; }
.hbp-tab-panel { display:none; padding:16px 0 6px; line-height:1.7; color:#5a5f66; }
.hbp-tab-panel.is-active { display:block; }
.hbp-tab-heading { font-size:17px; font-weight:700; color:var(--hbp-text); margin:6px 0 14px; }
/* When only one panel is active (a specific tab), hide the redundant description-only heading none needed */

.hbp-section-title { font-size:19px; font-weight:700; margin:34px 0 16px; }
.hbp-facilities { display:grid; grid-template-columns:repeat(auto-fill,minmax(140px,1fr)); gap:14px; }
.hbp-facility { border:1px solid var(--hbp-border); border-radius:6px; padding:18px 10px; text-align:center; }
.hbp-facility-icon { display:block; margin-bottom:10px; }
.hbp-facility-name { font-size:13px; color:var(--hbp-accent); font-weight:600; }

.hbp-overview-table { width:100%; border-collapse:collapse; }
.hbp-overview-table th, .hbp-overview-table td { text-align:left; padding:12px 14px; border:1px solid var(--hbp-border); font-size:14px; }
.hbp-overview-table th { width:40%; color:var(--hbp-accent); font-weight:600; background:#faf8f3; }
.hbp-overview-table td { color:#5a5f66; }

/* Sidebar availability box */
.hbp-single-side { display:flex; flex-direction:column; gap:16px; position:sticky; top:20px; }
.hbp-avail-box { border:1px solid var(--hbp-border); border-radius:6px; overflow:hidden; background:#fff; }
.hbp-avail-price { background:var(--hbp-dark); color:#fff; font-weight:700; padding:14px 18px; font-size:15px; }
.hbp-avail-title { color:var(--hbp-accent); font-weight:700; font-size:16px; padding:16px 18px 4px; }
.hbp-avail-form { display:flex; flex-direction:column; gap:10px; padding:12px 18px 20px; }
.hbp-avail-form input, .hbp-avail-form select { border:1px solid var(--hbp-border); border-radius:4px; padding:11px 12px; font-size:14px; font-family:inherit; color:var(--hbp-text); background:#fff; width:100%; }
.hbp-pay-methods { display:flex; flex-direction:column; gap:10px; margin:8px 0 4px; font-size:14px; }
.hbp-pay-label { font-size:12px; font-weight:700; letter-spacing:.04em; color:var(--hbp-muted); text-transform:uppercase; }
.hbp-pay-methods label { display:flex !important; align-items:flex-start; gap:10px; text-align:left; cursor:pointer; line-height:1.4; margin:0; width:100%; }
.hbp-pay-methods input[type="radio"] { margin:2px 0 0 0 !important; flex:0 0 auto; width:16px; height:16px; }
.hbp-avail-btn { border:0; border-radius:4px; background:var(--hbp-accent); color:#fff; font-weight:700; letter-spacing:.06em; text-transform:uppercase; padding:14px; font-size:14px; cursor:pointer; transition:background .15s ease; }
.hbp-avail-btn:hover { background:var(--hbp-accent-hover); }

.hbp-pay-box { padding:18px; }
.hbp-pay-amount { font-size:24px; font-weight:700; color:var(--hbp-accent); margin:6px 0; }
.hbp-pay-meta { font-size:13px; color:var(--hbp-muted); margin:0 0 14px; }

.hbp-side-box { border:1px solid var(--hbp-border); border-radius:6px; padding:16px 18px; display:flex; flex-direction:column; gap:4px; }
.hbp-side-cart strong { color:var(--hbp-accent); }
.hbp-side-cart span { color:var(--hbp-muted); font-size:13px; }
.hbp-side-share { background:var(--hbp-dark); color:#fff; }

@media (max-width:900px){ .hbp-single-grid{grid-template-columns:1fr;} .hbp-single-side{position:static;} }

/* ============================================================ BOOKING FORM / NOTICES */
.hbp-booking-form { display:flex; flex-direction:column; gap:14px; background:#fff; border:1px solid var(--hbp-border); border-radius:var(--hbp-radius); padding:20px; max-width:480px; }
.hbp-field-row { display:flex; gap:14px; }
.hbp-field-row .hbp-field { flex:1; }
.hbp-field { display:flex; flex-direction:column; gap:6px; }
.hbp-field label { font-size:13px; font-weight:600; color:var(--hbp-muted); }
.hbp-field input { padding:10px 12px; border:1px solid var(--hbp-border); border-radius:8px; background:#fff; color:var(--hbp-text); font-size:15px; }
.hbp-btn { display:inline-block; padding:12px 22px; border:0; border-radius:6px; font-size:14px; font-weight:700; letter-spacing:.04em; cursor:pointer; text-decoration:none; transition:background .15s ease; }
.hbp-btn--primary { background:var(--hbp-accent); color:#fff; }
.hbp-btn--primary:hover { background:var(--hbp-accent-hover); color:#fff; }
.hbp-notice { padding:12px 14px; border-radius:8px; margin-bottom:16px; font-size:14px; }
.hbp-notice--success { background:#ecfdf5; color:#065f46; border:1px solid #a7f3d0; }
.hbp-notice--error { background:#fef2f2; color:#991b1b; border:1px solid #fecaca; }
.hbp-no-results { color:var(--hbp-muted); text-align:center; }

.hbp-list { max-width:1000px; margin:0 auto; padding:48px 16px; color:#2b2f36; }
.hbp-list-head { margin-bottom:26px; }
.hbp-list-title { font-size:28px; font-weight:800; margin:0; color:#20232a; letter-spacing:.2px; }
.hbp-list-tagline { font-size:13px; color:var(--hbp-accent); margin:8px 0 0; display:flex; align-items:center; gap:12px; }
.hbp-list-rule { display:inline-block; width:70px; height:1px; background:var(--hbp-accent); }
.hbp-list-row { display:grid; grid-template-columns:160px minmax(0,1fr) 172px; border:1px solid #ececec; border-radius:2px; margin-bottom:22px; overflow:hidden; background:#fff; }
.hbp-list-thumb { display:block; }
.hbp-list-thumb img { width:100%; height:100%; min-height:132px; object-fit:cover; display:block; }
.hbp-list-info { padding:18px 22px; }
.hbp-list-name { margin:0 0 8px; font-size:20px; font-weight:700; color:#20232a; }
.hbp-list-name a { color:inherit; text-decoration:none; }
.hbp-list-desc { margin:0 0 12px; font-size:13px; color:#8891a5; line-height:1.6; max-width:430px; }
.hbp-list-facility-label { margin:0 0 3px; font-size:14px; font-weight:700; color:#20232a; }
.hbp-list-facilities { margin:0; font-size:12px; font-style:italic; color:var(--hbp-accent); line-height:1.5; max-width:430px; }
.hbp-list-price { border-left:1px solid #ececec; background:#fcfcfc; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:2px; padding:18px 12px; }
.hbp-list-amount { font-size:30px; font-weight:700; color:#20232a; line-height:1.1; }
.hbp-list-per { font-size:12px; color:#9aa0a8; margin-bottom:14px; }
.hbp-list-btn { background:var(--hbp-accent); color:#fff; font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:10px 18px; text-decoration:none; border-radius:1px; transition:background .15s ease; }
.hbp-list-btn:hover { background:var(--hbp-accent-hover); color:#fff; }
.hbp-list-unavailable { background:#fbeaea; color:#b03636; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; padding:10px 14px; border-radius:1px; text-align:center; }
.hbp-list-row.is-unavailable { opacity:.9; }
@media (max-width:680px){ .hbp-list-row{ grid-template-columns:1fr; } .hbp-list-price{ border-left:0; border-top:1px solid #ececec; flex-direction:row; gap:16px; justify-content:space-between; padding:16px 20px; } .hbp-list-per{ margin-bottom:0; } }

/* Facility icon colour (uses currentColor SVGs) */
.hbp-facility-icon { color:var(--hbp-accent); }

/* ============================================================ REVIEWS */
.hbp-reviews-summary { display:flex; align-items:center; gap:10px; margin-bottom:18px; }
.hbp-reviews-avg { font-size:30px; font-weight:700; color:var(--hbp-text); }
.hbp-reviews-count { color:var(--hbp-muted); font-size:14px; }
.hbp-stars { color:#d8d8d8; font-size:16px; letter-spacing:1px; }
.hbp-star.is-on { color:var(--hbp-accent); }
.hbp-reviews-list { list-style:none; margin:0 0 24px; padding:0; }
.hbp-review { border-bottom:1px solid var(--hbp-border); padding:14px 0; }
.hbp-review-head { display:flex; align-items:center; gap:10px; margin-bottom:4px; }
.hbp-review-body { margin:4px 0; color:#5a5f66; line-height:1.6; }
.hbp-review-date { font-size:12px; color:var(--hbp-muted); }
.hbp-review-form-title { font-size:17px; margin:18px 0 12px; }
.hbp-review-form { display:flex; flex-direction:column; gap:12px; max-width:520px; width:100%; box-sizing:border-box; }
.hbp-review-form input, .hbp-review-form textarea { box-sizing:border-box; width:100%; max-width:100%; border:1px solid var(--hbp-border); border-radius:6px; padding:11px 12px; font-size:14px; font-family:inherit; color:var(--hbp-text); }
/* star rating input: reverse row so hover fills left-to-right visually */
.hbp-rating-input { display:inline-flex; flex-direction:row-reverse; justify-content:flex-end; gap:2px; }
.hbp-rating-input input { position:absolute; opacity:0; width:0; height:0; }
.hbp-rating-input label { font-size:26px; color:#d8d8d8; cursor:pointer; transition:color .1s ease; }
.hbp-rating-input input:checked ~ label,
.hbp-rating-input label:hover,
.hbp-rating-input label:hover ~ label { color:var(--hbp-accent); }

.hbp-list-search-note { font-size:13px; color:var(--hbp-muted); margin:0 0 18px; }
.hbp-list .pagination, .hbp-list .nav-links { display:flex; gap:8px; justify-content:center; margin-top:20px; }
.hbp-list .page-numbers { padding:8px 12px; border:1px solid #ececec; border-radius:2px; text-decoration:none; color:var(--hbp-text); font-size:13px; }
.hbp-list .page-numbers.current { background:var(--hbp-accent); color:#fff; border-color:var(--hbp-accent); }

/* ============================================================ LIST PAGER */
.hbp-pager { display:flex; align-items:center; justify-content:center; gap:16px; margin:26px 0 10px; }
.hbp-pager-btn { background:var(--hbp-accent); color:#fff; font-size:12px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; padding:10px 18px; text-decoration:none; border-radius:2px; }
.hbp-pager-btn:hover { background:var(--hbp-accent-hover); color:#fff; }
.hbp-pager-btn.is-disabled { background:#e6e6e6; color:#aaa; cursor:default; pointer-events:none; }
.hbp-pager-info { font-size:13px; color:var(--hbp-muted); }

/* ============================================================ MOBILE REFINEMENTS */
@media (max-width:640px){
	.hbp-slider { padding:34px 14px; }
	.hbp-list { padding:30px 14px; }
	.hbp-single { padding:30px 14px; }
	.hbp-slider-heading { font-size:22px; margin-bottom:16px; }
	.hbp-single-title { font-size:23px; }
	.hbp-list-title { font-size:24px; }
	.hbp-gallery-main img { max-height:280px; }
	.hbp-tabs-nav { gap:16px; overflow-x:auto; -webkit-overflow-scrolling:touch; white-space:nowrap; flex-wrap:nowrap; }
	.hbp-tab { flex:0 0 auto; }
	.hbp-facilities { grid-template-columns:repeat(auto-fill,minmax(120px,1fr)); }
	.hbp-single-price { font-size:15px; }
	.hbp-avail-form input, .hbp-avail-form select { font-size:16px; } /* avoids iOS zoom */
}

/* Button-style links should never be underlined by the theme */
.hbp-slide-btn, .hbp-list-btn, .hbp-pager-btn, .hbp-avail-btn, .hbp-btn,
.hbp-slide-title a, .hbp-list-name a { text-decoration:none !important; }
.hbp-slide-title a:hover, .hbp-list-name a:hover { color:var(--hbp-accent); }

/* ============================================================ OVERFLOW SAFEGUARDS (mobile zoom fix) */
.hbp-slider, .hbp-list, .hbp-single, .hbp-archive-wrap, .hbp-search-bar,
.hbp-results, .hbp-reviews, .hbp-booking-form {
	box-sizing:border-box;
	max-width:100%;
	overflow-wrap:break-word;
	word-wrap:break-word;
}
.hbp-slider *, .hbp-list *, .hbp-single *, .hbp-search-bar * { box-sizing:border-box; }
/* content images inside descriptions/reviews never exceed the viewport */
.hbp-tab-panel img, .hbp-review-body img, .hbp-list-desc img { max-width:100%; height:auto; }
/* long unbreakable strings (urls) wrap instead of pushing width */
.hbp-single, .hbp-list, .hbp-reviews { overflow-wrap:anywhere; }

@media (max-width:900px){
	.hbp-single-grid { grid-template-columns:1fr; }
	.hbp-single-side { position:static; }
}
@media (max-width:640px){
	.hbp-list, .hbp-single, .hbp-search-bar, .hbp-archive-wrap, .hbp-slider { overflow-x:hidden; }
}

/* ============================================================ OVERFLOW / RESPONSIVE SAFETY */
[class^="hbp-"], [class*=" hbp-"] { box-sizing:border-box; }
/* Also cover UNCLASSED children (input, textarea, select, button, img, etc.)
   inside plugin containers — these were overflowing because width:100% + padding
   without border-box makes them wider than their column. */
.hbp-single *, .hbp-single-page *, .hbp-archive-page *,
.hbp-reviews *, .hbp-review-form *, .hbp-booking-form *,
.hbp-results *, .hbp-list *, .hbp-slider * {
	box-sizing: border-box;
}
.hbp-single input, .hbp-single textarea, .hbp-single select,
.hbp-single-page input, .hbp-single-page textarea, .hbp-single-page select,
.hbp-booking-form input, .hbp-booking-form textarea, .hbp-booking-form select,
.hbp-review-form input, .hbp-review-form textarea, .hbp-review-form select {
	max-width: 100%;
}
.hbp-slider, .hbp-list, .hbp-single, .hbp-search-bar, .hbp-archive-wrap,
.hbp-single-grid, .hbp-results, .hbp-facilities { max-width:100%; }
.hbp-single, .hbp-list, .hbp-archive-wrap { overflow-x:clip; }
.hbp-slider img, .hbp-list img, .hbp-single img, .hbp-slide img,
.hbp-gallery-main img, .hbp-room-thumb img, .hbp-list-thumb img { max-width:100%; }
.hbp-slider-track { max-width:100%; }
/* the availability sidebar has a fixed 340px column on desktop — make sure it can shrink */
@media (max-width:900px){ .hbp-single-side { width:100%; max-width:100%; } }

/* ============================================================ STOP HORIZONTAL OVERFLOW / MOBILE ZOOM
   Some pages contain an element wider than the screen (often theme hero/section),
   which makes mobile browsers zoom the whole page out. clip prevents that sideways
   overflow without breaking sticky headers or vertical scroll. */
html, body { overflow-x: clip; max-width: 100%; }

@media (max-width:782px){
	.hbp-search-bar, .hbp-slider, .hbp-list, .hbp-single, .hbp-archive-wrap {
		width: 100% !important;
		max-width: 100% !important;
	}
	.hbp-slider-track { width: 100%; }
}

/* ── Property type / offer pricing (Module: Apartments & Hotels) ── */
.hbp-room-thumb { position:relative; }
.hbp-room-tag {
	position:absolute; top:10px; left:10px; background:rgba(17,24,39,.82); color:#fff;
	font-size:12px; font-weight:600; padding:3px 10px; border-radius:999px;
}
.hbp-room-off {
	position:absolute; top:10px; right:10px; background:#16a34a; color:#fff;
	font-size:12px; font-weight:700; padding:3px 10px; border-radius:999px;
}
.hbp-room-loc { display:flex; align-items:center; gap:4px; color:var(--hbp-muted); font-size:13px; margin:0 0 8px; }
.hbp-room-loc .dashicons { font-size:16px; width:16px; height:16px; }
.hbp-price-reg { text-decoration:line-through; color:var(--hbp-muted); font-size:14px; margin-right:6px; }
.hbp-price-offer { color:var(--hbp-accent); font-weight:800; font-size:20px; }
.hbp-price-unit { color:var(--hbp-muted); font-size:13px; margin-left:2px; }
.hbp-room-meta { color:var(--hbp-muted); font-size:12px; margin:0 0 12px; }

/* Live price box in the booking form */
.hbp-price-box {
	background:#f8fafc; border:1px solid var(--hbp-border); border-radius:12px;
	padding:14px 16px; display:flex; flex-direction:column; gap:8px;
}
.hbp-price-line { display:flex; justify-content:space-between; align-items:center; font-size:14px; }
.hbp-price-line--muted { color:var(--hbp-muted); font-size:13px; }
.hbp-price-line--total { border-top:1px dashed var(--hbp-border); padding-top:10px; margin-top:2px; font-size:16px; }
.hbp-price-line--total strong { color:var(--hbp-accent); font-size:20px; }
.hbp-pb-reg { text-decoration:line-through; color:var(--hbp-muted); margin-right:6px; font-size:13px; }
.hbp-price-save { margin:4px 0 0; color:#16a34a; font-weight:600; font-size:13px; }

/* ── Page hero (dark banner, serif title, gold rule, breadcrumb) ── */
.hbp-hero {
	background: var(--hbp-dark, #1c1c1c);
	color: #fff;
	padding: 72px clamp(20px, 6vw, 90px) 60px;
	margin: 0 0 40px;
}
.hbp-hero-inner { max-width: 1180px; margin: 0 auto; }
.hbp-hero-title {
	display: flex;
	align-items: center;
	gap: 28px;
	margin: 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-weight: 700;
	font-size: clamp(34px, 5vw, 56px);
	line-height: 1.05;
	color: #fff;
	letter-spacing: .01em;
}
.hbp-hero-rule {
	flex: 0 0 auto;
	width: clamp(48px, 7vw, 90px);
	height: 2px;
	background: var(--hbp-accent);
	display: inline-block;
}
.hbp-hero-subtitle {
	margin: 16px 0 0;
	color: rgba(255,255,255,.72);
	font-size: 16px;
}
.hbp-hero-crumbs {
	margin-top: 26px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 15px;
}
.hbp-hero-crumb { color: rgba(255,255,255,.7); text-decoration: none; }
.hbp-hero-crumb[href] { color: var(--hbp-accent); }
.hbp-hero-crumb[href]:hover { text-decoration: underline; }
.hbp-hero-crumb--current { color: rgba(255,255,255,.85); }
.hbp-hero-sep { color: rgba(255,255,255,.45); }
@media (max-width:640px){
	.hbp-hero { padding: 40px 18px 32px; }
	.hbp-hero-title { gap: 14px; flex-wrap: wrap; }
	.hbp-hero-rule { width: 40px; }
	.hbp-hero-crumbs { font-size: 13px; gap: 6px; margin-top: 18px; }
	.hbp-hero-subtitle { font-size: 14px; }
}
@media (max-width:400px){
	.hbp-hero-title { font-size: 30px; }
	.hbp-hero-rule { display: none; }
}

/* ── High-level "explore the other type" CTA band ── */
.hbp-cta {
	margin: 56px auto;
	max-width: 1180px;
	border-radius: 18px;
	background: linear-gradient(120deg, #1c1c1c 0%, #24262b 55%, #2b2118 100%);
	color: #fff;
	position: relative;
	overflow: hidden;
	box-shadow: 0 24px 60px -28px rgba(0,0,0,.55);
}
.hbp-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(520px 220px at 88% -10%, rgba(192,160,98,.30), transparent 70%),
		radial-gradient(360px 200px at 6% 120%, rgba(192,160,98,.14), transparent 70%);
	pointer-events: none;
}
.hbp-cta-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 40px clamp(24px, 4vw, 56px);
	flex-wrap: wrap;
}
.hbp-cta-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--hbp-accent);
	margin-bottom: 10px;
}
.hbp-cta-title {
	margin: 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(24px, 3.4vw, 34px);
	font-weight: 700;
	color: #fff;
	line-height: 1.15;
}
.hbp-cta-text {
	margin: 12px 0 0;
	max-width: 560px;
	color: rgba(255,255,255,.72);
	font-size: 15px;
	line-height: 1.6;
}
.hbp-cta-btn {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: var(--hbp-accent);
	color: #1c1c1c;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: .04em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 16px 30px;
	border-radius: 999px;
	transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
	box-shadow: 0 12px 30px -12px rgba(192,160,98,.7);
}
.hbp-cta-btn:hover {
	background: #d8bd82;
	transform: translateY(-2px);
	box-shadow: 0 18px 38px -12px rgba(192,160,98,.85);
}
.hbp-cta-arrow { transition: transform .18s ease; }
.hbp-cta-btn:hover .hbp-cta-arrow { transform: translateX(4px); }
@media (max-width:720px){
	.hbp-cta { margin: 40px 16px; border-radius: 14px; }
	.hbp-cta-inner { padding: 30px 22px; }
	.hbp-cta-btn { width: 100%; justify-content: center; }
}

/* ── Force top-level booking sections to stack vertically (full width) ──
   Some themes drop the archive output into a flex/grid row, which makes the
   hero, results and CTA sit side-by-side. Wrapping everything in one block
   and forcing that block full-width guarantees a single vertical column:
   hero → results → CTA. */
.hbp-archive-page {
	display: block !important;
	float: none !important;
	clear: both !important;
	width: 100% !important;
	max-width: 100% !important;
	grid-column: 1 / -1;
	box-sizing: border-box;
}
.hbp-single-page {
	display: block !important;
	float: none !important;
	clear: both !important;
	width: 100% !important;
	max-width: 100% !important;
	grid-column: 1 / -1;
	box-sizing: border-box;
}
.hbp-single-page > .hbp-hero {
	display: block !important;
	float: none !important;
	clear: both !important;
	width: 100% !important;
	box-sizing: border-box;
}
.hbp-single-page > .hbp-single {
	display: block !important;
	float: none !important;
	clear: both !important;
	width: 100% !important;
	max-width: 1180px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	box-sizing: border-box;
}
.hbp-archive-page > .hbp-hero,
.hbp-archive-page > .hbp-archive-wrap,
.hbp-archive-page > .hbp-cta {
	display: block !important;
	float: none !important;
	clear: both !important;
	width: 100% !important;
	box-sizing: border-box;
}

/* The hero is a full-bleed dark band; results & CTA get a centred column. */
.hbp-archive-wrap {
	max-width: 1180px !important;
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
}
.hbp-cta {
	max-width: 1180px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

/* ── Offer / regular / discount badge (shared across single, list, slider) ── */
.hbp-price-badge {
	display:inline-block; margin-left:6px; padding:1px 8px; border-radius:999px;
	background:#16a34a; color:#fff; font-size:12px; font-weight:700; vertical-align:middle;
}
.hbp-single-price .hbp-price-reg,
.hbp-slide-price .hbp-price-reg,
.hbp-list-amount .hbp-price-reg {
	text-decoration:line-through; color:var(--hbp-muted); font-weight:500; margin-right:6px; font-size:.85em;
}
.hbp-single-price .hbp-price-offer,
.hbp-list-amount .hbp-price-offer { color:var(--hbp-accent); font-weight:800; }
.hbp-list-amount { display:flex; flex-wrap:wrap; align-items:center; gap:4px; }

/* ===================== ROOM CARD (rich UI) ===================== */
.hbp-rc {
	background:#fff;
	border:1px solid #eef0f2;
	border-radius:22px;
	overflow:hidden;
	box-shadow:0 18px 46px -26px rgba(17,24,39,.28);
	display:flex;
	flex-direction:column;
	max-width:420px;
	box-sizing:border-box;
	transition:transform .18s ease, box-shadow .18s ease;
}
.hbp-rc:hover { transform:translateY(-3px); box-shadow:0 26px 56px -26px rgba(17,24,39,.36); }

/* Media */
.hbp-rc-media { position:relative; }
.hbp-rc-imglink { display:block; }
.hbp-rc-img, .hbp-rc-noimg {
	display:block; width:100%; height:270px; object-fit:cover;
}
.hbp-rc-noimg { background:linear-gradient(135deg,#e9edf1,#dfe4ea); }

.hbp-rc-fav {
	position:absolute; top:16px; right:16px;
	width:44px; height:44px; border:0; border-radius:50%;
	background:#fff; cursor:pointer;
	display:flex; align-items:center; justify-content:center;
	box-shadow:0 6px 16px rgba(0,0,0,.18);
	transition:transform .15s ease;
}
.hbp-rc-fav:hover { transform:scale(1.08); }
.hbp-rc-fav svg { fill:#ef4444 !important; stroke:none; transition:transform .15s ease; }
.hbp-rc-fav:hover svg { transform:scale(1.1); }
.hbp-rc-fav.is-active svg { fill:#ef4444 !important; }

.hbp-rc-rating {
	position:absolute; left:16px; bottom:16px;
	display:flex; align-items:center; gap:8px;
	background:rgba(17,24,39,.62);
	-webkit-backdrop-filter:blur(3px); backdrop-filter:blur(3px);
	color:#fff; padding:7px 13px; border-radius:12px;
	font-size:14px; line-height:1;
}
.hbp-rc-rating svg { fill:#f5b301; }
.hbp-rc-rating strong { font-weight:700; }
.hbp-rc-rating-sep { width:1px; height:14px; background:rgba(255,255,255,.4); }

/* Body */
.hbp-rc-body { padding:22px 22px 24px; display:flex; flex-direction:column; }
.hbp-rc-title { margin:0 0 12px; font-size:26px; font-weight:800; line-height:1.15; letter-spacing:-.01em; }
.hbp-rc-title a { color:#111827; text-decoration:none; }
.hbp-rc-title a:hover { color:var(--hbp-accent); }

.hbp-rc-loc {
	display:flex; align-items:center; gap:7px;
	color:#6b7280; font-size:16px; margin:0 0 16px;
}
.hbp-rc-loc svg { color:var(--hbp-accent); flex:0 0 auto; }

.hbp-rc-facs { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:20px; }
.hbp-rc-fac {
	display:inline-flex; align-items:center; gap:8px;
	border:1px solid #eceff2; border-radius:12px;
	padding:9px 14px; font-size:14px; color:#374151; background:#fff;
}
.hbp-rc-fac-ic { display:inline-flex; color:var(--hbp-accent); }
.hbp-rc-fac-ic svg { width:18px; height:18px; }

.hbp-rc-off {
	align-self:flex-start;
	background:#e7f6ec; color:#12894a;
	font-size:13px; font-weight:800; letter-spacing:.02em;
	padding:5px 12px; border-radius:8px; margin-bottom:12px;
}

.hbp-rc-price { display:flex; align-items:center; gap:10px; margin-bottom:20px; flex-wrap:wrap; }
.hbp-rc-price-now { font-size:34px; font-weight:800; color:#111827; letter-spacing:-.02em; }
.hbp-rc-price-unit { color:#9ca3af; font-size:16px; }
.hbp-rc-price-div { width:1px; height:26px; background:#e5e7eb; }
.hbp-rc-price-was { color:#9ca3af; font-size:19px; text-decoration:line-through; }

.hbp-rc-btn {
	display:flex; align-items:center; justify-content:center; gap:12px;
	width:100%; box-sizing:border-box;
	background:var(--hbp-accent);
	color:#fff; text-decoration:none;
	font-size:19px; font-weight:700;
	padding:17px 20px; border-radius:14px;
	box-shadow:0 14px 28px -12px rgba(192,160,98,.8);
	transition:background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.hbp-rc-btn:hover { background:var(--hbp-accent-hover); transform:translateY(-1px); box-shadow:0 18px 34px -12px rgba(192,160,98,.9); }
.hbp-rc-btn svg { transition:transform .15s ease; }
.hbp-rc-btn:hover svg { transform:translateX(4px); }

/* Results grid so multiple cards lay out nicely */
.hbp-results {
	display:grid;
	grid-template-columns:repeat(auto-fill, minmax(340px, 1fr));
	gap:28px;
	align-items:start;
}

/* Responsive */
@media (max-width:640px){
	.hbp-rc { max-width:100%; border-radius:18px; }
	.hbp-rc-img, .hbp-rc-noimg { height:220px; }
	.hbp-rc-title { font-size:22px; }
	.hbp-rc-price-now { font-size:28px; }
	.hbp-rc-body { padding:18px; }
	.hbp-results { grid-template-columns:1fr; gap:20px; }
}

/* ── Rich card inside the slider track ── */
.hbp-slider-track .hbp-rc--slide {
	scroll-snap-align:start;
	flex:0 0 calc((100% - (var(--hbp-per-view) - 1) * 24px) / var(--hbp-per-view));
	max-width:calc((100% - (var(--hbp-per-view) - 1) * 24px) / var(--hbp-per-view));
}
.hbp-rc--slide .hbp-rc-img, .hbp-rc--slide .hbp-rc-noimg { height:230px; }
.hbp-rc--slide .hbp-rc-title { font-size:22px; }
.hbp-rc--slide .hbp-rc-price-now { font-size:28px; }
.hbp-rc--slide .hbp-rc-body { padding:18px 18px 20px; }
@media (max-width:1024px){ .hbp-slider-track .hbp-rc--slide { flex-basis:calc((100% - 24px)/2); max-width:calc((100% - 24px)/2); } }
@media (max-width:640px){ .hbp-slider-track .hbp-rc--slide { flex-basis:85%; max-width:85%; } }

/* ===== ROOM CARD — theme-proof resets (override aggressive themes) ===== */
.hbp-rc, .hbp-rc * { box-sizing:border-box !important; }
.hbp-rc a { text-decoration:none !important; box-shadow:none !important; }
.hbp-rc .hbp-rc-title a,
.hbp-rc .hbp-rc-title a:hover,
.hbp-rc .hbp-rc-title a:focus {
	text-decoration:none !important;
	border-bottom:0 !important;
	box-shadow:none !important;
}
.hbp-rc .hbp-rc-title { text-decoration:none !important; border:0 !important; }
/* stop theme from underlining / bordering the Book Now button */
.hbp-rc .hbp-rc-btn,
.hbp-rc .hbp-rc-btn:hover,
.hbp-rc .hbp-rc-btn:focus {
	text-decoration:none !important;
	border:0 !important;
	color:#fff !important;
}
.hbp-rc .hbp-rc-btn span { text-decoration:none !important; }
/* facility pills: keep them from collapsing/wrapping oddly */
.hbp-rc .hbp-rc-fac {
	white-space:nowrap;
	background:#fff !important;
	line-height:1.2 !important;
}
.hbp-rc .hbp-rc-fac-ic svg { width:18px !important; height:18px !important; }
/* heart button: force circular white bg + visible red icon */
.hbp-rc .hbp-rc-fav {
	background:#fff !important;
	width:44px !important; height:44px !important;
	border-radius:50% !important;
	padding:0 !important; border:0 !important;
}
.hbp-rc .hbp-rc-fav svg { width:20px !important; height:20px !important; display:block !important; }
/* images always fill, never shrink weirdly from theme img rules */
.hbp-rc .hbp-rc-img { width:100% !important; display:block !important; }
/* price text sizing shouldn't be shrunk by theme */
.hbp-rc .hbp-rc-price-now { line-height:1 !important; }

/* ===== Card width in different containers ===== */
/* When cards render in the search results grid, let them breathe. */
.hbp-results { grid-template-columns:repeat(auto-fill, minmax(320px, 1fr)) !important; }
/* In the slider, respect per-view but never get narrower than 300px. */
.hbp-slider-track .hbp-rc--slide { min-width:300px; }
@media (max-width:520px){
	.hbp-slider-track .hbp-rc--slide { min-width:0; flex-basis:88% !important; max-width:88% !important; }
	.hbp-results { grid-template-columns:1fr !important; }
}

/* ===================== LIST ROW (rich horizontal card) ===================== */
.hbp-lr {
	display:grid;
	grid-template-columns:320px minmax(0,1fr) 290px;
	align-items:stretch;
	height:260px;
	background:#fff;
	border:1px solid #eef0f2;
	border-radius:20px;
	overflow:hidden;
	box-shadow:0 16px 40px -30px rgba(17,24,39,.30);
	margin-bottom:24px;
	box-sizing:border-box;
	transition:box-shadow .18s ease, transform .18s ease;
}
.hbp-lr:hover { transform:translateY(-2px); box-shadow:0 24px 50px -30px rgba(17,24,39,.38); }
.hbp-lr.is-unavailable { opacity:.72; }

/* Media — image fills the fixed row height (cropped via object-fit:cover) */
.hbp-lr-media { position:relative; height:100%; overflow:hidden; }
.hbp-lr-imglink { display:block; width:100%; height:100%; }
.hbp-lr-img, .hbp-lr-noimg {
	display:block; width:100%; height:100%;
	object-fit:cover;
}
.hbp-lr-noimg { background:linear-gradient(135deg,#e9edf1,#dfe4ea); }
.hbp-lr-fav { position:absolute; top:14px; right:14px; }

/* Info — vertically centred, extra text clipped so height stays fixed */
.hbp-lr-info { padding:22px 28px; display:flex; flex-direction:column; justify-content:center; min-width:0; overflow:hidden; }
.hbp-lr-title { margin:0 0 8px; font-size:26px; font-weight:800; line-height:1.14; letter-spacing:-.01em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.hbp-lr-title a { color:#111827; text-decoration:none !important; }
.hbp-lr-title a:hover { color:var(--hbp-accent); }
.hbp-lr-loc { display:flex; align-items:center; gap:7px; color:#6b7280; font-size:16px; margin:0 0 10px; }
.hbp-lr-loc svg { color:var(--hbp-accent); flex:0 0 auto; }
.hbp-lr-desc {
	color:#6b7280; font-size:15px; line-height:1.5; margin:0 0 14px; max-width:560px;
	display:-webkit-box; -webkit-line-clamp:1; -webkit-box-orient:vertical; overflow:hidden;
}
.hbp-lr-facs-label { font-size:17px; font-weight:800; color:#111827; margin:0 0 10px; }
.hbp-lr-facs { display:flex; flex-wrap:nowrap; gap:10px; margin-bottom:0; overflow:hidden; }
.hbp-lr-safe {
	display:inline-flex; align-items:center; gap:8px; margin:12px 0 0;
	color:#12894a; font-weight:700; font-size:15px;
}
.hbp-lr-safe svg { color:#16a34a; }

/* Aside (price + button) */
.hbp-lr-aside {
	border-left:1px solid #eef0f2;
	padding:22px 26px;
	display:flex; flex-direction:column; align-items:flex-start; justify-content:center;
	gap:4px;
}
.hbp-lr-was { color:#9ca3af; font-size:19px; text-decoration:line-through; }
.hbp-lr-nowline { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.hbp-lr-now { font-size:34px; font-weight:800; color:var(--hbp-accent); letter-spacing:-.02em; line-height:1; }
.hbp-lr-off { margin:0; }
.hbp-lr-per { color:#9ca3af; font-size:15px; margin-bottom:12px; }
.hbp-lr-btn { width:100%; }
.hbp-lr-na { color:#b91c1c; font-weight:700; }

/* Responsive: stack to a single column on tablet/mobile (height becomes auto) */
@media (max-width:900px){
	.hbp-lr { grid-template-columns:1fr; height:auto; }
	.hbp-lr-media { height:auto; }
	.hbp-lr-img, .hbp-lr-noimg { height:230px; }
	.hbp-lr-info { padding:22px; }
	.hbp-lr-title { white-space:normal; }
	.hbp-lr-desc { -webkit-line-clamp:2; }
	.hbp-lr-facs { flex-wrap:wrap; }
	.hbp-lr-aside { border-left:0; border-top:1px solid #eef0f2; align-items:stretch; }
	.hbp-lr-nowline { justify-content:flex-start; }
}
@media (max-width:640px){
	.hbp-lr { border-radius:16px; }
	.hbp-lr-info { padding:20px; }
	.hbp-lr-title { font-size:23px; }
	.hbp-lr-now { font-size:30px; }
	.hbp-lr-aside { padding:20px; }
}
