/**
 * Chirala Resorts
 * Homepage V2
 *
 * File:
 * assets/css/home-v2.css
 */

/* ==========================================================
   V2 design tokens
========================================================== */

:root {
	--cr-v2-navy: #082f49;
	--cr-v2-navy-dark: #05263b;
	--cr-v2-teal: #087f8c;
	--cr-v2-aqua: #1aa7a8;
	--cr-v2-sand: #f7efe4;
	--cr-v2-orange: #f59e0b;
	--cr-v2-white: #ffffff;
	--cr-v2-text: #172033;
	--cr-v2-muted: #637083;
	--cr-v2-border: rgba(255, 255, 255, 0.25);
	--cr-v2-shadow: 0 24px 70px rgba(4, 31, 50, 0.24);

	--cr-v2-container: 1240px;
	--cr-v2-radius-sm: 12px;
	--cr-v2-radius-md: 18px;
	--cr-v2-radius-lg: 28px;

	--cr-v2-hero-image: none;
}


/* ==========================================================
   Homepage V2 base
========================================================== */

body.page-template-homepage-v2 {
	margin: 0;
	background: #ffffff;
}

body.page-template-homepage-v2 .site-content,
body.page-template-homepage-v2 .content-area,
body.page-template-homepage-v2 .site-main,
body.page-template-homepage-v2 .cr-v2-home {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

body.page-template-homepage-v2 .cr-v2-home {
	overflow: hidden;
}

.cr-v2-home,
.cr-v2-home *,
.cr-v2-home *::before,
.cr-v2-home *::after {
	box-sizing: border-box;
}

.cr-v2-container {
	width: min(
		calc(100% - 48px),
		var(--cr-v2-container)
	);
	margin-right: auto;
	margin-left: auto;
}


/* ==========================================================
   Full-width V2 page override
========================================================== */

body.page-template-homepage-v2 .site-content,
body.page-template-homepage-v2 .content-area,
body.page-template-homepage-v2 .site-main,
body.page-template-homepage-v2 .hp-page,
body.page-template-homepage-v2 .hp-page__content,
body.page-template-homepage-v2 .container,
body.page-template-homepage-v2 .header-hero,
body.page-template-homepage-v2 .cr-v2-home {
	width: 100% !important;
	max-width: none !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
	padding-right: 0 !important;
	padding-left: 0 !important;
}

body.page-template-homepage-v2 .site-content > .container,
body.page-template-homepage-v2 .site-main > .container,
body.page-template-homepage-v2 .content-area > .container {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.page-template-homepage-v2 .cr-v2-hero {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

/* ==========================================================
   Hero
========================================================== */

.cr-v2-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(650px, 84vh, 820px);
	overflow: hidden;
	isolation: isolate;
	background:
		linear-gradient(
			135deg,
			#0b4960 0%,
			#087f8c 45%,
			#e59a38 100%
		);
}

.cr-v2-hero__background {
	position: absolute;
	inset: 0;
	z-index: -3;
	background-image: var(--cr-v2-hero-image);
	background-position: center;
	background-size: cover;
	transform: scale(1.02);
}

/* ==========================================================
   Hero background video
========================================================== */

.cr-v2-hero__video-wrap {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
}

.cr-v2-hero__video {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: center;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.cr-v2-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(
			90deg,
			rgba(2, 29, 47, 0.9) 0%,
			rgba(4, 45, 66, 0.72) 42%,
			rgba(5, 44, 61, 0.22) 72%,
			rgba(3, 32, 46, 0.12) 100%
		),
		linear-gradient(
			180deg,
			rgba(4, 28, 43, 0.2) 0%,
			rgba(4, 28, 43, 0.05) 58%,
			rgba(4, 28, 43, 0.4) 100%
		);
}

.cr-v2-hero::after {
	position: absolute;
	right: -140px;
	bottom: -220px;
	z-index: -1;
	width: 560px;
	height: 560px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 50%;
	box-shadow:
		0 0 0 80px rgba(255, 255, 255, 0.035),
		0 0 0 160px rgba(255, 255, 255, 0.025);
	content: "";
}

.cr-v2-hero__container {
	display: flex;
	align-items: center;
	min-height: inherit;
	padding-top: 84px;
	padding-bottom: 84px;
}

.cr-v2-hero__content {
	width: min(680px, 100%);
	color: var(--cr-v2-white);
}

.cr-v2-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 24px;
	padding: 9px 15px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.11);
	color: rgba(255, 255, 255, 0.94);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 1.3px;
	text-transform: uppercase;
	backdrop-filter: blur(12px);
}

.cr-v2-hero__eyebrow-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.17);
	color: #ffd79a;
	font-size: 16px;
	line-height: 1;
}

.cr-v2-hero__title {
	max-width: 680px;
	margin: 0;
	color: #ffffff;
	font-size: clamp(46px, 6vw, 82px);
	font-weight: 750;
	line-height: 0.98;
	letter-spacing: -3.3px;
	text-wrap: balance;
}

.cr-v2-hero__title span {
	display: block;
	margin-top: 11px;
	color: #ffd694;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 0.92em;
	font-style: italic;
	font-weight: 500;
	letter-spacing: -2px;
}

.cr-v2-hero__description {
	max-width: 610px;
	margin: 28px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(17px, 1.7vw, 20px);
	font-weight: 400;
	line-height: 1.75;
}

.cr-v2-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-top: 38px;
}

.cr-v2-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 56px;
	padding: 0 25px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition:
		transform 180ms ease,
		background-color 180ms ease,
		border-color 180ms ease,
		box-shadow 180ms ease;
}

.cr-v2-button:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.cr-v2-button--primary {
	background: var(--cr-v2-orange);
	color: #172033;
	box-shadow: 0 15px 35px rgba(245, 158, 11, 0.28);
}

.cr-v2-button--primary:hover {
	background: #ffb020;
	color: #172033;
	box-shadow: 0 18px 40px rgba(245, 158, 11, 0.38);
}

.cr-v2-button--glass {
	border-color: rgba(255, 255, 255, 0.34);
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	backdrop-filter: blur(12px);
}

.cr-v2-button--glass:hover {
	border-color: rgba(255, 255, 255, 0.62);
	background: rgba(255, 255, 255, 0.18);
	color: #ffffff;
}

.cr-v2-button__icon {
	font-size: 19px;
	font-weight: 400;
	transition: transform 180ms ease;
}

.cr-v2-button:hover .cr-v2-button__icon {
	transform: translateX(3px);
}

.cr-v2-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 26px;
	margin: 34px 0 0;
	padding: 0;
	color: rgba(255, 255, 255, 0.77);
	font-size: 13px;
	font-weight: 600;
	list-style: none;
}

.cr-v2-hero__trust li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.cr-v2-hero__trust span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #9ef0d1;
	font-size: 11px;
}


/* ==========================================================
   Accessibility
========================================================== */

.cr-v2-button:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.9);
	outline-offset: 4px;
}


/* ==========================================================
   Responsive
========================================================== */

@media (max-width: 960px) {
	.cr-v2-hero {
		min-height: 700px;
	}

	.cr-v2-hero__overlay {
		background:
			linear-gradient(
				90deg,
				rgba(2, 29, 47, 0.9) 0%,
				rgba(4, 45, 66, 0.75) 60%,
				rgba(5, 44, 61, 0.35) 100%
			);
	}

	.cr-v2-hero__content {
		width: min(630px, 100%);
	}
}

@media (max-width: 680px) {
	.cr-v2-container {
		width: min(calc(100% - 32px), var(--cr-v2-container));
	}

	.cr-v2-hero {
		min-height: 690px;
	}

	.cr-v2-hero__container {
		padding-top: 68px;
		padding-bottom: 68px;
	}

	.cr-v2-hero__title {
		font-size: clamp(43px, 13vw, 62px);
		line-height: 1.01;
		letter-spacing: -2.1px;
	}

	.cr-v2-hero__title span {
		letter-spacing: -1.5px;
	}

	.cr-v2-hero__description {
		margin-top: 22px;
		font-size: 16px;
		line-height: 1.65;
	}

	.cr-v2-hero__actions {
		align-items: stretch;
		margin-top: 30px;
	}

	.cr-v2-button {
		width: 100%;
	}

	.cr-v2-hero__trust {
		display: grid;
		gap: 11px;
		margin-top: 28px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cr-v2-button,
	.cr-v2-button__icon {
		transition: none;
	}

	.cr-v2-hero__video-wrap {
		display: none;
	}
}

/* ==========================================================
   Resort search section
========================================================== */

.cr-v2-search-section {
	position: relative;
	z-index: 5;
	margin-top: -74px;
	padding: 0 0 86px;
}

.cr-v2-search-panel {
	position: relative;
	overflow: hidden;
	padding: 28px;
	border: 1px solid rgba(8, 47, 73, 0.08);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.97);
	box-shadow:
		0 30px 80px rgba(8, 47, 73, 0.16),
		0 8px 24px rgba(8, 47, 73, 0.08);
	backdrop-filter: blur(20px);
}

.cr-v2-search-panel::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 4px;
	background:
		linear-gradient(
			90deg,
			var(--cr-v2-teal),
			var(--cr-v2-aqua),
			var(--cr-v2-orange)
		);
	content: "";
}

.cr-v2-search-panel__heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 23px;
}

.cr-v2-search-panel__eyebrow {
	margin: 0 0 5px;
	color: var(--cr-v2-teal);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.cr-v2-search-panel__title {
	margin: 0;
	color: var(--cr-v2-text);
	font-size: clamp(23px, 2.5vw, 30px);
	font-weight: 750;
	line-height: 1.2;
	letter-spacing: -0.7px;
}

.cr-v2-search-panel__note {
	max-width: 330px;
	margin: 0;
	color: var(--cr-v2-muted);
	font-size: 14px;
	line-height: 1.55;
	text-align: right;
}


/* ==========================================================
   Shortcode search form
========================================================== */

.cr-v2-search-panel__form {
	width: 100%;
}

.cr-v2-search-panel__form form {
	display: grid !important;
	grid-template-columns:
		minmax(170px, 1.35fr)
		minmax(150px, 1fr)
		minmax(150px, 1fr)
		minmax(100px, 0.7fr)
		minmax(100px, 0.7fr)
		minmax(165px, 0.9fr);
	align-items: stretch;
	gap: 12px;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.cr-v2-search-panel__form form > * {
	min-width: 0;
	margin: 0 !important;
}

.cr-v2-search-panel__form form > div {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	min-height: 70px;
	padding: 10px 15px;
	border: 1px solid #e3e8ee;
	border-radius: 14px;
	background: #f8fafc;
	transition:
		border-color 180ms ease,
		background-color 180ms ease,
		box-shadow 180ms ease;
}

.cr-v2-search-panel__form form > div:focus-within {
	border-color: rgba(8, 127, 140, 0.65);
	background: #ffffff;
	box-shadow: 0 0 0 4px rgba(8, 127, 140, 0.09);
}

.cr-v2-search-panel__form label {
	display: block !important;
	margin: 0 0 6px !important;
	padding: 0 !important;
	color: #758194 !important;
	font-size: 10px !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
	letter-spacing: 0.8px !important;
	text-align: left !important;
	text-transform: uppercase !important;
}

.cr-v2-search-panel__form input:not([type="submit"]),
.cr-v2-search-panel__form select {
	display: block !important;
	width: 100% !important;
	min-width: 0 !important;
	height: 28px !important;
	min-height: 28px !important;
	margin: 0 !important;
	padding: 0 24px 0 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	outline: 0 !important;
	background-color: transparent !important;
	color: var(--cr-v2-text) !important;
	font-family: inherit !important;
	font-size: 14px !important;
	font-weight: 650 !important;
	line-height: 1.3 !important;
	box-shadow: none !important;
}

.cr-v2-search-panel__form input::placeholder {
	color: #8b95a4 !important;
	opacity: 1;
}

.cr-v2-search-panel__form button,
.cr-v2-search-panel__form input[type="submit"] {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 70px !important;
	margin: 0 !important;
	padding: 0 22px !important;
	border: 0 !important;
	border-radius: 14px !important;
	background: var(--cr-v2-orange) !important;
	color: #172033 !important;
	font-family: inherit !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	white-space: nowrap !important;
	cursor: pointer !important;
	box-shadow: 0 12px 26px rgba(245, 158, 11, 0.24) !important;
	transition:
		transform 180ms ease,
		background-color 180ms ease,
		box-shadow 180ms ease !important;
}

.cr-v2-search-panel__form button:hover,
.cr-v2-search-panel__form input[type="submit"]:hover {
	transform: translateY(-2px);
	background: #ffad22 !important;
	box-shadow: 0 16px 30px rgba(245, 158, 11, 0.32) !important;
}


/* Remove unwanted shortcode spacing */

.cr-v2-search-panel__form p,
.cr-v2-search-panel__form fieldset {
	margin: 0;
}

.cr-v2-search-panel__form br {
	display: none;
}


/* ==========================================================
   Search responsive
========================================================== */

@media (max-width: 1160px) {
	.cr-v2-search-panel__form form {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.cr-v2-search-panel__form form > div:last-child {
		grid-column: span 1;
	}
}

@media (max-width: 820px) {
	.cr-v2-search-section {
		margin-top: -45px;
		padding-bottom: 70px;
	}

	.cr-v2-search-panel {
		padding: 24px;
		border-radius: 20px;
	}

	.cr-v2-search-panel__heading {
		display: block;
	}

	.cr-v2-search-panel__note {
		max-width: none;
		margin-top: 8px;
		text-align: left;
	}

	.cr-v2-search-panel__form form {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.cr-v2-search-section {
		margin-top: -28px;
		padding-bottom: 55px;
	}

	.cr-v2-search-panel {
		padding: 20px 16px;
	}

	.cr-v2-search-panel__heading {
		margin-bottom: 18px;
	}

	.cr-v2-search-panel__form form {
		display: grid !important;
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.cr-v2-search-panel__form form > div {
		min-height: 66px;
	}

	.cr-v2-search-panel__form button,
	.cr-v2-search-panel__form input[type="submit"] {
		min-height: 58px !important;
	}
}

/* ==========================================================
   Discover Resorts
========================================================== */

.cr-v2-discover {
	position: relative;
	padding: 18px 0 100px;
	background: #ffffff;
}

.cr-v2-discover__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 48px;
	margin-bottom: 34px;
}

.cr-v2-discover__heading {
	max-width: 660px;
}

.cr-v2-section-eyebrow {
	margin: 0 0 10px;
	color: var(--cr-v2-teal);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 1.6px;
	text-transform: uppercase;
}

.cr-v2-section-title {
	margin: 0;
	color: var(--cr-v2-text);
	font-size: clamp(30px, 3.5vw, 46px);
	font-weight: 750;
	line-height: 1.12;
	letter-spacing: -1.5px;
}

.cr-v2-section-description {
	max-width: 570px;
	margin: 13px 0 0;
	color: var(--cr-v2-muted);
	font-size: 16px;
	line-height: 1.7;
}


/* ==========================================================
   Discover grid
========================================================== */

.cr-v2-discover__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	width: 100%;
	transition:
		opacity 180ms ease,
		transform 180ms ease;
}

/*
 * Existing reusable property cards must fill their grid cell.
 */

.cr-v2-discover__grid > * {
	min-width: 0;
	width: 100%;
	margin: 0;
}

.cr-v2-discover__grid .crms-property-card {
	height: 100%;
}


/* ==========================================================
   AJAX states - prepared now for next phase
========================================================== */

.cr-v2-discover.is-loading .cr-v2-discover__grid {
	opacity: 0.45;
	pointer-events: none;
}

.cr-v2-discover.is-updating .cr-v2-discover__grid {
	opacity: 0;
	transform: translateY(6px);
}

.cr-v2-discover__status:empty {
	display: none;
}

.cr-v2-discover__status {
	margin-bottom: 18px;
	padding: 12px 16px;
	border-radius: 10px;
	background: #f0f9f7;
	color: #087466;
	font-size: 13px;
	font-weight: 650;
}


/* ==========================================================
   Empty state
========================================================== */

.cr-v2-discover__empty {
	grid-column: 1 / -1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 300px;
	padding: 50px 24px;
	border: 1px dashed #d7dfe7;
	border-radius: 20px;
	background: #fafcfd;
	text-align: center;
}

.cr-v2-discover__empty-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: rgba(8, 127, 140, 0.1);
	color: var(--cr-v2-teal);
	font-size: 27px;
}

.cr-v2-discover__empty h3 {
	margin: 0;
	color: var(--cr-v2-text);
	font-size: 21px;
	font-weight: 750;
}

.cr-v2-discover__empty p {
	margin: 8px 0 0;
	color: var(--cr-v2-muted);
	font-size: 14px;
	line-height: 1.6;
}


/* ==========================================================
   Discover responsive
========================================================== */

@media (max-width: 1120px) {

	.cr-v2-discover__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.cr-v2-discover__header {
		align-items: flex-start;
	}

	.cr-v2-discover__actions {
		flex-wrap: wrap;
	}
}

@media (max-width: 860px) {

	.cr-v2-discover {
		padding-bottom: 78px;
	}

	.cr-v2-discover__header {
		display: block;
		margin-bottom: 28px;
	}

	.cr-v2-discover__actions {
		justify-content: flex-start;
		margin-top: 22px;
	}

	.cr-v2-discover__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}
}

@media (max-width: 580px) {

	.cr-v2-discover {
		padding-top: 8px;
		padding-bottom: 60px;
	}

	.cr-v2-section-title {
		font-size: 31px;
		letter-spacing: -1px;
	}

	.cr-v2-section-description {
		font-size: 15px;
	}

	.cr-v2-discover__actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		width: 100%;
	}

	.cr-v2-discover__count {
		grid-column: 1 / -1;
	}

	.cr-v2-discover__sort,
	.cr-v2-discover__view-all {
		width: 100%;
		min-width: 0;
	}

	.cr-v2-discover__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

/* ==========================================================
   CHIRALA RESORTS V2
   DISCOVER RESORTS — COMPACT HOMEPAGE CARDS

   IMPORTANT:
   Homepage only. Does not alter global search-result cards.
========================================================== */


/* ----------------------------------------------------------
   CARD
---------------------------------------------------------- */

.cr-v2-discover .crms-property-card {
    display: flex;
    flex-direction: column;

    width: 100%;
    min-width: 0;
    min-height: 0;
    height: auto;

    margin: 0;

    overflow: hidden;

    background: #ffffff;
    border: 1px solid #e4eaee;
    border-radius: 16px;

    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.cr-v2-discover .crms-property-card:hover {
    transform: translateY(-4px);

    border-color: rgba(15, 118, 110, 0.18);

    box-shadow: 0 15px 34px rgba(15, 23, 42, 0.11);
}


/* ----------------------------------------------------------
   IMAGE AREA
---------------------------------------------------------- */

.cr-v2-discover .crms-card-media {
    position: relative;

    width: 100%;
    height: 175px;
    min-height: 175px;

    padding: 10px 10px 0;
}


/* Swiper */

.cr-v2-discover .crms-property-slider,
.cr-v2-discover .crms-property-slider .swiper-wrapper,
.cr-v2-discover .crms-property-slider .swiper-slide {
    width: 100%;
    height: 165px;
    min-height: 165px;
}

.cr-v2-discover .crms-property-slider {
    overflow: hidden;
    border-radius: 12px;
}


/* Images */

.cr-v2-discover .crms-property-slider img {
    display: block;

    width: 100%;
    height: 165px;
    min-height: 165px;

    object-fit: cover;
    object-position: center;
}


/* ----------------------------------------------------------
   BADGE
---------------------------------------------------------- */

.cr-v2-discover .crms-property-rating-badge {
    top: 20px;
    left: 20px;

    gap: 5px;

    max-width: calc(100% - 40px);

    padding: 6px 10px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 700;
}

.cr-v2-discover .crms-property-rating-badge span:first-child {
    font-size: 12px;
}


/* ----------------------------------------------------------
   SLIDER CONTROLS
---------------------------------------------------------- */

.cr-v2-discover .crms-property-slider .swiper-button-next,
.cr-v2-discover .crms-property-slider .swiper-button-prev {
    width: 30px;
    height: 30px;

    margin-top: -15px;

    opacity: 0;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.cr-v2-discover .crms-property-card:hover
.crms-property-slider .swiper-button-next,
.cr-v2-discover .crms-property-card:hover
.crms-property-slider .swiper-button-prev {
    opacity: 1;
}

.cr-v2-discover .crms-property-slider .swiper-button-next::after,
.cr-v2-discover .crms-property-slider .swiper-button-prev::after {
    font-size: 11px;
}

.cr-v2-discover .crms-property-slider .swiper-button-next {
    right: 8px;
}

.cr-v2-discover .crms-property-slider .swiper-button-prev {
    left: 8px;
}


/* Pagination */

.cr-v2-discover .crms-property-slider .swiper-pagination {
    bottom: 7px;
}

.cr-v2-discover .crms-property-slider .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
}

.cr-v2-discover
.crms-property-slider
.swiper-pagination-bullet-active {
    width: 15px;
}


/* ----------------------------------------------------------
   CONTENT
---------------------------------------------------------- */

.cr-v2-discover .crms-card-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: space-between;

    min-width: 0;

    padding: 13px 14px 14px;
}


/* ----------------------------------------------------------
   TITLE
---------------------------------------------------------- */

.cr-v2-discover .crms-card-title {
    margin: 0 0 5px;

    color: #12213a;

    font-size: 16px;
    font-weight: 750;
    line-height: 1.3;
    letter-spacing: -0.015em;
}

.cr-v2-discover .crms-card-title a {
    display: -webkit-box;

    overflow: hidden;

    color: inherit;
    text-decoration: none;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.cr-v2-discover .crms-card-title a:hover {
    color: #0f766e;
}


/* ----------------------------------------------------------
   LOCATION
---------------------------------------------------------- */

.cr-v2-discover .crms-card-location {
    display: flex;
    align-items: center;

    gap: 4px;

    margin: 0 0 8px;

    color: #667085;

    font-size: 11px;
    line-height: 1.35;
}

.cr-v2-discover .crms-card-icon {
    width: auto;
    height: auto;

    font-size: 11px;
}


/* ----------------------------------------------------------
   AMENITIES
---------------------------------------------------------- */

.cr-v2-discover .crms-card-amenities {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 5px 10px;

    margin: 0 0 9px;
}

.cr-v2-discover .crms-amenity-item {
    gap: 5px;

    color: #667085;

    font-size: 10px;
    line-height: 1.3;
}

.cr-v2-discover .crms-amenity-dot {
    width: 5px;
    height: 5px;

    box-shadow: none;
}


/* Only show first 3 amenities on homepage */

.cr-v2-discover
.crms-amenity-item:nth-child(n + 4) {
    display: none;
}


/* ----------------------------------------------------------
   GUESTS / ROOMS
---------------------------------------------------------- */

.cr-v2-discover .crms-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 6px 14px;

    padding: 0 0 10px;

    border-bottom: 1px solid #edf0f2;
}

.cr-v2-discover .crms-meta-item {
    gap: 4px;

    color: #5d6978;

    font-size: 10px;
    font-weight: 500;
}

.cr-v2-discover .crms-meta-icon {
    min-width: 0;

    font-size: 11px;
}


/* ----------------------------------------------------------
   FOOTER / PRICE
---------------------------------------------------------- */

.cr-v2-discover .crms-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 8px;

    margin-top: 10px;
}


/* Price */

.cr-v2-discover .crms-card-price {
    min-width: 0;
}

.cr-v2-discover .crms-price-line {
    gap: 3px;
}

.cr-v2-discover .crms-card-price strong {
    color: #0f766e;

    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
}

.cr-v2-discover .crms-card-price span {
    color: #697586;

    font-size: 10px;
}

.cr-v2-discover .crms-card-price small {
    margin-top: 3px;

    color: #7a8493;

    font-size: 9px;
    line-height: 1.3;
}

.cr-v2-discover .crms-contact-price {
    margin-top: 3px;

    font-size: 15px !important;
}


/* ----------------------------------------------------------
   ACTIONS
---------------------------------------------------------- */

.cr-v2-discover .crms-card-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 6px;
}


/*
 * Contact button isn't necessary on the homepage.
 * Keep View Details as the primary card CTA.
 */

.cr-v2-discover
.crms-card-button-outline {
    display: none;
}


.cr-v2-discover .crms-card-button {
    width: auto;
    min-height: 34px;

    padding: 8px 11px;

    border-radius: 8px;

    font-size: 10px;
    font-weight: 700;
}


.cr-v2-discover .crms-card-button-primary {
    box-shadow: none;
}

.cr-v2-discover .crms-card-button-primary:hover {
    box-shadow: 0 7px 15px rgba(15, 118, 110, 0.20);
}


/* ----------------------------------------------------------
   GRID
---------------------------------------------------------- */

.cr-v2-discover__grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;

    width: 100%;

    align-items: stretch;
}


/* ==========================================================
   LAPTOP
========================================================== */

@media (max-width: 1120px) {

    .cr-v2-discover__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 860px) {

    .cr-v2-discover__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cr-v2-discover .crms-card-media {
        height: 185px;
        min-height: 185px;
    }

    .cr-v2-discover .crms-property-slider,
    .cr-v2-discover .crms-property-slider .swiper-wrapper,
    .cr-v2-discover .crms-property-slider .swiper-slide,
    .cr-v2-discover .crms-property-slider img {
        height: 175px;
        min-height: 175px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 580px) {

    .cr-v2-discover__grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .cr-v2-discover .crms-property-card {
        display: flex;
        min-height: 0;
    }

    .cr-v2-discover .crms-card-media {
        height: 215px;
        min-height: 215px;

        padding: 10px 10px 0;
    }

    .cr-v2-discover .crms-property-slider,
    .cr-v2-discover .crms-property-slider .swiper-wrapper,
    .cr-v2-discover .crms-property-slider .swiper-slide,
    .cr-v2-discover .crms-property-slider img {
        height: 205px;
        min-height: 205px;
    }

    .cr-v2-discover .crms-card-content {
        padding: 14px 15px 15px;
    }

    .cr-v2-discover .crms-card-title {
        font-size: 17px;
    }

    .cr-v2-discover .crms-card-footer {
        flex-direction: row;
        align-items: flex-end;
    }

    .cr-v2-discover .crms-card-actions {
        width: auto;
    }

    .cr-v2-discover .crms-card-button {
        width: auto;
    }

}

/* ==========================================================
   LIVE SEARCH FEEDBACK
========================================================== */

.cr-v2-discover__status.is-error {
    background: #fff2f2;
    color: #b42318;
}

.cr-v2-discover__status.is-success {
    background: #eefbf7;
    color: #087466;
}


/* Search button loading */

.cr-v2-search-panel button:disabled,
.crms-search-bar button:disabled {
    cursor: wait;
    opacity: 0.72;
}


/*
 * Keep current cards visible during the AJAX request.
 * This avoids the white flash/flicker.
 */

.cr-v2-discover.is-loading
.cr-v2-discover__grid {
    opacity: 0.55;
    pointer-events: none;
}


/*
 * Only fade immediately before replacing results.
 */

.cr-v2-discover.is-updating
.cr-v2-discover__grid {
    opacity: 0;
    transform: translateY(4px);
}


.cr-v2-discover__grid {
    transition:
        opacity 150ms ease,
        transform 150ms ease;
}

/* ==========================================================
   HOMEPAGE V2 — WHY BOOK WITH US
========================================================== */

.cr-v2-why {
    padding: 88px 0;
    background: #f7fafb;
}

.cr-v2-why__header {
    margin-bottom: 34px;
}

.cr-v2-why__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}


/* ----------------------------------------------------------
   CARD
---------------------------------------------------------- */

.cr-v2-why-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    min-width: 0;

    padding: 24px 22px;

    background: #ffffff;
    border: 1px solid #e5ebef;
    border-radius: 16px;

    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.cr-v2-why-card:hover {
    transform: translateY(-4px);

    border-color: rgba(15, 118, 110, 0.18);

    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.09);
}


/* ----------------------------------------------------------
   ICON
---------------------------------------------------------- */

.cr-v2-why-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    border-radius: 13px;

    color: #0f766e;
    background: rgba(15, 118, 110, 0.09);

    font-size: 20px;
    font-weight: 800;
}


/* ----------------------------------------------------------
   TEXT
---------------------------------------------------------- */

.cr-v2-why-card h3 {
    margin: 1px 0 7px;

    color: #12213a;

    font-size: 17px;
    font-weight: 750;
    line-height: 1.3;
}

.cr-v2-why-card p {
    margin: 0;

    color: #667085;

    font-size: 13px;
    line-height: 1.65;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 960px) {

    .cr-v2-why__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 580px) {

    .cr-v2-why {
        padding: 64px 0;
    }

    .cr-v2-why__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cr-v2-why-card {
        padding: 20px 18px;
    }

}

/* ==========================================================
   HOMEPAGE V2 — EXPLORE BY CATEGORY
========================================================== */

.cr-v2-categories {
    padding: 88px 0;
    background: #ffffff;
}

.cr-v2-categories__header {
    margin-bottom: 34px;
}


/* ----------------------------------------------------------
   GRID
---------------------------------------------------------- */

.cr-v2-categories__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}


/* ----------------------------------------------------------
   CARD
---------------------------------------------------------- */

.cr-v2-category-card {
    min-width: 0;
}

.cr-v2-category-card__link {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 235px;
    height: 100%;

    padding: 24px;

    overflow: hidden;

    color: inherit;
    text-decoration: none !important;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f8fbfb 100%
        );

    border: 1px solid #e4eaee;
    border-radius: 18px;

    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.cr-v2-category-card__link::before {
    content: "";

    position: absolute;
    right: -45px;
    top: -45px;

    width: 130px;
    height: 130px;

    border-radius: 50%;

    background: rgba(15, 118, 110, 0.06);

    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}


.cr-v2-category-card__link:hover {
    transform: translateY(-5px);

    border-color: rgba(15, 118, 110, 0.22);

    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09);
}

.cr-v2-category-card__link:hover::before {
    transform: scale(1.18);

    background: rgba(15, 118, 110, 0.10);
}


/* ----------------------------------------------------------
   ICON
---------------------------------------------------------- */

.cr-v2-category-card__icon {
    position: relative;
    z-index: 1;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    margin-bottom: 22px;

    border-radius: 14px;

    color: #0f766e;
    background: rgba(15, 118, 110, 0.09);

    font-size: 23px;
    font-weight: 800;
}


/* ----------------------------------------------------------
   CONTENT
---------------------------------------------------------- */

.cr-v2-category-card__content {
    position: relative;
    z-index: 1;

    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}


.cr-v2-category-card h3 {
    margin: 0 0 8px;

    color: #12213a;

    font-size: 18px;
    font-weight: 750;
    line-height: 1.3;
}


.cr-v2-category-card p {
    margin: 0;

    color: #667085;

    font-size: 13px;
    line-height: 1.65;
}


/* ----------------------------------------------------------
   META
---------------------------------------------------------- */

.cr-v2-category-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-top: auto;
    padding-top: 20px;

    color: #0f766e;

    font-size: 12px;
    font-weight: 700;
}


.cr-v2-category-card__arrow {
    display: inline-flex;

    font-size: 18px;

    transition: transform 0.2s ease;
}


.cr-v2-category-card__link:hover
.cr-v2-category-card__arrow {
    transform: translateX(4px);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 960px) {

    .cr-v2-categories__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 580px) {

    .cr-v2-categories {
        padding: 64px 0;
    }

    .cr-v2-categories__grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .cr-v2-category-card__link {
        min-height: 205px;

        padding: 21px;
    }

}

/* ==========================================================
   HOMEPAGE V2 — BEST VALUE STAYS
========================================================== */

.cr-v2-offers {
    padding: 88px 0;
    background:
        linear-gradient(
            180deg,
            #f7fafb 0%,
            #ffffff 100%
        );
}


/* ----------------------------------------------------------
   HEADER
---------------------------------------------------------- */

.cr-v2-offers__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 34px;
}


.cr-v2-offers__header > div {
    max-width: 650px;
}


.cr-v2-offers__all {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 44px;

    padding: 0 17px;

    color: #12213a;
    background: #ffffff;

    border: 1px solid #dfe5ea;
    border-radius: 11px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none !important;
    white-space: nowrap;

    transition:
        transform 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.cr-v2-offers__all:hover {
    transform: translateY(-2px);

    color: #0f766e;

    border-color: rgba(15, 118, 110, 0.3);

    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.07);
}


.cr-v2-offers__all span {
    font-size: 17px;

    transition: transform 0.2s ease;
}


.cr-v2-offers__all:hover span {
    transform: translateX(3px);
}


/* ----------------------------------------------------------
   GRID
---------------------------------------------------------- */

.cr-v2-offers__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 20px;
}


/* ----------------------------------------------------------
   CARD
---------------------------------------------------------- */

.cr-v2-offer-card {
    min-width: 0;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e3e9ed;
    border-radius: 18px;

    box-shadow: 0 9px 28px rgba(15, 23, 42, 0.06);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}


.cr-v2-offer-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.11);
}


/* ----------------------------------------------------------
   IMAGE
---------------------------------------------------------- */

.cr-v2-offer-card__media {
    position: relative;

    display: block;

    width: 100%;
    height: 220px;

    overflow: hidden;

    background: #e8eeee;

    text-decoration: none;
}


/*
 * Keep featured card image height consistent
 * with the other cards.
 */
.cr-v2-offer-card.is-featured
.cr-v2-offer-card__media {
    height: 220px;
}


.cr-v2-offer-card__media img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.45s ease;
}


.cr-v2-offer-card:hover
.cr-v2-offer-card__media img {
    transform: scale(1.04);
}


/* ----------------------------------------------------------
   BADGE
---------------------------------------------------------- */

.cr-v2-offer-card__badge {
    position: absolute;

    top: 14px;
    left: 14px;

    display: inline-flex;
    align-items: center;

    min-height: 28px;

    padding: 0 10px;

    color: #ffffff;
    background: rgba(15, 118, 110, 0.94);

    border-radius: 999px;

    box-shadow: 0 6px 16px rgba(15, 118, 110, 0.18);

    font-size: 10px;
    font-weight: 750;
}


/* ----------------------------------------------------------
   CONTENT
---------------------------------------------------------- */

.cr-v2-offer-card__content {
    padding: 17px 18px 18px;
}


.cr-v2-offer-card__location {
    display: flex;
    align-items: center;

    gap: 5px;

    margin-bottom: 7px;

    color: #6b7584;

    font-size: 11px;
    line-height: 1.4;
}


.cr-v2-offer-card h3 {
    margin: 0 0 10px;

    color: #12213a;

    font-size: 18px;
    font-weight: 750;
    line-height: 1.3;
}


.cr-v2-offer-card h3 a {
    color: inherit;
    text-decoration: none;
}


.cr-v2-offer-card h3 a:hover {
    color: #0f766e;
}


/* ----------------------------------------------------------
   META
---------------------------------------------------------- */

.cr-v2-offer-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 7px 15px;

    margin-bottom: 15px;

    color: #667085;

    font-size: 10px;
}


/* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */

.cr-v2-offer-card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 12px;

    padding-top: 13px;

    border-top: 1px solid #edf0f2;
}


/* Price */

.cr-v2-offer-card__price small {
    display: block;

    margin-bottom: 3px;

    color: #778191;

    font-size: 9px;
}


.cr-v2-offer-card__price > div {
    display: flex;
    align-items: baseline;

    gap: 4px;
}


.cr-v2-offer-card__price strong {
    color: #0f766e;

    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}


.cr-v2-offer-card__price span {
    color: #6b7584;

    font-size: 10px;
}


/* CTA */

.cr-v2-offer-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 36px;

    padding: 0 12px;

    color: #ffffff;
    background: #0f766e;

    border-radius: 9px;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}


.cr-v2-offer-card__button:hover {
    transform: translateY(-1px);

    color: #ffffff;
    background: #0b625c;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 960px) {

    .cr-v2-offers__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .cr-v2-offer-card.is-featured {
        grid-column: 1 / -1;
    }


    .cr-v2-offer-card.is-featured
.cr-v2-offer-card__media {
    height: 220px;
}

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 580px) {

    .cr-v2-offers {
        padding: 64px 0;
    }


    .cr-v2-offers__header {
        display: block;

        margin-bottom: 26px;
    }


    .cr-v2-offers__all {
        margin-top: 20px;
    }


    .cr-v2-offers__grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .cr-v2-offer-card.is-featured {
        grid-column: auto;
    }


    .cr-v2-offer-card__media,
    .cr-v2-offer-card.is-featured
    .cr-v2-offer-card__media {
        height: 210px;
    }

}

/* ==========================================================
   HOMEPAGE V2 — GUEST REVIEWS
========================================================== */

.cr-v2-reviews {
    padding: 88px 0;
    background: #ffffff;
}

.cr-v2-reviews__header {
    margin-bottom: 34px;
}


/* ----------------------------------------------------------
   GRID
---------------------------------------------------------- */

.cr-v2-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}


/* ----------------------------------------------------------
   CARD
---------------------------------------------------------- */

.cr-v2-review-card {
    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 260px;

    padding: 24px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f9fbfb 100%
        );

    border: 1px solid #e4eaee;
    border-radius: 18px;

    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.cr-v2-review-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 15px 34px rgba(15, 23, 42, 0.09);
}


/* ----------------------------------------------------------
   STARS
---------------------------------------------------------- */

.cr-v2-review-card__stars {
    margin-bottom: 17px;

    color: #f5a623;

    font-size: 15px;
    letter-spacing: 2px;
}


/* ----------------------------------------------------------
   TEXT
---------------------------------------------------------- */

.cr-v2-review-card h3 {
    margin: 0 0 10px;

    color: #12213a;

    font-size: 17px;
    font-weight: 750;
    line-height: 1.35;
}


.cr-v2-review-card blockquote {
    margin: 0;
    padding: 0;

    border: 0;
}


.cr-v2-review-card blockquote p {
    margin: 0;

    color: #667085;

    font-size: 13px;
    line-height: 1.75;
}


/* ----------------------------------------------------------
   GUEST
---------------------------------------------------------- */

.cr-v2-review-card__guest {
    display: flex;
    align-items: center;

    gap: 11px;

    margin-top: auto;
    padding-top: 24px;
}


.cr-v2-review-card__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    color: #ffffff;
    background: #0f766e;

    border-radius: 50%;

    font-size: 13px;
    font-weight: 800;
}


.cr-v2-review-card__guest strong {
    display: block;

    color: #12213a;

    font-size: 12px;
    font-weight: 750;
}


.cr-v2-review-card__guest span {
    display: block;

    margin-top: 2px;

    color: #7a8493;

    font-size: 10px;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 860px) {

    .cr-v2-reviews__grid {
        grid-template-columns: 1fr;
    }

    .cr-v2-review-card {
        min-height: 0;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 580px) {

    .cr-v2-reviews {
        padding: 64px 0;
    }

}

/* ==========================================================
   HOMEPAGE V2 — PARTNER CTA
========================================================== */

.cr-v2-partner {
    padding: 88px 0;
    background: #f7fafb;
}


/* ----------------------------------------------------------
   PANEL
---------------------------------------------------------- */

.cr-v2-partner__panel {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(320px, 0.85fr);

    gap: 60px;

    align-items: center;

    min-height: 390px;

    padding: 56px 60px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #062f42 0%,
            #0a5261 55%,
            #0f766e 100%
        );

    border-radius: 26px;

    box-shadow:
        0 24px 60px
        rgba(6, 47, 66, 0.18);
}


/* Decorative glow */

.cr-v2-partner__panel::before {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -120px;
    top: -150px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.07);
}


/* ----------------------------------------------------------
   CONTENT
---------------------------------------------------------- */

.cr-v2-partner__content {
    position: relative;
    z-index: 2;

    max-width: 620px;
}


.cr-v2-partner
.cr-v2-section-eyebrow {
    color: #80ded4;
}


.cr-v2-partner h2 {
    max-width: 600px;

    margin: 0;

    color: #ffffff;

    font-size: clamp(
        34px,
        4vw,
        52px
    );

    font-weight: 760;
    line-height: 1.08;

    letter-spacing: -1.5px;
}


.cr-v2-partner__content > p:not(.cr-v2-section-eyebrow) {
    max-width: 560px;

    margin: 18px 0 0;

    color: rgba(255, 255, 255, 0.76);

    font-size: 15px;
    line-height: 1.75;
}


/* ----------------------------------------------------------
   BENEFITS
---------------------------------------------------------- */

.cr-v2-partner__benefits {
    display: flex;
    flex-wrap: wrap;

    gap: 10px 22px;

    margin-top: 25px;
}


.cr-v2-partner__benefits span {
    color: rgba(255, 255, 255, 0.88);

    font-size: 12px;
    font-weight: 600;
}


/* ----------------------------------------------------------
   CTA
---------------------------------------------------------- */

.cr-v2-partner__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 48px;

    margin-top: 30px;
    padding: 0 20px;

    color: #10223d;
    background: #ffb000;

    border-radius: 11px;

    font-size: 12px;
    font-weight: 800;

    text-decoration: none !important;

    box-shadow:
        0 10px 24px
        rgba(255, 176, 0, 0.22);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.cr-v2-partner__button:hover {
    transform: translateY(-2px);

    color: #10223d;

    box-shadow:
        0 14px 30px
        rgba(255, 176, 0, 0.28);
}


.cr-v2-partner__button span {
    font-size: 17px;

    transition: transform 0.2s ease;
}


.cr-v2-partner__button:hover span {
    transform: translateX(4px);
}


/* ==========================================================
   VISUAL
========================================================== */

.cr-v2-partner__visual {
    position: relative;
    z-index: 2;

    min-height: 260px;
}


/* Main floating card */

.cr-v2-partner__visual-card {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 235px;

    padding: 28px 25px;

    text-align: center;

    transform:
        translate(-50%, -50%)
        rotate(-2deg);

    background:
        rgba(255, 255, 255, 0.96);

    border-radius: 20px;

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.18);
}


.cr-v2-partner__visual-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 56px;
    height: 56px;

    margin: 0 auto 14px;

    border-radius: 15px;

    background:
        rgba(15, 118, 110, 0.10);

    font-size: 27px;
}


.cr-v2-partner__visual-card strong {
    display: block;

    color: #12213a;

    font-size: 17px;
    font-weight: 800;
}


.cr-v2-partner__visual-card span {
    display: block;

    margin-top: 5px;

    color: #697586;

    font-size: 11px;
}


/* Floating stats */

.cr-v2-partner__stat {
    position: absolute;

    min-width: 145px;

    padding: 14px 17px;

    background:
        rgba(255, 255, 255, 0.98);

    border-radius: 14px;

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.15);
}


.cr-v2-partner__stat strong {
    display: block;

    color: #0f766e;

    font-size: 18px;
    font-weight: 800;
}


.cr-v2-partner__stat span {
    display: block;

    margin-top: 2px;

    color: #697586;

    font-size: 9px;
}


.cr-v2-partner__stat.is-one {
    left: 0;
    top: 18px;
}


.cr-v2-partner__stat.is-two {
    right: 0;
    bottom: 14px;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 900px) {

    .cr-v2-partner__panel {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 48px 42px;
    }


    .cr-v2-partner__visual {
        min-height: 250px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 580px) {

    .cr-v2-partner {
        padding: 64px 0;
    }


    .cr-v2-partner__panel {
        display: block;

        min-height: 0;

        padding: 36px 24px;

        border-radius: 20px;
    }


    .cr-v2-partner h2 {
        font-size: 32px;
    }


    .cr-v2-partner__benefits {
        display: grid;

        gap: 9px;
    }


    .cr-v2-partner__visual {
        display: none;
    }

}

/* ==========================================================
   Search validation/status message
========================================================== */

.cr-v2-search-panel__status:empty{
	display:none;
}

.cr-v2-search-panel__status:not(:empty){
	display:flex;
	align-items:center;
	width:100%;
	margin-top:14px;
	padding:11px 15px;

	color:#b42318;
	font-size:13px;
	font-weight:600;
	line-height:1.45;

	background:#fff1f0;
	border:1px solid #fecaca;
	border-radius:10px;
}

.cr-v2-search-panel__status.is-success{
	color:#067647;
	background:#ecfdf3;
	border-color:#abefc6;
}