/* Kost Blora room detail page. */
.kbr-page,
.kbr-page * {
	box-sizing: border-box;
}

.kbr-page {
	--kbr-ink: #123e56;
	--kbr-deep: #073d5d;
	--kbr-muted: #637b8a;
	--kbr-soft: #f4f8f9;
	--kbr-soft-blue: #eef7fb;
	--kbr-line: #dbe8ee;
	--kbr-coral: #f27689;
	--kbr-teal: #25a7a0;
	--kbr-yellow: #f6cd55;
	--kbr-green: #99b96b;
	--kbr-white: #fff;
	--kbr-shadow: 0 18px 42px rgba(7, 61, 93, 0.12);
	--kbr-ease: cubic-bezier(0.22, 1, 0.36, 1);
	width: 100vw;
	max-width: 100vw;
	margin: 0 calc(50% - 50vw);
	overflow: clip;
	background: var(--kbr-white);
	color: #465c68;
	font-family: Inter, "Nunito Sans", "Segoe UI", Arial, sans-serif;
	letter-spacing: 0;
}

body.kbhs-room-detail-page {
	overflow-x: hidden;
	background: #fff !important;
}

body.kbhs-room-detail-page #page,
body.kbhs-room-detail-page .site,
body.kbhs-room-detail-page .site-content,
body.kbhs-room-detail-page .content-area,
body.kbhs-room-detail-page .ast-container,
body.kbhs-room-detail-page .entry-content,
body.kbhs-room-detail-page .elementor,
body.kbhs-room-detail-page .elementor-section,
body.kbhs-room-detail-page .elementor-container,
body.kbhs-room-detail-page .elementor-widget-container {
	background: #fff !important;
}

body.kbhs-room-detail-page .site-footer,
body.kbhs-room-detail-page footer#colophon,
body.kbhs-room-detail-page .ast-footer-copyright,
body.kbhs-room-detail-page #ast-scroll-top,
body.kbhs-room-detail-page .ast-scroll-top-icon {
	display: none !important;
}

html.kbr-lock-scroll,
body.kbr-lock-scroll {
	overflow: hidden;
}

.kbr-page a {
	color: inherit;
	text-decoration: none;
}

.kbr-page button,
.kbr-page input {
	font: inherit;
	letter-spacing: 0;
}

.kbr-page button {
	appearance: none;
	border: 0;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.kbr-page button:focus {
	outline: none;
}

.kbr-page svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.kbr-visually-hidden {
	position: absolute !important;
	overflow: hidden !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	border: 0 !important;
	clip: rect(0 0 0 0) !important;
	white-space: nowrap !important;
}

.kbr-shell {
	width: min(100% - clamp(32px, 6vw, 96px), 1180px);
	margin: 0 auto;
}

.kbr-media {
	position: relative;
	padding: 26px 0 0;
	background:
		linear-gradient(135deg, rgba(238, 247, 251, 0.92), rgba(255, 255, 255, 0.5) 38%, rgba(242, 118, 137, 0.08) 100%),
		#fff;
}

.kbr-media__panel[hidden] {
	display: none !important;
}

.kbr-gallery {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) repeat(2, minmax(0, 0.48fr));
	grid-template-rows: repeat(2, 200px);
	gap: 12px;
	min-height: 412px;
	overflow: hidden;
	border-radius: 10px 10px 0 0;
}

.kbr-gallery__item {
	position: relative;
	overflow: hidden;
	min-width: 0;
	min-height: 0;
	padding: 0;
	border-radius: 8px;
	background: var(--kbr-soft-blue);
	color: #fff;
}

.kbr-gallery__item.is-main {
	grid-row: 1 / 3;
}

.kbr-gallery__item img,
.kbr-media-frame img,
.kbr-media-frame iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: cover;
}

.kbr-gallery__item span {
	position: absolute;
	inset: auto 12px 12px auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(7, 61, 93, 0.86);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
}

.kbr-media-frame {
	height: 412px;
	overflow: hidden;
	border-radius: 10px 10px 0 0;
	background: var(--kbr-soft-blue);
}

.kbr-media-frame--empty {
	display: grid;
	place-items: center;
	align-content: center;
	gap: 12px;
	color: var(--kbr-deep);
	text-align: center;
}

.kbr-media-frame--empty span {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 999px;
	background: #fff;
	color: var(--kbr-coral);
	box-shadow: 0 12px 28px rgba(7, 61, 93, 0.1);
}

.kbr-media-frame--empty svg {
	width: 24px;
	height: 24px;
}

.kbr-media-frame--empty strong {
	color: var(--kbr-deep);
	font-size: 22px;
	font-weight: 1000;
}

.kbr-media-tabs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	padding: 16px;
	border: 1px solid var(--kbr-line);
	border-top: 0;
	border-radius: 0 0 10px 10px;
	background: #fff;
}

.kbr-media-tabs button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	border-radius: 8px;
	background: var(--kbr-soft);
	color: var(--kbr-muted);
	font-size: 15px;
	font-weight: 900;
	text-transform: none;
	transition: background 220ms var(--kbr-ease), color 220ms var(--kbr-ease);
}

.kbr-media-tabs button.is-active {
	background: rgba(242, 118, 137, 0.12);
	color: var(--kbr-coral);
}

.kbr-media-tabs button:disabled {
	cursor: not-allowed;
	opacity: 0.42;
}

.kbr-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 400px;
	gap: 56px;
	align-items: start;
	padding: 42px 0 28px;
}

.kbr-content {
	min-width: 0;
}

.kbr-booking {
	position: sticky;
	top: 92px;
	z-index: 3;
	grid-column: 2;
	grid-row: 1;
}

.kbr-booking__card {
	overflow: hidden;
	border: 1px solid var(--kbr-line);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(7, 61, 93, 0.08);
}

.kbr-booking__badge {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 6px 12px;
	border-radius: 0 0 10px 0;
	background: var(--kbr-teal);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
}

.kbr-booking__price {
	padding: 18px 18px 10px;
}

.kbr-booking__price div {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 5px;
	color: var(--kbr-coral);
	font-weight: 900;
}

.kbr-booking__price div > span,
.kbr-booking__price div > em {
	font-size: 15px;
	font-style: normal;
}

.kbr-booking__price strong {
	color: var(--kbr-coral);
	font-size: clamp(34px, 3.3vw, 44px);
	line-height: 0.92;
	font-weight: 1000;
}

.kbr-booking__price del {
	display: block;
	margin-top: 8px;
	color: #9aa8af;
	font-size: 14px;
	font-weight: 800;
	text-decoration-thickness: 2px;
}

.kbr-booking__price p,
.kbr-duration p {
	margin: 8px 0 0;
	color: #95a4ac;
	font-size: 11px;
	font-weight: 800;
}

.kbr-promo {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 76px;
	margin: 8px 18px 18px;
	padding: 13px 16px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--kbr-green), #b9cd7d);
	color: #fff;
}

.kbr-promo strong {
	font-size: 22px;
	line-height: 1;
	font-weight: 1000;
}

.kbr-promo span {
	max-width: 42%;
	text-align: right;
	font-size: 13px;
	font-style: italic;
	font-weight: 800;
}

.kbr-duration {
	padding: 0 18px 18px;
}

.kbr-duration > strong {
	display: block;
	color: #526873;
	font-size: 18px;
	font-weight: 1000;
}

.kbr-duration__options {
	display: flex;
	gap: 8px;
	margin-top: 10px;
	padding: 6px;
	border-radius: 10px 10px 0 0;
	background: #f1f4f5;
}

.kbr-duration__options button {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	border-radius: 8px;
	background: transparent;
	color: #61727b;
	font-weight: 900;
	transition: background 220ms var(--kbr-ease), box-shadow 220ms var(--kbr-ease);
}

.kbr-duration__options button.is-active {
	background: #fff;
	box-shadow: 0 8px 18px rgba(7, 61, 93, 0.1);
}

.kbr-duration__options span {
	display: block;
	font-size: 13px;
	line-height: 1.15;
	text-align: center;
}

.kbr-duration__options small {
	color: #8b9aa2;
	font-size: 12px;
	font-weight: 800;
}

.kbr-duration p {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 8px 12px;
	border-top: 1px solid var(--kbr-line);
	border-radius: 0 0 10px 10px;
	background: #f1f4f5;
}

.kbr-duration p svg {
	width: 16px;
	height: 16px;
	color: #91a1a9;
}

.kbr-whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: calc(100% - 36px);
	min-height: 48px;
	margin: 2px 18px 18px;
	border-radius: 999px;
	background: #19b861;
	color: #fff !important;
	font-size: 15px;
	font-weight: 1000;
}

.kbr-whatsapp svg {
	width: 21px;
	height: 21px;
}

.kbr-whatsapp svg.kbr-wa-solid,
.kbr-whatsapp svg.kbr-wa-solid * {
	fill: currentColor;
	stroke: none;
	stroke-width: 0;
}

.kbr-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	color: var(--kbr-deep);
	font-size: 16px;
	font-weight: 1000;
}

.kbr-breadcrumb span {
	color: #9aa8af;
}

.kbr-heading {
	margin-top: 18px;
}

.kbr-heading h1,
.kbr-heading h2,
.kbr-block h3,
.kbr-related h2 {
	margin: 0;
	color: #506571;
	letter-spacing: 0;
}

.kbr-heading h1 {
	font-size: 26px;
	line-height: 1.08;
	font-weight: 900;
}

.kbr-heading h2 {
	margin-top: 8px;
	font-size: clamp(34px, 4.1vw, 44px);
	line-height: 1.02;
	font-weight: 1000;
}

.kbr-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.kbr-tags span,
.kbr-feature-grid div,
.kbr-related-card__body div span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 30px;
	border-radius: 8px;
	background: #f0f4f5;
	color: #526873;
	font-size: 14px;
	font-weight: 850;
}

.kbr-tags span {
	padding: 6px 10px;
}

.kbr-tags svg,
.kbr-feature-grid svg,
.kbr-related-card__body div svg {
	width: 18px;
	height: 18px;
	color: #6f8794;
}

.kbr-description {
	max-width: 650px;
	margin: 26px 0 0;
	color: #596e78;
	font-size: 18px;
	line-height: 1.75;
	font-weight: 650;
}

.kbr-block {
	margin-top: 44px;
}

.kbr-block h3,
.kbr-related h2 {
	font-size: 29px;
	line-height: 1.12;
	font-weight: 1000;
}

.kbr-access {
	display: grid;
	gap: 18px;
	margin-top: 20px;
}

.kbr-block > .kbr-access {
	margin-top: 0;
}

.kbr-access__item {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
	max-width: 680px;
}

.kbr-access__item > span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	color: #91a1a9;
}

.kbr-access__item svg {
	width: 26px;
	height: 26px;
}

.kbr-access__item b {
	display: grid;
	gap: 6px;
	font-style: normal;
}

.kbr-access__item strong {
	color: #526873;
	font-size: 18px;
	font-weight: 1000;
}

.kbr-access__item small {
	color: #84949d;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.45;
}

.kbr-access__item i {
	width: fit-content;
	border-bottom: 2px solid var(--kbr-teal);
	color: #526873;
	font-size: 13px;
	font-style: normal;
	font-weight: 900;
}

.kbr-feature-tabs {
	display: flex;
	gap: 2px;
	overflow-x: auto;
	scrollbar-width: none;
}

.kbr-feature-tabs::-webkit-scrollbar {
	display: none;
}

.kbr-feature-tabs button {
	flex: 1 1 0;
	min-height: 48px;
	padding: 0 26px;
	border-radius: 8px 8px 0 0;
	background: #fff;
	color: #526873;
	font-size: 16px;
	font-weight: 1000;
	text-transform: none;
	transition: background 220ms var(--kbr-ease), color 220ms var(--kbr-ease);
}

.kbr-feature-tabs button.is-active {
	background: rgba(246, 205, 85, 0.16);
	color: #c59817;
}

.kbr-feature-panel {
	padding: 18px 20px;
	border-radius: 0 10px 10px;
	background: rgba(246, 205, 85, 0.16);
}

.kbr-feature-panel[hidden] {
	display: none !important;
}

.kbr-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px 14px;
}

.kbr-feature-grid div {
	min-height: 36px;
	padding: 5px 0;
	background: transparent;
}

.kbr-empty {
	grid-column: 1 / -1;
	margin: 0;
	color: #7d9099;
	font-size: 15px;
	font-weight: 800;
}

.kbr-feature-grid svg {
	color: #c59817;
}

.kbr-map__embed {
	overflow: hidden;
	height: 330px;
	max-width: 680px;
	border: 1px solid var(--kbr-line);
	border-radius: 14px;
	background: var(--kbr-soft-blue);
	box-shadow: 0 14px 34px rgba(7, 61, 93, 0.08);
}

.kbr-map__embed iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.kbr-map a,
.kbr-map__card {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	max-width: 680px;
	margin-top: 18px;
	padding: 18px;
	border: 1px solid var(--kbr-line);
	border-radius: 12px;
	background:
		linear-gradient(135deg, rgba(37, 167, 160, 0.09), rgba(246, 205, 85, 0.12)),
		#fff;
}

.kbr-map svg {
	width: 28px;
	height: 28px;
	color: var(--kbr-teal);
}

.kbr-map span {
	display: grid;
	gap: 4px;
}

.kbr-map strong {
	color: #526873;
	font-size: 17px;
	font-weight: 1000;
}

.kbr-map small {
	color: #7d9099;
	font-size: 14px;
	font-weight: 750;
}

.kbr-related {
	padding: 34px 0 70px;
	background: #fff;
}

.kbr-related__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 20px;
}

.kbr-related__head div {
	display: flex;
	gap: 10px;
}

.kbr-related__head button {
	display: flex;
	flex: 0 0 42px;
	align-items: center;
	justify-content: center;
	width: 42px;
	min-width: 42px;
	height: 42px;
	padding: 0;
	border-radius: 999px;
	background: #111;
	color: #fff;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.kbr-related__head button:last-child svg,
.kbr-related-card__nav--next svg,
.kbr-lightbox__nav--next svg {
	transform: rotate(180deg);
}

.kbr-related__head svg {
	width: 18px;
	height: 18px;
}

.kbr-related__track {
	display: grid;
	grid-auto-columns: minmax(300px, 340px);
	grid-auto-flow: column;
	gap: 18px;
	overflow-x: auto;
	padding: 6px 4px 20px;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
}

.kbr-related__track::-webkit-scrollbar {
	display: none;
}

.kbr-related-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-height: 432px;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(7, 61, 93, 0.14);
	scroll-snap-align: start;
}

.kbr-related-card__media {
	position: relative;
	height: 210px;
	overflow: hidden;
	background: var(--kbr-soft-blue);
}

.kbr-related-card__media > span {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	padding: 7px 12px;
	border-radius: 0 0 10px;
	background: var(--kbr-teal);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
}

.kbr-related-card__track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 360ms var(--kbr-ease);
}

.kbr-related-card__slide {
	display: block;
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
}

.kbr-related-card__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kbr-related-card__nav {
	position: absolute;
	top: 50%;
	z-index: 4;
	display: flex;
	flex: 0 0 36px;
	align-items: center;
	justify-content: center;
	width: 36px;
	min-width: 36px;
	height: 36px;
	padding: 0;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.76);
	color: #fff;
	transform: translateY(-50%);
}

.kbr-related-card__nav--prev {
	left: 10px;
}

.kbr-related-card__nav--next {
	right: 10px;
}

.kbr-related-card__nav svg {
	width: 16px;
	height: 16px;
}

.kbr-related__head button svg,
.kbr-related-card__nav svg,
.kbr-lightbox__nav svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.kbr-related-card__body {
	flex: 1;
	padding: 18px 18px 12px;
}

.kbr-related-card__body h3 {
	margin: 0;
	color: #526873;
	font-size: 21px;
	line-height: 1.18;
	font-weight: 1000;
}

.kbr-related-card__body div {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 14px;
}

.kbr-related-card__body div span {
	padding: 5px 8px;
	font-size: 13px;
}

.kbr-related-card footer {
	display: flex;
	justify-content: flex-end;
	padding: 0 18px 18px;
}

.kbr-related-card footer strong {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: flex-end;
	gap: 4px;
	color: var(--kbr-coral);
	font-size: 25px;
	line-height: 1;
	font-weight: 1000;
}

.kbr-related-card footer small {
	font-size: 12px;
	font-weight: 900;
}

.kbr-mobile-cta {
	display: none;
}

.kbr-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 34px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 220ms var(--kbr-ease);
}

.kbr-lightbox.is-open {
	opacity: 1;
	pointer-events: auto;
}

.kbr-lightbox[hidden] {
	display: none !important;
}

.kbr-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(7, 25, 35, 0.72);
}

.kbr-lightbox__panel {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(100%, 1120px);
	height: min(82vh, 720px);
	border-radius: 12px;
}

.kbr-lightbox__panel img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	border-radius: 10px;
	object-fit: contain;
	box-shadow: 0 22px 62px rgba(0, 0, 0, 0.34);
}

.kbr-lightbox__close {
	position: absolute;
	top: -18px;
	right: -18px;
	z-index: 3;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: #111;
	color: #fff;
}

.kbr-lightbox__close::before,
.kbr-lightbox__close::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	content: "";
}

.kbr-lightbox__close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.kbr-lightbox__close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.kbr-lightbox__nav {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: flex;
	flex: 0 0 48px;
	align-items: center;
	justify-content: center;
	width: 48px;
	min-width: 48px;
	height: 48px;
	padding: 0;
	border-radius: 999px;
	background: #111;
	color: #fff;
	transform: translateY(-50%);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.kbr-lightbox__nav--prev {
	left: 16px;
}

.kbr-lightbox__nav--next {
	right: 16px;
}

.kbr-lightbox__nav svg {
	width: 20px;
	height: 20px;
}

.kbr-lightbox__count {
	position: absolute;
	right: 18px;
	bottom: 18px;
	z-index: 3;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.68);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
}

@media (hover: hover) and (pointer: fine) {
	.kbr-media-tabs button:not(:disabled):hover {
		background: rgba(242, 118, 137, 0.1);
		color: var(--kbr-coral);
	}

	.kbr-feature-tabs button:hover {
		background: rgba(246, 205, 85, 0.13);
		color: #c59817;
	}

	.kbr-gallery__item:hover img,
	.kbr-related-card__slide:hover img {
		transform: scale(1.03);
	}

	.kbr-gallery__item img,
	.kbr-related-card__slide img {
		transition: transform 420ms var(--kbr-ease);
	}
}

@media (max-width: 767px) {
	.kbr-page {
		overflow: hidden;
		padding-bottom: 76px;
	}

	.kbr-shell {
		width: calc(100% - 20px);
	}

	.kbr-media {
		padding-top: 10px;
	}

	.kbr-gallery {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		grid-template-rows: 288px 80px;
		gap: 4px;
		min-height: 372px;
		border-radius: 0;
	}

	.kbr-gallery__item {
		border-radius: 6px;
	}

	.kbr-gallery__item.is-main {
		grid-column: 1 / -1;
		grid-row: 1;
	}

	.kbr-gallery__item:not(.is-main) {
		grid-row: 2;
	}

	.kbr-gallery__item span {
		right: 8px;
		bottom: 8px;
		min-height: 28px;
		padding: 5px 9px;
		font-size: 12px;
	}

	.kbr-media-frame {
		height: 372px;
		border-radius: 0;
	}

	.kbr-media-tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		padding: 12px;
		border-radius: 0 0 8px 8px;
	}

	.kbr-media-tabs button {
		min-height: 44px;
		font-size: 14px;
	}

	.kbr-layout {
		display: flex;
		flex-direction: column;
		gap: 24px;
		padding: 24px 0 18px;
	}

	.kbr-booking {
		position: static;
		order: 1;
		width: 100%;
	}

	.kbr-content {
		order: 2;
		width: 100%;
	}

	.kbr-booking__card {
		border-radius: 8px;
		box-shadow: 0 10px 26px rgba(7, 61, 93, 0.09);
	}

	.kbr-booking__price strong {
		font-size: 34px;
	}

	.kbr-promo {
		min-height: 64px;
		margin-inline: 14px;
		padding: 11px 12px;
	}

	.kbr-promo strong {
		font-size: 19px;
	}

	.kbr-promo span {
		font-size: 12px;
	}

	.kbr-duration,
	.kbr-booking__price {
		padding-inline: 14px;
	}

	.kbr-whatsapp {
		width: calc(100% - 28px);
		margin-inline: 14px;
	}

	.kbr-breadcrumb {
		font-size: 14px;
	}

	.kbr-heading {
		margin-top: 14px;
	}

	.kbr-heading h1 {
		font-size: 22px;
	}

	.kbr-heading h2 {
		font-size: 30px;
		line-height: 1.08;
	}

	.kbr-tags {
		margin-top: 14px;
		gap: 7px;
	}

	.kbr-tags span {
		min-height: 28px;
		padding: 5px 8px;
		font-size: 13px;
	}

	.kbr-description {
		margin-top: 20px;
		font-size: 16px;
		line-height: 1.65;
	}

	.kbr-block {
		margin-top: 34px;
	}

	.kbr-block h3,
	.kbr-related h2 {
		font-size: 25px;
	}

	.kbr-access__item {
		grid-template-columns: 30px minmax(0, 1fr);
		gap: 12px;
	}

	.kbr-feature-tabs button {
		min-height: 44px;
		padding: 0 20px;
		font-size: 15px;
	}

	.kbr-feature-panel {
		padding: 15px;
	}

	.kbr-feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px 12px;
	}

	.kbr-feature-grid div {
		min-height: 34px;
		font-size: 13px;
	}

	.kbr-map a {
		padding: 15px;
	}

	.kbr-map__embed {
		height: 260px;
		max-width: none;
		border-radius: 10px;
	}

	.kbr-related {
		padding: 22px 0 34px;
	}

	.kbr-related__head div {
		display: none;
	}

	.kbr-related__track {
		grid-auto-columns: minmax(282px, 82vw);
		gap: 14px;
		margin-right: -10px;
		padding-bottom: 18px;
		scroll-snap-type: x mandatory;
	}

	.kbr-related-card {
		min-height: 410px;
	}

	.kbr-related-card__media {
		height: 208px;
	}

	.kbr-related-card__nav {
		display: none;
	}

	.kbr-mobile-cta {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 50;
		display: block;
		padding: 12px 10px;
		border-top: 1px solid var(--kbr-line);
		background: #fff;
	}

	.kbr-mobile-cta .kbr-whatsapp {
		width: 100%;
		margin: 0;
	}

	.kbr-booking .kbr-whatsapp {
		display: none;
	}

	.kbr-lightbox {
		padding: 18px 10px;
	}

	.kbr-lightbox__panel {
		height: 72vh;
	}

	.kbr-lightbox__close {
		top: 8px;
		right: 8px;
	}

	.kbr-lightbox__nav {
		width: 42px;
		height: 42px;
	}

	.kbr-lightbox__nav--prev {
		left: 8px;
	}

	.kbr-lightbox__nav--next {
		right: 8px;
	}
}
