/**
 * Single Room — ixigo room-detail layout (18/05/2026).
 * Body wrapper `.nv-suite-page`. Brand pack strict per
 * Creaze_Nivanta_color_Fonts.pdf — navy / lime / teal / cream /
 * Bricolage Grotesque (display) / Open Sans (body).
 */

.nv-suite-page {
	--nv-navy: #022E3D;
	--nv-lime: #A6CE39;
	--nv-teal: #6ACAD1;
	--nv-cream: #FBFAF7;
	--nv-ink: #0E1316;
	--nv-mute: #5C6268;
	--nv-rule: rgba(2, 46, 61, 0.08);
	--display: "Bricolage Grotesque", system-ui, sans-serif;
	--body:    "Open Sans", system-ui, sans-serif;

	font-family: var(--body);
	color: var(--nv-ink);
	background: var(--nv-cream);
	-webkit-font-smoothing: antialiased;
}

.nv-suite-page * { box-sizing: border-box; }
.nv-suite-page a { color: inherit; text-decoration: none; }
.nv-suite-page__container { width: min(1320px, 92vw); margin: 0 auto; }
.nv-suite-page h1, .nv-suite-page h2, .nv-suite-page h3, .nv-suite-page h4 { margin: 0; font-family: var(--display); color: var(--nv-navy); letter-spacing: -0.01em; }
.nv-suite-page p { margin: 0; line-height: 1.6; }

.nv-suite-page__crumb { padding: 18px 0; background: #fff; border-bottom: 1px solid var(--nv-rule); font: 400 13px var(--body); color: var(--nv-mute); }
.nv-suite-page__crumb .nv-suite-page__container { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.nv-suite-page__crumb a { color: var(--nv-mute); }
.nv-suite-page__crumb a:hover { color: var(--nv-navy); }
.nv-suite-page__crumb span[aria-current] { color: var(--nv-navy); font-weight: 600; }

.nv-suite-page__gallery { padding: 18px 0 24px; background: var(--nv-cream); }
.nv-suite-page__gallery-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 8px; height: 460px; }
.nv-suite-page__gallery-big { background-size: cover; background-position: center; border-radius: 12px; }
.nv-suite-page__gallery-thumbs { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; }
.nv-suite-page__gallery-thumb { background-size: cover; background-position: center; border-radius: 12px; position: relative; overflow: hidden; }
.nv-suite-page__gallery-thumb--last::before { content: ''; position: absolute; inset: 0; background: rgba(2, 46, 61, 0.45); }
.nv-suite-page__gallery-cta {
	position: absolute;
	bottom: 14px;
	right: 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 18px;
	background: #fff !important;
	color: #222 !important;
	border: 1px solid #222 !important;
	border-radius: 999px;
	font: 700 13px/1 "Inter", system-ui, sans-serif;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
	z-index: 2;
	transition: transform 0.15s, box-shadow 0.15s;
}
.nv-suite-page__gallery-cta:hover {
	background: #222 !important;
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}
.nv-suite-page__gallery-cta svg { stroke: currentColor; }

/* Lightbox modal — clicked from .nv-suite-page__gallery-cta or any thumb. */
.nv-gallery-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.92);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
}
.nv-gallery-modal[hidden] { display: none !important; }
.nv-gallery-modal__stage {
	position: relative;
	max-width: min(1200px, 92vw);
	max-height: 88vh;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}
.nv-gallery-modal__img {
	max-width: 100%;
	max-height: 80vh;
	object-fit: contain;
	border-radius: 6px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
	display: block;
}
.nv-gallery-modal__caption {
	color: rgba(255, 255, 255, 0.78);
	font: 600 13px "Inter", system-ui, sans-serif;
	letter-spacing: 0.04em;
}
.nv-gallery-modal__close,
.nv-gallery-modal__nav {
	position: absolute;
	background: rgba(255, 255, 255, 0.10);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.15s, transform 0.15s;
	z-index: 2;
}
.nv-gallery-modal__close:hover,
.nv-gallery-modal__nav:hover {
	background: rgba(255, 255, 255, 0.22);
	transform: scale(1.06);
}
.nv-gallery-modal__close { top: 24px; right: 24px; }
.nv-gallery-modal__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.nv-gallery-modal__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.nv-gallery-modal__nav--prev:hover { transform: translateY(-50%) scale(1.06); }
.nv-gallery-modal__nav--next:hover { transform: translateY(-50%) scale(1.06); }

@media (max-width: 860px) {
	.nv-suite-page__gallery-grid { grid-template-columns: 1fr; height: auto; }
	.nv-suite-page__gallery-big { aspect-ratio: 16/10; }
	.nv-suite-page__gallery-thumbs { aspect-ratio: 16/8; }
}
@media (max-width: 640px) {
	.nv-gallery-modal { padding: 16px; }
	.nv-gallery-modal__close,
	.nv-gallery-modal__nav { width: 40px; height: 40px; }
	.nv-gallery-modal__close { top: 12px; right: 12px; }
	.nv-gallery-modal__nav--prev { left: 8px; }
	.nv-gallery-modal__nav--next { right: 8px; }
}

.nv-suite-page__head { padding: 40px 0 44px; background: var(--nv-cream); border-bottom: 1px solid var(--nv-rule); }
.nv-suite-page__head-grid { display: grid; grid-template-columns: 1fr auto; gap: 56px; align-items: stretch; }
.nv-suite-page__head .nv-suite-page__eyebrow { display: inline-flex; align-items: center; gap: 6px; font: 600 11px var(--body); letter-spacing: 0.18em; text-transform: uppercase; color: var(--nv-teal); margin: 0 0 6px; }
.nv-suite-page__eyebrow svg { stroke: currentColor; }
.nv-suite-page__head .nv-suite-page__title { font: 800 clamp(28px, 3.4vw, 42px) var(--display); color: var(--nv-navy); line-height: 1.06; margin: 0 0 6px; }
.nv-suite-page__head .nv-suite-page__meta { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 0 0 10px; font: 400 14px var(--body); color: var(--nv-mute); }
.nv-suite-page__meta span { display: inline-flex; align-items: center; gap: 5px; }
.nv-suite-page__meta svg { stroke: var(--nv-mute); }
.nv-suite-page__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.nv-suite-page__badge { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; background: rgba(2, 46, 61, 0.06); color: var(--nv-navy); border-radius: 999px; font: 600 12px var(--body); }
.nv-suite-page__badge svg { stroke: currentColor; }
.nv-suite-page__badge--rating { background: var(--nv-lime); color: var(--nv-navy); font-weight: 700; }
.nv-suite-page__badge--rating small { font-weight: 500; opacity: 0.78; }

.nv-suite-page__price-quick { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px 30px; background: #fff; padding: 22px 26px; border-radius: 16px; border: 1px solid var(--nv-rule); box-shadow: 0 14px 34px rgba(2, 46, 61, 0.08); min-width: 300px; text-align: left; }
.nv-suite-page__price-main { display: flex; flex-direction: column; }
.nv-suite-page__price-quick .nv-suite-page__price-label { font: 600 11px var(--body); letter-spacing: 0.16em; text-transform: uppercase; color: var(--nv-mute); margin: 0 0 6px; }
.nv-suite-page__price-quick .nv-suite-page__price-amount { font: 800 30px var(--display); color: var(--nv-navy); letter-spacing: -0.01em; line-height: 1.02; margin: 0 0 6px; }
.nv-suite-page__price-amount span { font: 600 12px var(--body); color: var(--nv-mute); }
.nv-suite-page__price-quick .nv-suite-page__price-tax { font: 400 12px var(--body); color: var(--nv-mute); margin: 0; }
.nv-suite-page__price-cta { display: inline-flex; align-items: center; justify-content: center; white-space: nowrap; background: var(--nv-lime); color: var(--nv-navy); padding: 13px 26px; border-radius: 999px; font: 700 13px var(--body); letter-spacing: 0.04em; text-transform: uppercase; }
.nv-suite-page__price-cta:hover { background: #b8db4f; }
@media (max-width: 860px) {
	.nv-suite-page__head-grid { grid-template-columns: 1fr; }
	.nv-suite-page__price-quick { text-align: left; }
}

.nv-suite-page__tabs { position: sticky; top: 70px; z-index: 40; background: #fff; border-bottom: 1px solid var(--nv-rule); box-shadow: 0 4px 12px rgba(2, 46, 61, 0.04); }
.nv-suite-page__tabs-inner { display: flex; gap: 24px; overflow-x: auto; padding: 0; }
.nv-suite-page__tab { padding: 16px 4px; font: 600 14px var(--body); color: var(--nv-mute); white-space: nowrap; border-bottom: 3px solid transparent; transition: color 180ms ease-out, border-color 180ms ease-out; }
.nv-suite-page__tab:hover { color: var(--nv-navy); }
.nv-suite-page__tab.is-active { color: var(--nv-navy); border-bottom-color: var(--nv-lime); }

.nv-suite-page__layout { padding: 32px 0 64px; display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.nv-suite-page__body { display: grid; gap: 24px; }
.nv-suite-page__section { background: #fff; border: 1px solid var(--nv-rule); border-radius: 14px; padding: 28px 32px; }
.nv-suite-page__h2 { font: 800 clamp(22px, 2.6vw, 30px) var(--display); color: var(--nv-navy); letter-spacing: -0.01em; margin: 0 0 18px; }
.nv-suite-page__prose p { font: 400 15px/1.7 var(--body); color: var(--nv-ink); margin: 0 0 14px; max-width: 64ch; }
.nv-suite-page__highlights { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 8px; }
.nv-suite-page__highlights li { display: flex; align-items: flex-start; gap: 10px; font: 400 14px/1.55 var(--body); color: var(--nv-ink); }
.nv-suite-page__highlights span { width: 22px; height: 22px; background: var(--nv-lime); color: var(--nv-navy); border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }

.nv-suite-page__amen-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px; }
.nv-suite-page__amen-group h3 { display: flex; align-items: center; gap: 10px; font: 800 16px var(--display); color: var(--nv-navy); margin: 0 0 12px; }
.nv-suite-page__amen-grouphd-icon { width: 32px; height: 32px; background: var(--nv-lime); color: var(--nv-navy); border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nv-suite-page__amen-group ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.nv-suite-page__amen-group li { display: flex; align-items: center; gap: 8px; font: 400 14px var(--body); color: var(--nv-ink); }
.nv-suite-page__amen-tick { display: inline-flex; width: 16px; height: 16px; background: var(--nv-lime); color: var(--nv-navy); border-radius: 999px; align-items: center; justify-content: center; flex-shrink: 0; }
@media (max-width: 720px) { .nv-suite-page__amen-groups { grid-template-columns: 1fr; } }

.nv-suite-page__policy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.nv-suite-page__policy { background: var(--nv-cream); padding: 18px 22px; border-radius: 10px; border-top: 3px solid var(--nv-lime); }
.nv-suite-page__policy h4 { font: 800 15px var(--display); color: var(--nv-navy); margin: 0 0 6px; }
.nv-suite-page__policy p { font: 400 13px/1.6 var(--body); color: var(--nv-mute); margin: 0; }
@media (max-width: 720px) { .nv-suite-page__policy-grid { grid-template-columns: 1fr; } }

.nv-suite-page__reviews-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.nv-suite-page__rating-big { display: inline-flex; align-items: center; gap: 12px; background: var(--nv-cream); padding: 10px 16px; border-radius: 10px; border: 1px solid var(--nv-rule); }
.nv-suite-page__rating-score { font: 800 24px var(--display); color: var(--nv-navy); letter-spacing: -0.02em; }
.nv-suite-page__rating-stars { font-size: 14px; color: var(--nv-lime); letter-spacing: 2px; }
.nv-suite-page__rating-count { display: block; font: 400 11px var(--body); color: var(--nv-mute); margin-top: 2px; }
.nv-suite-page__review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.nv-suite-page__review-card { background: var(--nv-cream); padding: 18px; border-radius: 10px; border: 1px solid var(--nv-rule); display: flex; flex-direction: column; gap: 12px; }
.nv-suite-page__review-card header { display: flex; align-items: center; gap: 12px; }
.nv-suite-page__review-avatar { width: 36px; height: 36px; border-radius: 999px; background: var(--nv-navy); color: var(--nv-lime); display: inline-flex; align-items: center; justify-content: center; font: 800 14px var(--display); }
.nv-suite-page__review-author { font: 700 13px var(--body); color: var(--nv-navy); margin: 0; }
.nv-suite-page__review-meta { font: 400 11px var(--body); color: var(--nv-mute); margin: 0; }
.nv-suite-page__review-quote { font: 400 13px/1.6 var(--body); color: var(--nv-ink); margin: 0; font-style: italic; }
@media (max-width: 720px) { .nv-suite-page__review-grid { grid-template-columns: 1fr; } }

.nv-suite-page__other-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.nv-suite-page__other-card { display: flex; flex-direction: column; background: var(--nv-cream); border-radius: 10px; overflow: hidden; border: 1px solid var(--nv-rule); transition: box-shadow 250ms ease-out, transform 250ms ease-out; }
.nv-suite-page__other-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(2, 46, 61, 0.10); }
.nv-suite-page__other-img { aspect-ratio: 4/3; background-size: cover; background-position: center; background-color: #0a3a4d; }
.nv-suite-page__other-body { padding: 14px 16px 18px; }
.nv-suite-page__other-body h3 { font: 800 16px var(--display); color: var(--nv-navy); margin: 0 0 4px; }
.nv-suite-page__other-body p { font: 400 12px var(--body); color: var(--nv-mute); margin: 0 0 10px; }
.nv-suite-page__other-cta { font: 700 12px var(--body); color: var(--nv-navy); display: inline-flex; align-items: center; gap: 4px; }
@media (max-width: 720px) { .nv-suite-page__other-grid { grid-template-columns: 1fr; } }

.nv-suite-page__faq-list { display: grid; gap: 8px; }
.nv-suite-page__faq-item { background: var(--nv-cream); border: 1px solid var(--nv-rule); border-radius: 10px; overflow: hidden; }
.nv-suite-page__faq-item[open] { border-color: var(--nv-lime); }
.nv-suite-page__faq-item summary { list-style: none; cursor: pointer; padding: 16px 20px; font: 600 15px var(--body); color: var(--nv-navy); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nv-suite-page__faq-item summary::-webkit-details-marker { display: none; }
.nv-suite-page__faq-chev { display: inline-flex; width: 26px; height: 26px; background: var(--nv-lime); color: var(--nv-navy); border-radius: 999px; align-items: center; justify-content: center; font: 800 14px var(--body); flex-shrink: 0; transition: transform 250ms ease-out; }
.nv-suite-page__faq-item[open] .nv-suite-page__faq-chev { transform: rotate(45deg); }
.nv-suite-page__faq-item p { padding: 0 20px 18px; font: 400 13px/1.65 var(--body); color: var(--nv-mute); margin: 0; }

.nv-suite-page__book { position: sticky; top: 130px; align-self: start; }
.nv-suite-page__book-card { background: #fff; border: 1px solid var(--nv-rule); border-radius: 14px; padding: 20px; box-shadow: 0 12px 32px rgba(2, 46, 61, 0.08); }
.nv-suite-page__book-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--nv-rule); margin-bottom: 14px; }
.nv-suite-page__book-price { margin: 0; font-family: var(--body); color: var(--nv-navy); }
.nv-suite-page__book-price strong { font: 800 22px var(--display); letter-spacing: -0.01em; }
.nv-suite-page__book-price span { font-size: 12px; color: var(--nv-mute); font-weight: 600; }
.nv-suite-page__book-rating { margin: 0; font: 700 12px var(--body); color: var(--nv-navy); display: inline-flex; align-items: center; gap: 4px; }
.nv-suite-page__book-rating svg { stroke: var(--nv-lime); fill: var(--nv-lime); }

.nv-suite-page__form { display: grid; gap: 12px; }
.nv-suite-page__form label { display: flex; flex-direction: column; gap: 4px; }
.nv-suite-page__form label > span { font: 700 10px var(--body); letter-spacing: 0.16em; text-transform: uppercase; color: var(--nv-mute); }
.nv-suite-page__form input,
.nv-suite-page__form select,
.nv-suite-page__form textarea { font: 600 14px var(--body); color: var(--nv-navy); background: var(--nv-cream); border: 1px solid var(--nv-rule); border-radius: 8px; padding: 10px 12px; width: 100%; transition: border-color 180ms ease-out; }
.nv-suite-page__form input:focus,
.nv-suite-page__form select:focus,
.nv-suite-page__form textarea:focus { outline: none; border-color: var(--nv-lime); box-shadow: 0 0 0 3px rgba(166, 206, 57, 0.18); }
.nv-suite-page__form textarea { resize: vertical; min-height: 64px; }
.nv-suite-page__date-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.nv-suite-page__btn { border: 0; padding: 12px 16px; border-radius: 8px; font: 700 13px var(--body); letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer; transition: background 180ms ease-out, transform 180ms ease-out; }
.nv-suite-page__btn--check { background: var(--nv-navy); color: #fff; }
.nv-suite-page__btn--check:hover { background: #0a3a4d; }
.nv-suite-page__btn--book { background: var(--nv-lime); color: var(--nv-navy); }
.nv-suite-page__btn--book:hover { background: #b8db4f; transform: translateY(-1px); }
.nv-suite-page__avail { font: 400 12px var(--body); padding: 10px 12px; border-radius: 6px; line-height: 1.5; }
.nv-suite-page__avail--ok { background: rgba(166, 206, 57, 0.14); color: var(--nv-navy); border: 1px solid var(--nv-lime); }
.nv-suite-page__avail--bad { background: rgba(204, 0, 0, 0.06); color: #8a1f1f; border: 1px solid rgba(204, 0, 0, 0.4); }
.nv-suite-page__enq { display: grid; gap: 12px; }
.nv-suite-page__price-rows { display: grid; gap: 6px; padding-top: 10px; border-top: 1px solid var(--nv-rule); }
.nv-suite-page__price-row { display: flex; justify-content: space-between; font: 400 12px var(--body); color: var(--nv-mute); }
.nv-suite-page__price-row strong { color: var(--nv-navy); font-weight: 600; }
.nv-suite-page__total { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px solid var(--nv-rule); font: 700 12px var(--body); color: var(--nv-navy); }
.nv-suite-page__total strong { font: 800 18px var(--display); letter-spacing: -0.01em; }
.nv-suite-page__small { font: 400 11px var(--body); color: var(--nv-mute); margin: 0; text-align: center; }
.nv-suite-page__error { font: 400 12px var(--body); color: #8a1f1f; background: rgba(204, 0, 0, 0.06); border: 1px solid rgba(204, 0, 0, 0.4); padding: 10px 12px; border-radius: 6px; margin: 0; }

.nv-suite-page__cal-wrap { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--nv-rule); }
.nv-suite-page__cal-label { font: 700 10px var(--body); letter-spacing: 0.16em; text-transform: uppercase; color: var(--nv-mute); margin: 0 0 10px; }
.nv-suite-page__cal { background: var(--nv-cream); border-radius: 10px; padding: 12px; }
.nv-suite-page__cal-nav { display: flex; justify-content: space-between; margin-bottom: 8px; }
.nv-suite-page__cal-nav button { background: transparent; border: 1.5px solid var(--nv-navy); color: var(--nv-navy); width: 30px; height: 30px; border-radius: 999px; font-size: 14px; cursor: pointer; transition: background 180ms ease-out, color 180ms ease-out; }
.nv-suite-page__cal-nav button:hover { background: var(--nv-navy); color: #fff; }
.nv-suite-page__cal-months { display: grid; gap: 14px; }
.nv-suite-page__cal-mh { font: 800 13px var(--display); color: var(--nv-navy); margin-bottom: 6px; text-align: center; }
.nv-suite-page__cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 4px; }
.nv-suite-page__cal-dow span { font: 600 9px var(--body); letter-spacing: 0.1em; text-transform: uppercase; color: var(--nv-mute); text-align: center; }
.nv-suite-page__cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.nv-suite-page__cal-pad { aspect-ratio: 1; }
.nv-suite-page__cal-day { aspect-ratio: 1; background: transparent; border: 0; font: 400 11px var(--body); color: var(--nv-ink); border-radius: 999px; cursor: pointer; transition: background 160ms ease-out, color 160ms ease-out; }
.nv-suite-page__cal-day:hover:not(:disabled) { background: var(--nv-navy); color: #fff; }
.nv-suite-page__cal-day.is-past, .nv-suite-page__cal-day.is-blocked { color: rgba(14, 19, 22, 0.3); cursor: not-allowed; text-decoration: line-through; }
.nv-suite-page__cal-day.is-blocked { background: rgba(166, 206, 57, 0.12); color: rgba(2, 46, 61, 0.45); }
.nv-suite-page__cal-day.is-checkin, .nv-suite-page__cal-day.is-checkout { background: var(--nv-navy); color: #fff; }
.nv-suite-page__cal-day.is-mid { background: rgba(106, 202, 209, 0.22); color: var(--nv-navy); }

.nv-suite-page__alt { text-align: center; padding-top: 12px; border-top: 1px solid var(--nv-rule); margin-top: 14px; }
.nv-suite-page__alt-link { display: inline-flex; align-items: center; gap: 6px; font: 700 12px var(--body); color: var(--nv-navy); letter-spacing: 0.04em; }
.nv-suite-page__alt-link:hover { color: var(--nv-teal); }

@media (max-width: 980px) {
	.nv-suite-page__layout { grid-template-columns: 1fr; }
	.nv-suite-page__book { position: static; }
}

.nv-suite-page__bottom-cta { padding: 56px 0; background: var(--nv-navy); color: #fff; }
.nv-suite-page__bottom-cta-inner { display: grid; grid-template-columns: 1.4fr auto; gap: 48px; align-items: center; }
.nv-suite-page__bottom-eyebrow { font: 700 11px var(--body); letter-spacing: 0.2em; text-transform: uppercase; color: var(--nv-lime); margin: 0 0 12px; }
.nv-suite-page__bottom-cta h2 { font: 800 clamp(24px, 2.6vw, 34px) var(--display); color: #fff; margin: 0 0 10px; letter-spacing: -0.01em; }
.nv-suite-page__bottom-cta p { color: rgba(255, 255, 255, 0.86); font-size: 14px; max-width: 60ch; }
.nv-suite-page__bottom-actions { display: flex; flex-direction: column; gap: 10px; min-width: 220px; }
.nv-suite-page__cta { padding: 14px 24px; border-radius: 999px; font: 700 13px var(--body); letter-spacing: 0.04em; text-transform: uppercase; text-align: center; }
.nv-suite-page__cta--primary { background: var(--nv-lime); color: var(--nv-navy); }
.nv-suite-page__cta--primary:hover { background: #b8db4f; }
.nv-suite-page__cta--ghost { color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.5); }
.nv-suite-page__cta--ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: #fff; }
@media (max-width: 860px) { .nv-suite-page__bottom-cta-inner { grid-template-columns: 1fr; } }


/* =========================================================================
   COMPACT v2 — modern OYO/booking.com style overrides (22/05/2026)
   Scope: .nv-suite-page--compact wrapper only. Existing v1 rules untouched.
   ========================================================================= */

/* Breadcrumb — chip-style trail */
.nv-suite-page--compact .nv-suite-page__crumb { padding: 14px 0; background: #fff; border-bottom: 1px solid var(--nv-rule); }
.nv-suite-page--compact .nv-suite-page__crumb .nv-suite-page__container { gap: 6px; font: 500 12px var(--body); color: var(--nv-mute); }
.nv-suite-page--compact .nv-suite-page__crumb a { padding: 4px 10px; border-radius: 999px; background: var(--nv-cream); color: var(--nv-mute); transition: background 160ms, color 160ms; }
.nv-suite-page--compact .nv-suite-page__crumb a:hover { background: var(--nv-navy); color: #fff; }
.nv-suite-page--compact .nv-suite-page__crumb span[aria-hidden] { color: rgba(2, 46, 61, 0.32); font-size: 11px; }
.nv-suite-page--compact .nv-suite-page__crumb span[aria-current] { padding: 4px 10px; border-radius: 999px; background: var(--nv-navy); color: #fff; font-weight: 600; }

/* Policies — icon row stack (4 in 2-col grid) */
.nv-suite-page--compact .nv-suite-page__policy-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--nv-rule); border-radius: 12px; overflow: hidden; background: #fff; }
.nv-suite-page--compact .nv-suite-page__policy { background: #fff; padding: 18px 20px; border: 0; border-top: 0; border-right: 1px solid var(--nv-rule); border-bottom: 1px solid var(--nv-rule); display: flex; gap: 14px; align-items: flex-start; }
.nv-suite-page--compact .nv-suite-page__policy:nth-child(2n) { border-right: 0; }
.nv-suite-page--compact .nv-suite-page__policy:nth-last-child(-n+2) { border-bottom: 0; }
.nv-suite-page--compact .nv-suite-page__policy-icon { flex-shrink: 0; width: 36px; height: 36px; border-radius: 8px; background: rgba(106, 202, 209, 0.16); color: var(--nv-navy); display: inline-flex; align-items: center; justify-content: center; }
.nv-suite-page--compact .nv-suite-page__policy-body h4 { font: 700 14px var(--body); color: var(--nv-navy); margin: 0 0 4px; letter-spacing: 0; }
.nv-suite-page--compact .nv-suite-page__policy-body p { font: 400 13px/1.55 var(--body); color: var(--nv-mute); margin: 0; }
@media (max-width: 720px) {
	.nv-suite-page--compact .nv-suite-page__policy-grid { grid-template-columns: 1fr; }
	.nv-suite-page--compact .nv-suite-page__policy { border-right: 0; border-bottom: 1px solid var(--nv-rule); }
	.nv-suite-page--compact .nv-suite-page__policy:last-child { border-bottom: 0; }
}

/* Reviews — top rating panel w/ aggregate breakdown bars */
.nv-suite-page--compact .nv-suite-page__rating-panel { display: grid; grid-template-columns: 220px 1fr; gap: 28px; padding: 22px; background: var(--nv-cream); border: 1px solid var(--nv-rule); border-radius: 12px; margin-bottom: 18px; align-items: center; }
.nv-suite-page--compact .nv-suite-page__rating-score-wrap { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; padding-right: 28px; border-right: 1px solid var(--nv-rule); }
.nv-suite-page--compact .nv-suite-page__rating-score { font: 900 56px/1 var(--display); color: var(--nv-navy); letter-spacing: -0.02em; }
.nv-suite-page--compact .nv-suite-page__rating-stars { font-size: 16px; color: var(--nv-lime); letter-spacing: 3px; }
.nv-suite-page--compact .nv-suite-page__rating-count { font: 400 11px var(--body); color: var(--nv-mute); margin-top: 4px; }
.nv-suite-page--compact .nv-suite-page__rating-bars { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.nv-suite-page--compact .nv-suite-page__rating-bars li { display: grid; grid-template-columns: 130px 1fr 32px; gap: 12px; align-items: center; font: 500 12px var(--body); color: var(--nv-navy); }
.nv-suite-page--compact .nv-suite-page__rating-bar-label { color: var(--nv-mute); }
.nv-suite-page--compact .nv-suite-page__rating-bar { height: 6px; border-radius: 999px; background: rgba(2, 46, 61, 0.08); overflow: hidden; display: block; }
.nv-suite-page--compact .nv-suite-page__rating-bar span { display: block; height: 100%; background: var(--nv-lime); border-radius: 999px; }
.nv-suite-page--compact .nv-suite-page__rating-bar-val { font-weight: 700; text-align: right; font-variant-numeric: tabular-nums; color: var(--nv-navy); }
@media (max-width: 720px) {
	.nv-suite-page--compact .nv-suite-page__rating-panel { grid-template-columns: 1fr; gap: 18px; padding: 18px; }
	.nv-suite-page--compact .nv-suite-page__rating-score-wrap { padding-right: 0; padding-bottom: 18px; border-right: 0; border-bottom: 1px solid var(--nv-rule); }
}

/* Review cards — verified badge + compact stack */
.nv-suite-page--compact .nv-suite-page__review-grid { gap: 12px; }
.nv-suite-page--compact .nv-suite-page__review-card { background: #fff; border-radius: 10px; padding: 16px; gap: 10px; }
.nv-suite-page--compact .nv-suite-page__review-avatar { width: 32px; height: 32px; background: var(--nv-cream); color: var(--nv-navy); border: 1.5px solid var(--nv-lime); font-size: 12px; }
.nv-suite-page--compact .nv-suite-page__review-author { font: 700 13px var(--body); color: var(--nv-navy); }
.nv-suite-page--compact .nv-suite-page__review-meta { display: inline-flex; align-items: center; gap: 6px; font: 500 11px var(--body); color: var(--nv-mute); margin-top: 2px; }
.nv-suite-page--compact .nv-suite-page__review-verified { display: inline-flex; align-items: center; gap: 3px; color: #1e7e34; font-weight: 700; }
.nv-suite-page--compact .nv-suite-page__review-verified svg { stroke: #1e7e34; }
.nv-suite-page--compact .nv-suite-page__review-stars { color: var(--nv-lime); letter-spacing: 1.5px; font-size: 11px; }
.nv-suite-page--compact .nv-suite-page__review-quote { font-style: normal; font-size: 13px; color: var(--nv-ink); line-height: 1.55; }

/* Booking widget — OYO compact card */
.nv-suite-page--compact .nv-suite-page__book-card { padding: 0; overflow: hidden; border-radius: 12px; box-shadow: 0 8px 24px rgba(2, 46, 61, 0.10); }
.nv-suite-page--compact .nv-suite-page__book-head { padding: 18px 18px 14px; background: var(--nv-navy); color: #fff; border-bottom: 0; margin-bottom: 0; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.nv-suite-page--compact .nv-suite-page__book-pricewrap { display: flex; flex-direction: column; gap: 2px; }
.nv-suite-page--compact .nv-suite-page__book-price { color: #fff; display: flex; align-items: baseline; gap: 4px; }
.nv-suite-page--compact .nv-suite-page__book-price strong { font: 900 26px var(--display); color: #fff; letter-spacing: -0.01em; }
.nv-suite-page--compact .nv-suite-page__book-price span { font-size: 11px; color: rgba(255, 255, 255, 0.72); font-weight: 500; }
.nv-suite-page--compact .nv-suite-page__book-taxes { font: 400 10px var(--body); color: rgba(255, 255, 255, 0.62); letter-spacing: 0.04em; }
.nv-suite-page--compact .nv-suite-page__book-rating { display: inline-flex; align-items: center; gap: 4px; background: var(--nv-lime); color: var(--nv-navy); padding: 5px 10px; border-radius: 6px; font: 700 12px var(--body); }
.nv-suite-page--compact .nv-suite-page__book-rating strong { font-weight: 800; font-size: 13px; }
.nv-suite-page--compact .nv-suite-page__book-rating small { font-weight: 500; color: rgba(2, 46, 61, 0.65); font-size: 10px; }
.nv-suite-page--compact .nv-suite-page__book-rating svg { stroke: var(--nv-navy); fill: var(--nv-navy); }

/* Trust ribbon */
.nv-suite-page--compact .nv-suite-page__book-trust { list-style: none; padding: 10px 18px; margin: 0; display: flex; flex-wrap: wrap; gap: 14px; background: rgba(106, 202, 209, 0.08); border-bottom: 1px solid var(--nv-rule); }
.nv-suite-page--compact .nv-suite-page__book-trust li { display: inline-flex; align-items: center; gap: 5px; font: 600 11px var(--body); color: var(--nv-navy); }
.nv-suite-page--compact .nv-suite-page__book-trust svg { stroke: var(--nv-lime); }

/* Form layout */
.nv-suite-page--compact .nv-suite-page__form { padding: 16px 18px 14px; gap: 10px; }
.nv-suite-page--compact .nv-suite-page__form label > span { font-size: 9px; letter-spacing: 0.18em; color: var(--nv-mute); }
.nv-suite-page--compact .nv-suite-page__form input,
.nv-suite-page--compact .nv-suite-page__form select,
.nv-suite-page--compact .nv-suite-page__form textarea { padding: 9px 11px; border-radius: 7px; background: #fff; border-color: rgba(2, 46, 61, 0.18); font-size: 13px; }
.nv-suite-page--compact .nv-suite-page__date-row { gap: 6px; }

/* Guests stepper */
.nv-suite-page--compact .nv-suite-page__guests-stepper { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; background: var(--nv-cream); border: 1px solid var(--nv-rule); border-radius: 7px; }
.nv-suite-page--compact .nv-suite-page__guests-label { font: 700 12px var(--body); color: var(--nv-navy); }
.nv-suite-page--compact .nv-suite-page__stepper { display: inline-flex; align-items: center; gap: 8px; }
.nv-suite-page--compact .nv-suite-page__stepper-btn { width: 28px; height: 28px; border: 1.5px solid var(--nv-navy); background: #fff; color: var(--nv-navy); border-radius: 999px; font: 700 16px/1 var(--body); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background 160ms, color 160ms; padding: 0; }
.nv-suite-page--compact .nv-suite-page__stepper-btn:hover:not(:disabled) { background: var(--nv-navy); color: #fff; }
.nv-suite-page--compact .nv-suite-page__stepper-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.nv-suite-page--compact .nv-suite-page__stepper-val { font: 700 14px var(--body); color: var(--nv-navy); min-width: 18px; text-align: center; }
.nv-suite-page--compact .nv-suite-page__stepper-max { font: 500 10px var(--body); color: var(--nv-mute); margin-left: 4px; }

/* Buttons — OYO orange-vibe but lime-on-navy per brand */
.nv-suite-page--compact .nv-suite-page__btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 14px; border-radius: 8px; font-size: 13px; letter-spacing: 0.04em; }
.nv-suite-page--compact .nv-suite-page__btn--check { width: 100%; background: var(--nv-lime); color: var(--nv-navy); }
.nv-suite-page--compact .nv-suite-page__btn--check:hover { background: #b8db4f; }
.nv-suite-page--compact .nv-suite-page__btn--check svg { stroke: var(--nv-navy); }
.nv-suite-page--compact .nv-suite-page__btn--book { width: 100%; background: var(--nv-navy); color: #fff; }
.nv-suite-page--compact .nv-suite-page__btn--book:hover { background: #0a3a4d; transform: none; }
.nv-suite-page--compact .nv-suite-page__btn--book svg { stroke: #fff; }
/* Reserve & pay (primary) + Send enquiry (secondary/ghost) */
.nv-suite-page--compact .nv-suite-page__btn--pay { width: 100%; background: var(--nv-lime); color: var(--nv-navy); }
.nv-suite-page--compact .nv-suite-page__btn--pay:hover { background: #b8db4f; transform: translateY(-1px); }
.nv-suite-page--compact .nv-suite-page__btn--pay svg { stroke: var(--nv-navy); }
.nv-suite-page--compact .nv-suite-page__btn--ghost { width: 100%; background: transparent; color: var(--nv-navy); border: 1.5px solid rgba(2, 46, 61, 0.28); }
.nv-suite-page--compact .nv-suite-page__btn--ghost:hover { background: rgba(2, 46, 61, 0.05); border-color: var(--nv-navy); }
.nv-suite-page--compact .nv-suite-page__btn--ghost svg { stroke: var(--nv-navy); }
.nv-suite-page__or { display: flex; align-items: center; gap: 12px; margin: 2px 0; color: var(--nv-mute); font: 600 10px var(--body); letter-spacing: 0.14em; text-transform: uppercase; }
.nv-suite-page__or::before, .nv-suite-page__or::after { content: ""; flex: 1; height: 1px; background: rgba(2, 46, 61, 0.12); }
.nv-suite-page__pay-msg { font: 500 12px var(--body); color: var(--nv-mute); margin: 0; text-align: center; }
.nv-suite-page__pay-msg.is-ok { color: #1e7e34; }
.nv-suite-page__pay-msg.is-err { color: #8a1f1f; }

/* Availability pill */
.nv-suite-page--compact .nv-suite-page__avail { padding: 9px 11px; border-radius: 7px; font-size: 12px; font-weight: 500; }
.nv-suite-page--compact .nv-suite-page__avail--ok { background: rgba(30, 126, 52, 0.10); border-color: #1e7e34; color: #1e5a26; }
.nv-suite-page--compact .nv-suite-page__avail--bad { background: rgba(204, 0, 0, 0.07); border-color: rgba(204, 0, 0, 0.32); color: #8a1f1f; }

/* Calendar — collapsible */
.nv-suite-page--compact .nv-suite-page__cal-wrap { margin-top: 0; padding: 0 18px 14px; border-top: 1px solid var(--nv-rule); }
.nv-suite-page--compact .nv-suite-page__cal-toggle { list-style: none; cursor: pointer; padding: 12px 0; display: flex; justify-content: space-between; align-items: center; font: 700 12px var(--body); color: var(--nv-navy); }
.nv-suite-page--compact .nv-suite-page__cal-toggle::-webkit-details-marker { display: none; }
.nv-suite-page--compact .nv-suite-page__cal-toggle > span:first-child { display: inline-flex; align-items: center; gap: 6px; }
.nv-suite-page--compact .nv-suite-page__cal-toggle svg { stroke: var(--nv-navy); }
.nv-suite-page--compact .nv-suite-page__cal-chev { width: 22px; height: 22px; background: var(--nv-cream); border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font: 800 14px var(--body); transition: transform 200ms; }
.nv-suite-page--compact details[open] .nv-suite-page__cal-chev { transform: rotate(45deg); }

/* Alt link footer */
.nv-suite-page--compact .nv-suite-page__alt { padding: 12px 18px 16px; border-top: 1px solid var(--nv-rule); margin-top: 0; background: var(--nv-cream); }
.nv-suite-page--compact .nv-suite-page__alt-link { color: var(--nv-navy); font-size: 12px; }

/* ── Single-column linear flow on BOTH devices 09/07/2026 ────────
   Overview → Services → Policies → Book now → Other rooms → Reviews → FAQ.
   Kills the 2-col sticky sidebar (a tall sticky card overflowed the
   viewport). body → display:contents promotes the sections into the
   layout grid so the Book card sits inline after Policies (order 4). */
.nv-suite-page__layout { grid-template-columns: 1fr; min-width: 0; }
.nv-suite-page__body { display: contents; }
/* Promoted grid items must be shrinkable, else the reviews carousel
   expands the row to its full content width and overflows the page. */
.nv-suite-page__section, .nv-suite-page__book { min-width: 0; }
.nv-suite-page__book { position: static; align-self: stretch; }
.nv-suite-page__book-card { max-width: 520px; margin-inline: auto; }

/* Desktop: Book card spans full width, form fields arrange across it
   instead of one tall single column 09/07/2026. */
@media (min-width: 721px) {
	.nv-suite-page__book-card { max-width: none; }

	.nv-suite-page--compact .nv-suite-page__form {
		grid-template-columns: repeat(3, 1fr);
		gap: 14px 18px;
		align-items: end;
	}
	/* Check-in + Check-out become their own cells (row: dates + guests) */
	.nv-suite-page--compact .nv-suite-page__date-row { display: contents; }
	/* Full-width rows */
	.nv-suite-page--compact .nv-suite-page__cal,
	.nv-suite-page--compact .nv-suite-page__suggest,
	.nv-suite-page--compact .nv-suite-page__avail,
	.nv-suite-page--compact .nv-suite-page__btn--check,
	.nv-suite-page--compact .nv-suite-page__enq,
	.nv-suite-page--compact .nv-suite-page__error { grid-column: 1 / -1; }

	/* Enquiry block: name / phone / email across one row, rest full width */
	.nv-suite-page--compact .nv-suite-page__enq:not([hidden]) {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 12px 16px;
		align-items: end;
	}
	.nv-suite-page--compact .nv-suite-page__enq > * { grid-column: 1 / -1; }
	.nv-suite-page--compact .nv-suite-page__enq > label:nth-child(-n+3) { grid-column: span 1; }
}
#about     { order: 1; }
#amenities { order: 2; }
#policies  { order: 3; }
.nv-suite-page__book { order: 4; }
#others    { order: 5; }
#reviews   { order: 6; }
#faq       { order: 7; }

/* ── Guest reviews: horizontal carousel on BOTH devices 09/07/2026 ── */
.nv-suite-page__review-grid {
	display: flex;
	grid-template-columns: none;
	gap: 14px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 6px;
	scroll-padding-left: 2px;
}
.nv-suite-page__review-grid::-webkit-scrollbar { display: none; }
.nv-suite-page__review-card {
	flex: 0 0 clamp(280px, 46%, 400px);
	scroll-snap-align: start;
}
@media (max-width: 640px) {
	.nv-suite-page__review-card { flex-basis: 84%; }
}

/* ── Other rooms: horizontal carousel on BOTH devices 09/07/2026 ── */
.nv-suite-page__other-grid {
	display: flex;
	grid-template-columns: none;
	gap: 14px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 6px;
	scroll-padding-left: 2px;
}
.nv-suite-page__other-grid::-webkit-scrollbar { display: none; }
.nv-suite-page__other-card { flex: 0 0 clamp(240px, 30%, 320px); scroll-snap-align: start; }
@media (max-width: 640px) {
	.nv-suite-page__other-card { flex-basis: 82%; }
}

