/**
 * Vivo brand layer for the property detail + checkout pages.
 *
 * Layout mirrors the reference build; every colour, font and weight resolves
 * from the Vivo tokens below so the pages read as part of the existing site.
 * Nothing here targets the header, footer or theme kit.
 */

.vivo-scope {
	--vivo-navy: #0c3490;
	--vivo-navy-deep: #08245f;
	--vivo-rose: #e05d92;
	--vivo-ink: #1b2436;
	--vivo-body-col: #4a5468;
	--vivo-muted: #7b849a;
	--vivo-line: #dde3f0;
	--vivo-line-soft: #eef1f8;
	--vivo-cream: #faf9f7;
	--vivo-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
	--vivo-eyebrow: "Cinzel", "Cormorant Garamond", Georgia, serif;
	--vivo-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	font-family: var(--vivo-body);
	color: var(--vivo-body-col);
	font-size: 15px;
	line-height: 1.7;
}

.vivo-scope *,
.vivo-scope *::before,
.vivo-scope *::after {
	box-sizing: border-box;
}

.vivo-scope h1,
.vivo-scope h2,
.vivo-scope h3,
.vivo-scope h4 {
	font-family: var(--vivo-display);
	color: var(--vivo-navy);
	font-weight: 500;
	letter-spacing: 0;
	margin: 0;
}

.vivo-scope .vivo-eyebrow {
	font-family: var(--vivo-eyebrow);
	text-transform: uppercase;
	letter-spacing: 0.32em;
	font-size: 11px;
	color: var(--vivo-navy);
}

.vivo-hidden {
	display: none !important;
}

/* ------------------------------------------------------------------ *
 * Part 1 — property detail + availability
 * ------------------------------------------------------------------ */

.vp-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 28px 20px 70px;
}

.vp-gallery-wrap {
	position: relative;
}

.vp-gallery {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 10px;
}

.vp-gallery button {
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	display: block;
	overflow: hidden;
	border-radius: 10px;
}

.vp-gallery img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 10px;
	display: block;
	transition: transform 0.5s ease;
}

.vp-gallery button:first-child,
.vp-gallery button:first-child img {
	height: 410px;
}

.vp-gallery button:first-child {
	grid-row: span 2;
}

.vp-gallery button:hover img {
	transform: scale(1.03);
}

.vp-viewall {
	position: absolute;
	bottom: 15px;
	right: 15px;
	background: var(--vivo-navy);
	color: #fff;
	padding: 11px 18px;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	font-family: var(--vivo-eyebrow);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.vp-viewall:hover {
	background: var(--vivo-navy-deep);
}

.vp-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
	margin-top: 34px;
	align-items: start;
}

.vp-title {
	font-size: 40px;
	line-height: 1.15;
}

.vp-meta {
	margin: 16px 0 0;
	color: var(--vivo-body-col);
	line-height: 2;
	font-size: 14px;
}

.vp-meta span.vp-i {
	display: inline-block;
	width: 22px;
	color: var(--vivo-rose);
}

.vp-section {
	margin-top: 34px;
}

.vp-section h2 {
	font-size: 34px;
	margin-bottom: 12px;
}

.vp-section p {
	margin: 0;
}

.vp-read-more {
	color: var(--vivo-navy);
	cursor: pointer;
	font-weight: 600;
	display: inline-block;
	margin-top: 10px;
	font-size: 13px;
	letter-spacing: 0.04em;
	border-bottom: 1px solid var(--vivo-line);
}

.vp-read-more:hover {
	border-bottom-color: var(--vivo-navy);
}

.vp-amenities {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.vp-amenities span {
	background: var(--vivo-cream);
	border: 1px solid var(--vivo-line-soft);
	padding: 8px 14px;
	border-radius: 20px;
	font-size: 13px;
	color: var(--vivo-ink);
}

.vp-rules {
	margin: 0;
	padding: 0;
	list-style: none;
}

.vp-rules li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 4px;
}

.vp-rules li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.75em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--vivo-rose);
}

#vp-map {
	height: 260px;
	border-radius: 10px;
	border: 1px solid var(--vivo-line);
	z-index: 0;
}

/* Sidebar booking card */

.vp-sidebar {
	position: sticky;
	top: 110px;
}

.vp-card {
	background: #fff;
	border: 1px solid var(--vivo-line);
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 18px 40px rgba(12, 52, 144, 0.07);
}

.vp-card h3 {
	font-size: 26px;
	margin-bottom: 16px;
}

.vp-card input[type="text"],
.vp-card select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--vivo-line);
	border-radius: 8px;
	font-family: var(--vivo-body);
	font-size: 14px;
	color: var(--vivo-ink);
	background: #fff;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
}

.vp-card input[type="text"]:focus,
.vp-card select:focus {
	outline: none;
	border-color: var(--vivo-navy);
	box-shadow: 0 0 0 3px rgba(12, 52, 144, 0.08);
}

.vp-guest-row {
	position: relative;
	margin-top: 12px;
}

.vp-guest-row::after {
	content: "\25be";
	position: absolute;
	right: 14px;
	top: 12px;
	pointer-events: none;
	color: var(--vivo-navy);
	font-size: 12px;
}

.vp-price-box {
	margin-top: 18px;
	font-size: 14px;
	color: var(--vivo-ink);
}

.vp-price-note {
	color: var(--vivo-muted);
	font-size: 13px;
}

.vp-price-lines {
	margin-top: 12px;
	padding-top: 10px;
	border-top: 1px solid var(--vivo-line-soft);
	font-size: 13px;
}

.vp-price-lines .vp-line {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 3px 0;
}

.vp-price-lines .vp-line-total {
	font-weight: 700;
	color: var(--vivo-navy);
	border-top: 1px solid var(--vivo-line-soft);
	margin-top: 6px;
	padding-top: 8px;
	font-size: 15px;
}

.vp-book-btn {
	width: 100%;
	margin-top: 18px;
	padding: 15px 18px;
	border: none;
	border-radius: 6px;
	background: var(--vivo-navy);
	color: #fff;
	font-family: var(--vivo-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
}

.vp-book-btn:hover:not([disabled]) {
	background: var(--vivo-navy-deep);
}

.vp-book-btn[disabled] {
	background: #c8cfe0;
	cursor: default;
}

.vp-card-foot {
	margin: 14px 0 0;
	font-size: 12px;
	color: var(--vivo-muted);
	text-align: center;
}

/* Gallery modal */

.vp-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(8, 36, 95, 0.96);
	justify-content: center;
	align-items: center;
}

.vp-modal.is-open {
	display: flex;
}

.vp-modal img {
	max-width: 88%;
	max-height: 82vh;
	border-radius: 8px;
}

.vp-modal-close {
	position: absolute;
	top: 18px;
	right: 28px;
	font-size: 34px;
	line-height: 1;
	color: #fff;
	cursor: pointer;
	background: none;
	border: none;
}

.vp-modal-prev,
.vp-modal-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.14);
	border: none;
	color: #fff;
	font-size: 26px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	cursor: pointer;
}

.vp-modal-prev { left: 24px; }
.vp-modal-next { right: 24px; }

.vp-modal-count {
	position: absolute;
	bottom: 22px;
	left: 0;
	right: 0;
	text-align: center;
	color: rgba(255, 255, 255, 0.75);
	font-size: 12px;
	letter-spacing: 0.18em;
}

/* Litepicker, in Vivo colours */

.litepicker {
	font-family: var(--vivo-body) !important;
	font-size: 13px;
}

.litepicker .container__months {
	box-shadow: 0 18px 40px rgba(12, 52, 144, 0.14);
	border-radius: 10px;
}

.litepicker .container__months .month-item-name,
.litepicker .container__months .month-item-year {
	font-family: var(--vivo-display);
	color: var(--vivo-navy);
	font-size: 16px;
}

.litepicker .container__days .day-item:hover {
	box-shadow: inset 0 0 0 1px var(--vivo-navy);
	color: var(--vivo-navy);
}

.litepicker .container__days .day-item.is-start-date,
.litepicker .container__days .day-item.is-end-date {
	background-color: var(--vivo-navy) !important;
	color: #fff !important;
}

.litepicker .container__days .day-item.is-in-range {
	background-color: rgba(12, 52, 144, 0.09);
}

.litepicker .container__days .day-item.is-locked {
	color: #c3c8d4;
	text-decoration: line-through;
}

@media (max-width: 980px) {
	.vp-content {
		grid-template-columns: 1fr;
	}

	.vp-sidebar {
		position: static;
	}
}

@media (max-width: 700px) {
	.vp-gallery {
		grid-template-columns: 1fr 1fr;
	}

	.vp-gallery button:first-child,
	.vp-gallery button:first-child img {
		height: 240px;
	}

	.vp-gallery button:first-child {
		grid-column: span 2;
		grid-row: auto;
	}

	.vp-gallery img {
		height: 120px;
	}

	.vp-title {
		font-size: 30px;
	}

	.vp-section h2 {
		font-size: 26px;
	}
}

/* ------------------------------------------------------------------ *
 * Part 2 — checkout
 * ------------------------------------------------------------------ */

.vc-wrap {
	display: grid;
	grid-template-columns: 60% 40%;
	gap: 40px;
	max-width: 1100px;
	margin: 56px auto 70px;
	padding: 0 15px;
	align-items: start;
}

.vc-form h2 {
	font-size: 44px;
	line-height: 1.1;
	margin-bottom: 26px;
}

.vc-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.vc-span2 {
	grid-column: 1 / -1;
}

.vc-form input,
.vc-form select,
.vc-form textarea {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid var(--vivo-line);
	border-radius: 8px;
	font-family: var(--vivo-body);
	font-size: 14px;
	color: var(--vivo-ink);
	background: #fff;
}

.vc-form input::placeholder,
.vc-form textarea::placeholder {
	color: var(--vivo-muted);
}

.vc-form input:focus,
.vc-form select:focus,
.vc-form textarea:focus {
	outline: none;
	border-color: var(--vivo-navy);
	box-shadow: 0 0 0 3px rgba(12, 52, 144, 0.08);
}

.vc-form textarea {
	margin-top: 15px;
	min-height: 96px;
	resize: vertical;
}

.vc-form input.is-invalid,
.vc-form select.is-invalid {
	border-color: #c0392b;
}

.vc-consent-box {
	margin-top: 22px;
	padding: 22px;
	border: 1px solid var(--vivo-line);
	border-radius: 12px;
	background: var(--vivo-cream);
}

.vc-consent {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 12.5px;
	line-height: 1.65;
	color: var(--vivo-body-col);
	margin-bottom: 14px;
}

.vc-consent input[type="checkbox"] {
	width: auto;
	margin-top: 3px;
	flex: 0 0 auto;
	accent-color: var(--vivo-navy);
}

.vc-consent strong {
	color: var(--vivo-navy);
}

.vc-pay-btn {
	width: 100%;
	margin-top: 6px;
	padding: 16px;
	background: var(--vivo-navy);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-family: var(--vivo-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
}

.vc-pay-btn:hover:not([disabled]) {
	background: var(--vivo-navy-deep);
}

.vc-pay-btn[disabled] {
	background: #c8cfe0;
	cursor: default;
}

.vc-status {
	margin: 14px 0 0;
	font-size: 13.5px;
	min-height: 1.2em;
}

.vc-status.is-error {
	color: #c0392b;
}

.vc-done {
	max-width: 620px;
	margin: 70px auto;
	padding: 0 20px;
	text-align: center;
}

.vc-done h2 {
	font-size: 40px;
	margin-bottom: 14px;
}

/* Summary card */

.vc-summary {
	background: var(--vivo-cream);
	padding: 25px;
	border-radius: 16px;
	border: 1px solid var(--vivo-line);
}

.vc-summary img {
	width: 100%;
	height: 210px;
	object-fit: cover;
	border-radius: 10px;
	display: block;
	margin-bottom: 18px;
}

.vc-summary h3 {
	font-size: 28px;
	line-height: 1.2;
	margin-bottom: 18px;
}

.vc-summary h4 {
	font-size: 24px;
	margin-bottom: 10px;
}

.vc-summary p {
	margin: 0 0 6px;
	font-size: 14px;
}

.vc-summary p strong {
	color: var(--vivo-navy);
	font-weight: 600;
}

.vc-sum-rows {
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid var(--vivo-line);
	font-size: 14px;
}

.vc-sum-row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 6px 0;
}

.vc-sum-row.is-total {
	border-top: 1px solid var(--vivo-line);
	margin-top: 8px;
	padding-top: 12px;
	font-weight: 700;
	color: var(--vivo-navy);
	font-size: 16px;
}

.vc-sum-row.is-deposit {
	border-top: 1px solid var(--vivo-line);
	margin-top: 8px;
	padding-top: 12px;
}

.vc-sum-foot {
	margin: 14px 0 0;
	font-size: 12px;
	color: var(--vivo-muted);
	line-height: 1.6;
}

@media (max-width: 900px) {
	.vc-wrap {
		grid-template-columns: 1fr;
		margin-top: 32px;
	}

	.vc-summary {
		order: -1;
	}

	.vc-form h2 {
		font-size: 32px;
	}
}

@media (max-width: 560px) {
	.vc-grid {
		grid-template-columns: 1fr 1fr;
	}

	.vc-grid .vc-span2 {
		grid-column: 1 / -1;
	}
}

/* ------------------------------------------------------------------ *
 * Part 2b — checkout date gate (arrived from the Stays grid, no dates)
 * ------------------------------------------------------------------ */

.vc-gate {
	max-width: 1100px;
	margin: 56px auto 70px;
	padding: 0 15px;
}

.vc-gate-head {
	margin-bottom: 26px;
}

.vc-gate-eyebrow {
	display: block;
	font-family: var(--vivo-eyebrow);
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--vivo-rose);
	margin-bottom: 8px;
}

.vc-gate-head .vp-title {
	margin: 0 0 6px;
}

.vc-gate-sub {
	font-family: var(--vivo-body);
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--vivo-muted);
	margin: 0;
}

.vc-gate-error {
	font-family: var(--vivo-body);
	font-size: 14px;
	color: #9c2540;
	background: #fdf3f6;
	border: 1px solid #f2d5df;
	border-radius: 8px;
	padding: 12px 14px;
	margin: 0 0 22px;
}

.vc-gate-grid {
	display: grid;
	grid-template-columns: 60% 40%;
	gap: 40px;
	align-items: start;
}

.vc-gate-media > img {
	display: block;
	width: 100%;
	height: 430px;
	object-fit: cover;
	border-radius: 12px;
}

.vc-gate-media .vp-price-note {
	display: block;
	margin-top: 14px;
}

@media ( max-width: 900px ) {
	.vc-gate-grid {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.vc-gate-media > img {
		height: 260px;
	}
}


.vc-gate-thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-top: 10px;
}

.vc-gate-thumbs img {
	display: block;
	width: 100%;
	height: 88px;
	object-fit: cover;
	border-radius: 8px;
}

.vc-gate-media > img {
  transition: opacity .25s ease;
}

.vc-gate-media > img.is-swapping {
  animation: vc-gate-pop .3s ease;
}

@keyframes vc-gate-pop {
  from { opacity: .3; transform: scale( .985 ); }
  to   { opacity: 1;  transform: scale( 1 ); }
}

.vc-gate-thumb {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.vc-gate-thumb:hover {
  transform: translateY( -2px );
  box-shadow: 0 8px 20px rgba( 12, 52, 144, .22 );
}

.vc-gate-thumb:focus-visible {
  outline: 2px solid var(--vivo-navy);
  outline-offset: 2px;
}

.vc-gate-facts {
	margin-top: 22px;
	padding-top: 20px;
	border-top: 1px solid var(--vivo-line-soft);
}

.vc-gate-section {
	margin-top: 26px;
}

.vc-gate-section h2 {
	font-size: 26px;
}

.vc-gate-grid .vp-card {
	position: sticky;
	top: 24px;
}

@media ( max-width: 900px ) {
	.vc-gate-thumbs img {
		height: 68px;
	}

	.vc-gate-grid .vp-card {
		position: static;
	}
}

/* ------------------------------------------------------------------ *
 * Owner portal
 * ------------------------------------------------------------------ */

.vo-portal {
	max-width: 1100px;
	margin: 56px auto 76px;
	padding: 0 15px;
}

.vo-portal-head {
	margin-bottom: 34px;
	max-width: 720px;
}

.vo-eyebrow {
	display: block;
	font-family: var(--vivo-eyebrow);
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--vivo-rose);
	margin-bottom: 8px;
}

.vo-portal-head .vp-title {
	margin: 0 0 12px;
}

.vo-lede {
	font-family: var(--vivo-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--vivo-body-col);
	margin: 0;
}

.vo-portal-grid {
	display: grid;
	grid-template-columns: 60% 40%;
	gap: 40px;
	align-items: start;
}

.vo-panels {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.vo-panel {
	border: 1px solid var(--vivo-line-soft);
	border-radius: 12px;
	padding: 22px 22px 24px;
	background: var(--vivo-cream);
}

.vo-panel h2 {
	font-family: var(--vivo-display);
	font-size: 22px;
	color: var(--vivo-navy);
	margin: 8px 0 8px;
}

.vo-panel p {
	font-family: var(--vivo-body);
	font-size: 14px;
	line-height: 1.7;
	color: var(--vivo-body-col);
	margin: 0;
}

.vo-card-copy {
	font-family: var(--vivo-body);
	font-size: 14px;
	line-height: 1.7;
	color: var(--vivo-body-col);
	margin: 0 0 18px;
}

a.vo-btn {
	display: block;
	text-align: center;
	text-decoration: none;
	color: #fff;
}

a.vo-btn:hover,
a.vo-btn:focus {
	color: #fff;
	text-decoration: none;
}

@media ( max-width: 900px ) {
	.vo-portal-grid {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.vo-panels {
		grid-template-columns: 1fr;
	}
}


/* ------------------------------------------------------------------ *
 * Property details card (Figma parity) — price row, bordered date /
 * guests block, primary action, two centred footer lines.
 * ------------------------------------------------------------------ */

.vp-card {
	background: #fff;
	border: 1px solid rgba( 12, 52, 144, 0.12 );
	border-radius: 0;
	padding: 28px;
	box-shadow: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.vp-card > h3 {
	display: none;
}

.vp-card-head {
	display: flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 4px;
}

.vp-card-from,
.vp-card-per {
	font-family: var(--vivo-body);
	font-size: 17px;
	font-weight: 400;
	color: var(--vivo-muted);
	line-height: 1.2;
}

.vp-card-amount {
	font-family: var(--vivo-body);
	font-size: 34px;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1;
	color: var(--vivo-navy);
}

.vp-card-amount--plain {
	font-size: 24px;
}

.vp-card-rating {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--vivo-body);
	font-size: 16px;
	font-weight: 600;
	color: var(--vivo-navy);
}

.vp-card-rating .vp-star {
	color: var(--vivo-rose);
	font-size: 15px;
	line-height: 1;
}

.vp-card-fields {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 1px solid rgba( 12, 52, 144, 0.12 );
	background: #fff;
}

.vp-field {
	position: relative;
	min-width: 0;
	padding: 14px 16px 16px;
	cursor: pointer;
}

.vp-field--out {
	border-left: 1px solid rgba( 12, 52, 144, 0.12 );
}

.vp-field--guests {
	grid-column: 1 / -1;
	border-top: 1px solid rgba( 12, 52, 144, 0.12 );
	cursor: default;
}

.vp-field-label {
	display: block;
	margin-bottom: 7px;
	font-family: var(--vivo-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--vivo-muted);
}

.vp-field-value {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	font-family: var(--vivo-body);
	font-size: 17px;
	line-height: 1.2;
	color: var(--vivo-navy);
}

.vp-field-value.is-empty .vp-field-text {
	color: rgba( 12, 52, 144, 0.45 );
}

.vp-field-cal {
	flex: none;
	color: var(--vivo-navy);
}

.vp-card .vp-card-fields select {
	width: 100%;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	font-family: var(--vivo-body);
	font-size: 17px;
	line-height: 1.2;
	color: var(--vivo-navy);
	cursor: pointer;
}

.vp-card .vp-card-fields select:focus {
	outline: none;
	box-shadow: none;
	border: 0;
}

.vp-field--guests::after {
	content: "";
	position: absolute;
	right: 18px;
	bottom: 21px;
	width: 8px;
	height: 8px;
	border-right: 1.6px solid var(--vivo-navy);
	border-bottom: 1.6px solid var(--vivo-navy);
	transform: rotate( 45deg );
	pointer-events: none;
}

.vp-field:focus-visible {
	outline: 2px solid var(--vivo-navy);
	outline-offset: -2px;
}

.vp-card input[type="text"].vp-dates-ghost {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	opacity: 0;
	pointer-events: none;
}

.vp-card .vp-price-box {
	margin-top: 0;
}

.vp-card .vp-price-box:empty {
	display: none;
}

.vp-card .vp-book-btn {
	width: 100%;
	margin-top: 4px;
	padding: 19px 18px;
	border: 0;
	border-radius: 0;
	background: var(--vivo-rose);
	color: #fff;
	font-family: var(--vivo-body);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.01em;
	text-transform: none;
	cursor: pointer;
}

.vp-card .vp-book-btn:hover:not([disabled]) {
	background: #cd4b7f;
}

.vp-card .vp-book-btn[disabled] {
	background: rgba( 224, 93, 146, 0.35 );
	cursor: not-allowed;
}

.vp-card .vp-card-foot {
	margin: 0;
	text-align: center;
	font-family: var(--vivo-body);
	font-size: 14px;
	color: var(--vivo-muted);
}

.vp-card .vp-card-foot + .vp-card-foot {
	margin-top: 6px;
}

.vp-card .vp-ask {
	display: inline;
	text-wrap: balance;
	font-family: var(--vivo-body);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--vivo-navy);
	text-decoration: none;
}

.vp-card .vp-ask:hover {
	color: var(--vivo-rose);
}

@media ( max-width: 1024px ) {
	.vp-card {
		padding: 24px;
	}
}

@media ( max-width: 767px ) {
	.vp-card {
		padding: 20px;
		gap: 10px;
	}

	.vp-card-amount {
		font-size: 30px;
	}

	.vp-card-from,
	.vp-card-per {
		font-size: 15px;
	}

	.vp-field {
		padding: 12px 12px 14px;
	}

	.vp-field-value,
	.vp-card .vp-card-fields select {
		font-size: 15px;
	}

	.vp-field-label {
		font-size: 10px;
		letter-spacing: 0.14em;
	}

	.vp-field--guests::after {
		right: 14px;
		bottom: 19px;
	}

	.vp-card .vp-book-btn {
		padding: 17px 16px;
		font-size: 15px;
	}

	.vp-card .vp-card-foot {
		font-size: 13px;
	}

	.vp-card .vp-ask {
		font-size: 11.5px;
		letter-spacing: 0.08em;
	}

	.vp-card .vp-ask-arrow {
		margin-left: 6px;
	}
}

.vp-card .vp-ask-arrow {
	margin-left: 8px;
	display: inline-block;
}


/* ==========================================================================
   Residence detail — Figma build (VIVO HOSPITALITY / Residences)
   ========================================================================== */

.vivo-scope.vp-wrap {
	--vp-navy: #0C3490;
	--vp-navy-70: rgba(12, 52, 144, 0.70);
	--vp-navy-55: rgba(12, 52, 144, 0.55);
	--vp-navy-35: rgba(12, 52, 144, 0.35);
	--vp-navy-12: rgba(12, 52, 144, 0.12);
	--vp-rose: #E05D92;
	--vp-grey: #F7F7F7;
	--vp-ui: Montserrat, "Helvetica Neue", Arial, sans-serif;
	--vp-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--vp-eyebrow-font: Cinzel, "Cormorant Garamond", Georgia, serif;

	max-width: 1240px;
	margin: 0 auto;
	padding: 32px 0 0;
	font-family: var(--vp-ui);
	color: var(--vp-navy);
	box-sizing: border-box;
}

.vp-wrap *,
.vp-wrap *::before,
.vp-wrap *::after { box-sizing: border-box; }

.vp-wrap .vp-svg { width: 100%; height: 100%; display: block; }

/* --- Breadcrumb ---------------------------------------------------------- */
.vp-wrap .vp-crumbs {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	line-height: 18px;
	color: var(--vp-navy-55);
	margin: 0 0 20px;
}
.vp-wrap .vp-crumbs a { color: var(--vp-navy-55); text-decoration: none; }
.vp-wrap .vp-crumbs a:hover { color: var(--vp-navy); }
.vp-wrap .vp-crumbs .is-current { color: var(--vp-navy); }

/* --- Header -------------------------------------------------------------- */
.vp-wrap .vp-head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin: 0 0 28px;
}
.vp-wrap .vp-eyebrow {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 0;
	font-family: var(--vp-eyebrow-font);
	font-size: 13px;
	line-height: 16px;
	letter-spacing: 4.55px;
	text-transform: uppercase;
	color: var(--vp-rose);
}
.vp-wrap .vp-eyebrow-rule { display: block; width: 40px; height: 2px; background: var(--vp-rose); flex: none; }

.vp-wrap .vp-title {
	font-family: var(--vp-display);
	font-size: 44px;
	line-height: 52px;
	font-weight: 500;
	color: var(--vp-navy);
	margin: 12px 0 0;
}

.vp-wrap .vp-head-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin-top: 12px;
}
.vp-wrap .vp-head-rating {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	line-height: 20px;
	color: var(--vp-navy);
}
.vp-wrap .vp-head-rating .vp-svg { width: 14px; height: 14px; color: var(--vp-rose); }
.vp-wrap .vp-head-place { font-size: 12px; line-height: 18px; color: var(--vp-navy-55); }

.vp-wrap .vp-head-actions { display: flex; align-items: center; gap: 12px; }
.vp-wrap .vp-act {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: 0;
	padding: 4px 0;
	cursor: pointer;
	color: var(--vp-navy);
	font-family: var(--vp-ui);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.32px;
	line-height: 16.5px;
	text-transform: uppercase;
}
.vp-wrap .vp-act .vp-svg { width: 15px; height: 15px; }
.vp-wrap .vp-act:hover { color: var(--vp-rose); }

/* --- Gallery ------------------------------------------------------------- */
.vp-wrap .vp-gallery-wrap { position: relative; margin: 0 0 40px; }
.vp-wrap .vp-gallery {
	display: grid;
	grid-template-columns: 615fr 303fr 303fr;
	grid-template-rows: 255px 255px;
	gap: 10px;
}
.vp-wrap .vp-gallery button {
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	overflow: hidden;
	display: block;
}
.vp-wrap .vp-gallery button:first-child { grid-row: span 2; }
.vp-wrap .vp-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vp-wrap .vp-viewall {
	position: absolute;
	right: 0;
	bottom: 0;
	width: calc((100% - 20px) * 0.2482);
	height: calc((100% - 10px) / 2);
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(7, 24, 66, 0.45);
	border: 0;
	cursor: pointer;
	color: #fff;
	font-family: var(--vp-ui);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.78px;
	line-height: 16px;
	text-transform: none;
	padding: 0;
}
.vp-wrap .vp-viewall::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% - 48px);
	max-width: 220px;
	height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.55);
}
.vp-wrap .vp-viewall:hover { background: rgba(7, 24, 66, 0.6); }

/* --- Two column layout --------------------------------------------------- */
.vp-wrap .vp-content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 400px;
	gap: 64px;
	align-items: start;
}
.vp-wrap .vp-main { min-width: 0; }
.vp-wrap .vp-sidebar { position: sticky; top: 24px; }

/* --- Shared type --------------------------------------------------------- */
.vp-wrap .vp-h1 { font-family: var(--vp-display); font-size: 44px; line-height: 52px; font-weight: 500; color: var(--vp-navy); margin: 0 0 48px; }
.vp-wrap .vp-h2 { font-family: var(--vp-display); font-size: 32px; line-height: 40px; font-weight: 500; color: var(--vp-navy); margin: 0 0 16px; }
.vp-wrap .vp-h3 { font-family: var(--vp-display); font-size: 26px; line-height: 32px; font-weight: 500; color: var(--vp-navy); margin: 0 0 8px; }
.vp-wrap .vp-h4 { font-family: var(--vp-display); font-size: 20px; line-height: 28px; font-weight: 600; color: var(--vp-navy); margin: 0 0 4px; }
.vp-wrap .vp-p { font-size: 14px; line-height: 24px; color: var(--vp-navy-70); margin: 0; }
.vp-wrap .vp-p--narrow { max-width: 560px; }
.vp-wrap .vp-lead { font-size: 16px; line-height: 28px; color: var(--vp-navy-70); margin: 0 0 16px; }
.vp-wrap .vp-small { font-size: 13px; line-height: 20px; color: var(--vp-navy-70); margin: 0; }
.vp-wrap .vp-prose p { font-size: 14px; line-height: 24px; color: var(--vp-navy-70); margin: 0 0 16px; }
.vp-wrap .vp-prose p:last-child { margin-bottom: 0; }

/* --- Facts row ----------------------------------------------------------- */
.vp-wrap .vp-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0 0 32px;
	border-bottom: 1px solid var(--vp-navy-12);
}
.vp-wrap .vp-facts li { font-size: 12.5px; line-height: 18px; color: var(--vp-navy-70); }

/* --- Sections ------------------------------------------------------------ */
.vp-wrap .vp-sec { padding: 40px 0; border-bottom: 1px solid var(--vp-navy-12); }
.vp-wrap .vp-sec--last { border-bottom: 0; }
.vp-wrap .vp-sec--access { display: flex; align-items: flex-start; gap: 16px; }
.vp-wrap .vp-sec-icon { width: 30px; height: 30px; flex: none; color: var(--vp-rose); padding-top: 4px; }
.vp-wrap .vp-sec-icon .vp-svg { stroke-width: 1.9; }
.vp-wrap .vp-sec-copy { min-width: 0; }

.vp-wrap .vp-link-btn {
	background: none; border: 0; padding: 0; margin-top: 12px; cursor: pointer;
	color: var(--vp-navy); font-family: var(--vp-ui); font-size: 12px; font-weight: 600;
	letter-spacing: 0.72px; text-transform: uppercase; line-height: 18px;
}
.vp-wrap .vp-link-btn:hover { color: var(--vp-rose); }

.vp-wrap .vp-ghost-btn {
	display: inline-flex; align-items: center; justify-content: center;
	min-height: 48px; padding: 16px 32px; margin-top: 16px;
	background: none; border: 1px solid var(--vp-navy-35); cursor: pointer;
	color: var(--vp-navy); font-family: var(--vp-ui); font-size: 13px; font-weight: 600;
	letter-spacing: 0.78px; line-height: 16px;
}
.vp-wrap .vp-ghost-btn:hover { border-color: var(--vp-navy); }

/* --- Highlights ---------------------------------------------------------- */
.vp-wrap .vp-highlights {
	display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px; list-style: none; margin: 16px 0 0; padding: 0;
}
.vp-wrap .vp-highlights li { display: flex; align-items: flex-start; gap: 16px; }
.vp-wrap .vp-hl-icon { width: 26px; height: 26px; flex: none; color: var(--vp-navy); }
.vp-wrap .vp-hl-icon .vp-svg { stroke-width: 1.55; }

/* --- Amenities ----------------------------------------------------------- */
.vp-wrap .vp-amenities {
	display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 32px; list-style: none; margin: 0; padding: 0;
}
.vp-wrap .vp-amenities li {
	display: flex; align-items: center; gap: 14px;
	padding: 14px 0; font-size: 14px; line-height: 24px; color: var(--vp-navy);
}
.vp-wrap .vp-am-icon { width: 22px; height: 22px; flex: none; color: var(--vp-navy); }

/* --- The space ----------------------------------------------------------- */
.vp-wrap .vp-rooms { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.vp-wrap .vp-room { padding: 24px; border: 1px solid var(--vp-navy-12); }
.vp-wrap .vp-room-icon { display: block; width: 22px; height: 22px; color: var(--vp-navy); margin-bottom: 8px; }

/* --- The area ------------------------------------------------------------ */
.vp-wrap .vp-area {
	position: relative; height: 324px; margin-top: 20px; overflow: hidden;
	background: linear-gradient(158deg, #E8EDF6 0%, #DFE7F4 100%);
}
.vp-wrap .vp-area #vp-map,
.vp-wrap .vp-area .vp-area-blank { position: absolute; inset: 0; width: 100%; height: 100%; }
.vp-wrap .vp-area-note {
	position: absolute; left: 20px; bottom: 20px; z-index: 500;
	display: flex; align-items: center; gap: 8px; margin: 0;
	padding: 12px 20px; background: #fff;
	box-shadow: 0 12px 30px -14px rgba(12, 52, 144, 0.35);
	font-size: 12px; line-height: 18px; color: var(--vp-navy-55);
}
.vp-wrap .vp-area-note .vp-svg { width: 13px; height: 13px; flex: none; color: var(--vp-navy); }

/* --- Good to know -------------------------------------------------------- */
.vp-wrap .vp-know { margin: 0 0 24px; padding: 0; }
.vp-wrap .vp-know > div {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid var(--vp-navy-12);
}
.vp-wrap .vp-know dt {
	font-size: 11px; font-weight: 500; line-height: 16px; letter-spacing: 1.98px;
	text-transform: uppercase; color: var(--vp-navy-55); margin: 0;
}
.vp-wrap .vp-know dd { font-size: 13px; line-height: 20px; color: var(--vp-navy); margin: 0; text-align: right; }

.vp-wrap .vp-managed { display: flex; align-items: center; gap: 16px; padding: 24px; background: var(--vp-grey); }
.vp-wrap .vp-managed-icon { width: 34px; height: 34px; flex: none; color: var(--vp-navy); }
.vp-wrap .vp-managed-icon .vp-svg { stroke-width: 1.7; }

/* --- Booking card -------------------------------------------------------- */
.vp-wrap .vp-card {
	padding: 28px; background: #fff; border: 1px solid var(--vp-navy-12);
	box-shadow: 0 24px 60px -30px rgba(12, 52, 144, 0.30);
}
.vp-wrap .vp-card-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.vp-wrap .vp-card-from { font-size: 12px; line-height: 18px; color: var(--vp-navy-55); margin-right: 6px; }
.vp-wrap .vp-card-amount { font-size: 28px; font-weight: 600; line-height: 28px; color: var(--vp-navy); }
.vp-wrap .vp-card-amount--plain { font-size: 20px; }
.vp-wrap .vp-card-per { font-size: 12px; line-height: 20px; color: var(--vp-navy-55); margin-left: 6px; }
.vp-wrap .vp-card-rating { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; line-height: 18px; color: var(--vp-navy); }
.vp-wrap .vp-star { color: var(--vp-rose); }

.vp-wrap .vp-card-fields {
	display: grid; grid-template-columns: 1fr 1fr;
	border: 1px solid var(--vp-navy-12); margin-bottom: 12px;
}
.vp-wrap .vp-field { padding: 12px 16px; border-bottom: 1px solid var(--vp-navy-12); cursor: pointer; }
.vp-wrap .vp-field--in { border-right: 1px solid var(--vp-navy-12); }
.vp-wrap .vp-field--guests { grid-column: 1 / -1; border-bottom: 0; cursor: default; }
.vp-wrap .vp-field-label {
	display: block; font-size: 10px; font-weight: 600; line-height: 14px;
	letter-spacing: 2px; text-transform: uppercase; color: var(--vp-navy-55);
}
.vp-wrap .vp-field-value { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding-top: 6px; font-size: 14px; font-weight: 500; line-height: 21px; color: var(--vp-navy); }
.vp-wrap .vp-field-value.is-empty .vp-field-text { color: var(--vp-navy-55); }
.vp-wrap .vp-field--guests select {
	width: 100%; margin-top: 6px; padding: 0; border: 0; background: none;
	font-family: var(--vp-ui); font-size: 14px; font-weight: 500; line-height: 21px; color: var(--vp-navy);
	appearance: none; -webkit-appearance: none; cursor: pointer;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230C3490' stroke-width='1.6'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right center; background-size: 14px 14px;
}
.vp-wrap .vp-dates-ghost { position: absolute; opacity: 0; pointer-events: none; width: 1px; height: 1px; }

.vp-wrap .vp-price-box { padding: 4px 0 12px; font-size: 13px; line-height: 22px; color: var(--vp-navy); }
.vp-wrap .vp-price-note { font-size: 12px; line-height: 18px; color: var(--vp-navy-55); }
.vp-wrap .vp-price-lines { display: block; }

.vp-wrap .vp-book-btn {
	display: block; width: 100%; min-height: 48px; padding: 16px 32px;
	background: var(--vp-rose); color: #fff; border: 0; cursor: pointer;
	font-family: var(--vp-ui); font-size: 13px; font-weight: 600; letter-spacing: 0.78px; line-height: 16px;
}
.vp-wrap .vp-book-btn[disabled] { background: #F2C3D6; cursor: not-allowed; }
.vp-wrap .vp-card-foot { margin: 12px 0 0; text-align: center; font-size: 12px; line-height: 18px; color: var(--vp-navy-55); }
.vp-wrap .vp-ask {
	display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
	color: var(--vp-navy); font-size: 12px; font-weight: 600; letter-spacing: 0.72px; text-transform: uppercase; line-height: 18px;
}
.vp-wrap .vp-ask:hover { color: var(--vp-rose); }

/* --- Reviews ------------------------------------------------------------- */
.vp-wrap .vp-reviews { padding: 80px 0 0; }
.vp-wrap .vp-reviews-head { display: flex; align-items: center; gap: 12px; margin-bottom: 40px; }
.vp-wrap .vp-reviews-head .vp-svg { width: 20px; height: 20px; color: var(--vp-rose); flex: none; }
.vp-wrap .vp-review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.vp-wrap .vp-review { padding: 32px; background: #fff; border: 1px solid var(--vp-navy-12); }
.vp-wrap .vp-review-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.vp-wrap .vp-review-stars .vp-svg { width: 14px; height: 14px; color: var(--vp-rose); }
.vp-wrap .vp-review-body {
	margin: 0 0 20px; padding: 0; border: 0;
	font-family: var(--vp-display); font-style: italic; font-weight: 300;
	font-size: 24px; line-height: 36px; color: var(--vp-navy);
}
.vp-wrap .vp-review-name { margin: 0; font-size: 14px; font-weight: 500; line-height: 24px; color: var(--vp-navy); }
.vp-wrap .vp-review-date { margin: 0; font-size: 12px; line-height: 18px; color: var(--vp-navy-55); }

/* --- More residences ----------------------------------------------------- */
.vp-wrap .vp-more {
	margin: 80px calc(50% - 50vw) 0;
	padding: 112px max(24px, calc(50vw - 620px));
	background: var(--vp-grey);
}
.vp-wrap .vp-more-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.vp-wrap .vp-more-card { background: #fff; }
.vp-wrap .vp-more-media { position: relative; display: block; overflow: hidden; }
.vp-wrap .vp-more-media img { width: 100%; height: 260px; object-fit: cover; display: block; }
.vp-wrap .vp-more-badge {
	position: absolute; left: 20px; top: 20px; background: #fff; padding: 8px 12px;
	font-size: 9.5px; font-weight: 600; letter-spacing: 1.33px; line-height: 12px;
	text-transform: uppercase; color: var(--vp-navy);
}
.vp-wrap .vp-more-body { padding: 28px; }
.vp-wrap .vp-more-place {
	margin: 0 0 8px; font-size: 11px; font-weight: 500; line-height: 16px;
	letter-spacing: 1.98px; text-transform: uppercase; color: var(--vp-navy-55);
}
.vp-wrap .vp-more-name { margin: 0 0 8px; font-family: var(--vp-display); font-size: 26px; line-height: 32px; font-weight: 500; color: var(--vp-navy); }
.vp-wrap .vp-more-specs { margin: 0 0 20px; font-size: 12.5px; line-height: 18px; color: var(--vp-navy-70); }
.vp-wrap .vp-more-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 20px; border-top: 1px solid var(--vp-navy-12); }
.vp-wrap .vp-more-rate strong { font-size: 15px; font-weight: 600; line-height: 20px; color: var(--vp-navy); }
.vp-wrap .vp-more-rate em { font-style: normal; font-size: 12px; line-height: 20px; color: var(--vp-navy-55); margin-left: 4px; }
.vp-wrap .vp-more-link {
	display: inline-flex; align-items: center; gap: 8px; text-decoration: none; white-space: nowrap;
	color: var(--vp-navy); font-size: 12px; font-weight: 600; letter-spacing: 0.72px; text-transform: uppercase; line-height: 18px;
}
.vp-wrap .vp-more-link:hover { color: var(--vp-rose); }

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 1180px) {
	.vp-wrap { padding-left: 24px; padding-right: 24px; }
	.vp-wrap .vp-content { grid-template-columns: minmax(0, 1fr) 360px; gap: 40px; }
}
@media (max-width: 1000px) {
	.vp-wrap .vp-content { grid-template-columns: minmax(0, 1fr); gap: 40px; }
	.vp-wrap .vp-sidebar { position: static; max-width: 460px; }
	.vp-wrap .vp-review-grid,
	.vp-wrap .vp-more-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.vp-wrap .vp-title { font-size: 36px; line-height: 44px; }
	.vp-wrap .vp-h1 { font-size: 34px; line-height: 42px; margin-bottom: 32px; }
	.vp-wrap .vp-more { padding: 72px 24px; }
}
@media (max-width: 780px) {
	.vp-wrap .vp-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 150px; }
	.vp-wrap .vp-gallery button:first-child { grid-row: span 1; grid-column: span 2; }
	.vp-wrap .vp-gallery button:nth-child(n + 5) { display: none; }
	.vp-wrap .vp-viewall { width: auto; height: auto; padding: 12px 20px; right: 12px; bottom: 12px; background: #fff; color: var(--vp-navy); }
	.vp-wrap .vp-viewall::before { display: none; }
	.vp-wrap .vp-highlights,
	.vp-wrap .vp-amenities,
	.vp-wrap .vp-rooms,
	.vp-wrap .vp-review-grid,
	.vp-wrap .vp-more-grid { grid-template-columns: minmax(0, 1fr); }
	.vp-wrap .vp-head { align-items: flex-start; }
	.vp-wrap .vp-title { font-size: 30px; line-height: 38px; }
	.vp-wrap .vp-eyebrow { font-size: 11px; letter-spacing: 3px; }
}

/* Full-bleed grey band without creating horizontal overflow */
.vp-wrap .vp-more {
	margin: 80px 0 0;
	padding: 112px 0;
	background: var(--vp-grey);
	-webkit-box-shadow: 0 0 0 100vmax var(--vp-grey);
	box-shadow: 0 0 0 100vmax var(--vp-grey);
	-webkit-clip-path: inset(0 -100vmax);
	clip-path: inset(0 -100vmax);
}
@media (max-width: 1000px) {
	.vp-wrap .vp-more { padding: 72px 0; }
}

/* --- Legacy overrides (square corners, flat amenity rows) ---------------- */
.vp-wrap .vp-gallery button,
.vp-wrap .vp-gallery img,
.vp-wrap .vp-viewall,
.vp-wrap .vp-card,
.vp-wrap .vp-card-fields,
.vp-wrap .vp-book-btn,
.vp-wrap .vp-ghost-btn,
.vp-wrap .vp-room,
.vp-wrap .vp-review,
.vp-wrap .vp-more-card,
.vp-wrap .vp-more-media img,
.vp-wrap .vp-managed { border-radius: 0; }

.vp-wrap .vp-gallery button:first-child,
.vp-wrap .vp-gallery button:first-child img { height: 100%; }

.vp-wrap .vp-amenities span,
.vp-wrap .vp-am-icon {
	background: none;
	border: 0;
	border-radius: 0;
	padding: 0;
	font-size: inherit;
	color: var(--vp-navy);
}
.vp-wrap .vp-am-icon { width: 22px; height: 22px; flex: none; }

.vp-wrap .vp-card { box-shadow: 0 24px 60px -30px rgba(12, 52, 144, 0.30); }
.vp-wrap .vp-card select { width: auto; padding: 0; border: 0; box-shadow: none; }
.vp-wrap .vp-field--guests select { width: 100%; }

@media (max-width: 780px) {
	.vp-wrap .vp-gallery button:first-child,
	.vp-wrap .vp-gallery button:first-child img { height: 100%; }
	.vp-wrap .vp-gallery button:first-child { grid-area: auto / span 2; }
}

/* Review cards: equal height with clamped quotes */
.vp-wrap .vp-review-grid { align-items: stretch; }
.vp-wrap .vp-review { display: flex; flex-direction: column; }
.vp-wrap .vp-review-body {
	flex: 1 1 auto;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.vp-wrap .vp-review-foot { margin-top: auto; }
