:root {
	--ycr-navy: #075b8f;
	--ycr-cyan: #08b5c8;
	--ycr-ink: #183247;
	--ycr-mist: #f3f8fb;
}

.ycr-booking-card {
	margin: 1.5rem 0;
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid rgba(7, 91, 143, .13);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 16px 45px rgba(24, 50, 71, .10);
}

.ycr-eyebrow {
	margin: 0 0 .45rem;
	color: var(--ycr-cyan);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.ycr-price {
	display: flex;
	flex-wrap: wrap;
	gap: .25rem .5rem;
	align-items: baseline;
	margin-bottom: 1.15rem;
	color: var(--ycr-ink);
}

.ycr-price strong {
	color: var(--ycr-navy);
	font-size: clamp(1.65rem, 4vw, 2.35rem);
}

.ycr-price small {
	flex-basis: 100%;
	color: #617282;
}

.ycr-date-grid,
.ycr-quick-search {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: .8rem;
}

.ycr-date-grid label,
.ycr-quick-search label {
	display: grid;
	gap: .35rem;
	color: var(--ycr-ink);
	font-size: .88rem;
	font-weight: 700;
}

.ycr-date-grid input,
.ycr-quick-search input {
	width: 100%;
	min-height: 48px;
	border: 1px solid #d5e1e8;
	border-radius: 10px;
	background: #fff;
}

.ycr-rental-form .button,
.ycr-quick-search .button {
	width: 100%;
	min-height: 50px;
	margin-top: .85rem;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--ycr-navy), var(--ycr-cyan));
	color: #fff;
	font-weight: 800;
}

.ycr-currency-note {
	margin: .8rem 0 0;
	color: #6d7c88;
	font-size: .78rem;
	line-height: 1.55;
}

.ycr-quick-search {
	grid-template-columns: minmax(180px, .75fr) repeat(2, minmax(170px, 1fr)) auto;
	align-items: end;
	gap: .75rem;
	width: 100%;
	padding: 1rem 1.1rem;
	border: 1px solid rgba(111, 230, 239, .18);
	border-radius: 20px;
	background:
		radial-gradient(circle at 100% 0, rgba(8, 181, 200, .18), transparent 35%),
		linear-gradient(145deg, #082d47, #031a2b);
	box-shadow: 0 24px 65px rgba(2, 31, 51, .24);
	scroll-margin-top: 110px;
}

.ycr-quick-search__intro {
	display: grid;
	align-self: center;
	gap: .2rem;
	padding: 0 .35rem;
}

.ycr-quick-search__intro span {
	color: #6fe6ef;
	font-size: .62rem;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.ycr-quick-search__intro strong {
	color: #fff;
	font-size: 1.03rem;
	line-height: 1.2;
}

.ycr-quick-search .ycr-date-picker {
	gap: .3rem;
}

.ycr-quick-search .ycr-date-picker__label {
	color: rgba(255, 255, 255, .58);
	font-size: .64rem;
	letter-spacing: .035em;
}

.ycr-quick-search .ycr-date-control {
	height: 48px;
	border-color: rgba(111, 230, 239, .18);
	background: rgba(255, 255, 255, .075);
}

.ycr-quick-search .ycr-date-control:hover,
.ycr-quick-search .ycr-date-control:focus-within {
	border-color: rgba(111, 230, 239, .62);
	background: rgba(255, 255, 255, .11);
}

.ycr-quick-search .button {
	display: inline-flex;
	min-width: 220px;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: .6rem;
	margin: 0;
	padding: 0 1.25rem;
	box-shadow: 0 12px 30px rgba(8, 181, 200, .16);
	font-size: .78rem;
	letter-spacing: .01em;
}

.ycr-quick-search .button span {
	font-size: 1rem;
	line-height: 1;
}

.ycr-faq {
	display: grid;
	gap: .75rem;
}

.ycr-faq__item {
	overflow: hidden;
	border: 1px solid rgba(7, 91, 143, .14);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 35px rgba(24, 50, 71, .07);
	transition: border-color .25s ease, box-shadow .25s ease;
}

.ycr-faq__item[open] {
	border-color: rgba(8, 181, 200, .55);
	box-shadow: 0 16px 45px rgba(7, 91, 143, .12);
}

.ycr-faq__item summary {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	min-height: 68px;
	padding: 1rem 1.25rem;
	color: var(--ycr-ink);
	font-size: clamp(1rem, 2vw, 1.1rem);
	font-weight: 750;
	cursor: pointer;
	list-style: none;
}

.ycr-faq__item summary::-webkit-details-marker {
	display: none;
}

.ycr-faq__icon {
	position: relative;
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--ycr-mist);
}

.ycr-faq__icon::before,
.ycr-faq__icon::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 11px;
	height: 2px;
	border-radius: 2px;
	background: var(--ycr-navy);
	content: "";
	transform: translate(-50%, -50%);
	transition: transform .2s ease;
}

.ycr-faq__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.ycr-faq__item[open] .ycr-faq__icon::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.ycr-faq__answer {
	padding: 0 1.25rem 1.25rem;
	color: #5b6e7d;
	line-height: 1.7;
}

.ycr-faq__answer p {
	margin: 0;
}

.ycr-fleet-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
}

.ycr-fleet-grid--cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ycr-fleet-grid--cols-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ycr-vehicle-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .10);
	border-radius: 24px;
	background: linear-gradient(155deg, #07263b, #031a2b 72%);
	box-shadow: 0 24px 70px rgba(0, 15, 29, .28);
	transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.ycr-vehicle-card:hover {
	border-color: rgba(8, 181, 200, .48);
	box-shadow: 0 30px 85px rgba(0, 12, 25, .38);
	transform: translateY(-6px);
}

.ycr-vehicle-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background:
		radial-gradient(circle at 70% 20%, rgba(8, 181, 200, .22), transparent 42%),
		linear-gradient(145deg, #102d44, #061a2b);
}

.ycr-vehicle-card__media::after {
	position: absolute;
	inset: auto 0 0;
	height: 42%;
	background: linear-gradient(to bottom, transparent, rgba(3, 18, 31, .55));
	content: "";
	pointer-events: none;
}

.ycr-vehicle-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .55s cubic-bezier(.2, .7, .2, 1);
}

.ycr-vehicle-card:hover .ycr-vehicle-card__image {
	transform: scale(1.035);
}

.ycr-vehicle-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(7, 91, 143, .45), rgba(8, 181, 200, .12));
}

.ycr-vehicle-card__class {
	position: absolute;
	z-index: 2;
	top: 1rem;
	left: 1rem;
	padding: .45rem .75rem;
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: 999px;
	background: rgba(3, 24, 41, .68);
	backdrop-filter: blur(10px);
	color: #fff;
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .08em;
	line-height: 1;
	text-transform: uppercase;
}

.ycr-vehicle-card__body {
	padding: clamp(1.15rem, 2vw, 1.45rem);
}

.ycr-vehicle-card__eyebrow {
	margin: 0 0 .5rem;
	color: var(--ycr-cyan);
	font-size: .65rem;
	font-weight: 800;
	letter-spacing: .12em;
}

.ycr-vehicle-card__title {
	margin: 0 0 .85rem;
	color: #fff;
	font-size: clamp(1.1rem, 1.8vw, 1.35rem);
	letter-spacing: -.025em;
}

.ycr-vehicle-card__title a {
	color: inherit;
}

.ycr-vehicle-card__description {
	min-height: 3.25em;
	margin: -.25rem 0 1rem;
	color: rgba(255, 255, 255, .68);
	font-size: .82rem;
	line-height: 1.62;
}

.ycr-vehicle-card__specs {
	display: flex;
	flex-wrap: wrap;
	gap: .45rem;
	margin: 0 0 1rem;
	padding: 0;
	list-style: none;
}

.ycr-vehicle-card__specs li,
.ycr-vehicle-card__group-note {
	margin: 0;
	padding: .42rem .62rem;
	border-radius: 8px;
	background: rgba(255, 255, 255, .07);
	color: rgba(255, 255, 255, .72);
	font-size: .72rem;
	line-height: 1.35;
}

.ycr-vehicle-card__prices {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
	gap: 1px;
	overflow: hidden;
	margin: 1rem 0;
	border: 1px solid rgba(255, 255, 255, .10);
	border-radius: 14px;
	background: rgba(255, 255, 255, .10);
}

.ycr-vehicle-card__price {
	display: grid;
	align-content: center;
	min-height: 82px;
	padding: .7rem;
	background: rgba(3, 24, 41, .78);
	color: rgba(255, 255, 255, .62);
}

.ycr-vehicle-card__price span {
	font-size: .66rem;
	font-weight: 700;
}

.ycr-vehicle-card__price strong {
	display: block;
	margin: .18rem 0;
	color: #fff;
	font-size: .92rem;
	line-height: 1.15;
	white-space: nowrap;
}

.ycr-vehicle-card__price--primary strong {
	color: #6fe6ef;
}

.ycr-vehicle-card__price small {
	font-size: .62rem;
	line-height: 1.25;
}

.ycr-vehicle-card__actions {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: .7rem;
	align-items: center;
}

.ycr-vehicle-card__price-panel {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	margin: 1rem 0;
	padding: 1rem 0;
	border-top: 1px solid rgba(255, 255, 255, .12);
}

.ycr-vehicle-card__price-panel > div {
	display: grid;
}

.ycr-vehicle-card__price-panel span {
	color: #6fe6ef;
	font-size: .65rem;
	font-weight: 850;
	letter-spacing: .12em;
}

.ycr-vehicle-card__price-panel strong {
	margin: .15rem 0 0;
	color: #fff;
	font-size: clamp(1.55rem, 3vw, 2.15rem);
	line-height: 1;
}

.ycr-vehicle-card__price-panel small {
	margin-top: .3rem;
	color: rgba(255, 255, 255, .62);
	font-size: .68rem;
}

.ycr-vehicle-card__price-panel em {
	margin-right: calc(clamp(1.15rem, 2vw, 1.45rem) * -1);
	padding: .55rem .8rem;
	background: var(--ycr-cyan);
	color: #fff;
	font-size: 1rem;
	font-style: normal;
	white-space: nowrap;
}

.ycr-inline-quote {
	margin: 0 0 1rem;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 14px;
	background: rgba(255, 255, 255, .035);
}

.ycr-inline-quote summary {
	position: relative;
	padding: .8rem 2.2rem .8rem .9rem;
	color: rgba(255, 255, 255, .78);
	font-size: .75rem;
	font-weight: 750;
	cursor: pointer;
	list-style: none;
}

.ycr-inline-quote summary::-webkit-details-marker {
	display: none;
}

.ycr-inline-quote summary::after {
	position: absolute;
	top: 50%;
	right: .9rem;
	content: "+";
	transform: translateY(-50%);
}

.ycr-inline-quote[open] summary::after {
	content: "–";
}

.ycr-inline-quote form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: .65rem;
	padding: 0 .9rem .9rem;
}

.ycr-inline-quote label,
.ycr-showcase-booking__form label {
	display: grid;
	gap: .3rem;
	color: rgba(255, 255, 255, .65);
	font-size: .68rem;
	font-weight: 700;
}

.ycr-inline-quote input,
.ycr-showcase-booking__form input {
	width: 100%;
	min-height: 42px;
	padding: .5rem;
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 9px;
	background: rgba(255, 255, 255, .09);
	color: #fff;
	color-scheme: dark;
	font-size: .72rem;
}

.ycr-date-picker {
	position: relative;
	display: grid;
	gap: .35rem;
	min-width: 0;
}

.ycr-date-picker__label {
	color: rgba(255, 255, 255, .65);
	font-size: .66rem;
	font-weight: 750;
	letter-spacing: .02em;
}

.ycr-date-control {
	position: relative;
	display: flex;
	height: 46px;
	align-items: center;
	padding: 0 2.75rem 0 .85rem;
	overflow: hidden;
	border: 1px solid rgba(111, 230, 239, .22);
	border-radius: 10px;
	background: rgba(5, 38, 58, .94);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
	color: rgba(255, 255, 255, .68);
	cursor: pointer;
	transition: border-color .2s ease, background .2s ease;
}

.ycr-date-control:hover,
.ycr-date-control:focus-within {
	border-color: rgba(111, 230, 239, .62);
	background: #0a354e;
}

.ycr-date-control.has-value {
	color: #fff;
}

.ycr-date-control__value {
	overflow: hidden;
	font-size: .76rem;
	font-weight: 700;
	line-height: 1;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ycr-date-control__icon {
	position: absolute;
	top: 50%;
	right: .9rem;
	width: 16px;
	height: 15px;
	border: 1.5px solid #6fe6ef;
	border-radius: 3px;
	box-shadow: inset 0 4px 0 rgba(111, 230, 239, .22);
	transform: translateY(-50%);
	pointer-events: none;
}

.ycr-date-control__icon::before,
.ycr-date-control__icon::after {
	position: absolute;
	top: -3px;
	width: 2px;
	height: 5px;
	border-radius: 2px;
	background: #6fe6ef;
	content: "";
}

.ycr-date-control__icon::before {
	left: 3px;
}

.ycr-date-control__icon::after {
	right: 3px;
}

.ycr-date-control input[type="date"] {
	position: absolute !important;
	z-index: 2;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	appearance: none;
	background: transparent !important;
	color: transparent !important;
	color-scheme: dark;
	font-size: 16px !important;
	opacity: 0;
	cursor: pointer;
}

.ycr-date-control input[type="date"]::-webkit-calendar-picker-indicator {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: pointer;
}

.ycr-inline-quote__result {
	grid-column: 1 / -1;
	padding: .65rem .75rem;
	border-radius: 9px;
	background: rgba(8, 181, 200, .10);
	color: rgba(255, 255, 255, .78);
	font-size: .68rem;
	line-height: 1.45;
}

.ycr-inline-quote__result strong {
	display: block;
	margin-top: .15rem;
	color: #fff;
	font-size: .9rem;
}

.ycr-inline-quote__result small {
	display: block;
	margin-top: .2rem;
	color: #6fe6ef;
	font-size: .66rem;
}

.ycr-vehicle-card__details.button {
	width: 100%;
	margin: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--ycr-navy), var(--ycr-cyan));
	color: #fff;
	font-size: .78rem;
	font-weight: 800;
}

.ycr-vehicle-card__whatsapp {
	padding: .7rem .15rem;
	color: #fff;
	font-size: .75rem;
	font-weight: 800;
}

.ycr-fleet-grid__note {
	margin: 1rem 0 0;
	color: rgba(255, 255, 255, .58);
	font-size: .72rem;
	text-align: center;
}

.ycr-fleet-grid__empty {
	padding: 1.4rem;
	border: 1px solid rgba(8, 181, 200, .22);
	border-radius: 16px;
	background: rgba(255, 255, 255, .06);
	color: rgba(255, 255, 255, .72);
	text-align: center;
}

.ycr-fleet-grid__empty-filter {
	margin: 0;
	padding: 1.25rem;
	border: 1px solid rgba(8, 181, 200, .18);
	border-radius: 14px;
	background: rgba(8, 181, 200, .07);
	color: #516375;
	text-align: center;
}

.ycr-vehicle-card[hidden],
.ycr-long-term-card[hidden] {
	display: none !important;
}

.ycr-fleet-filter-panel {
	overflow: hidden;
	padding: 1.35rem;
	border: 1px solid rgba(8, 181, 200, .16);
	border-radius: 20px;
	background:
		radial-gradient(circle at 100% 0, rgba(8, 181, 200, .14), transparent 42%),
		linear-gradient(150deg, #082d47, #031a2b);
	box-shadow: 0 22px 60px rgba(0, 25, 45, .16);
	color: #fff;
}

.ycr-fleet-filter-panel h2 {
	margin: .15rem 0 .45rem;
	color: #fff;
	font-size: 1.35rem;
}

.ycr-fleet-filter-panel > p:not(.ycr-eyebrow) {
	margin: 0 0 1rem;
	color: rgba(255, 255, 255, .62);
	font-size: .76rem;
	line-height: 1.55;
}

.ycr-fleet-filter-panel__buttons {
	display: grid;
	gap: .4rem;
}

.ycr-fleet-filter-panel__buttons button {
	display: flex;
	width: 100%;
	min-height: 42px;
	align-items: center;
	justify-content: space-between;
	margin: 0;
	padding: .65rem .75rem;
	border: 1px solid rgba(255, 255, 255, .10);
	border-radius: 10px;
	background: rgba(255, 255, 255, .045);
	color: rgba(255, 255, 255, .76);
	font: inherit;
	font-size: .76rem;
	font-weight: 750;
	text-align: left;
	cursor: pointer;
	transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.ycr-fleet-filter-panel__buttons button:hover,
.ycr-fleet-filter-panel__buttons button.is-active {
	border-color: rgba(111, 230, 239, .42);
	background: rgba(8, 181, 200, .16);
	color: #fff;
}

.ycr-fleet-filter-panel__buttons small {
	display: grid;
	width: 24px;
	height: 24px;
	place-items: center;
	border-radius: 999px;
	background: rgba(255, 255, 255, .09);
	color: #6fe6ef;
	font-size: .66rem;
}

.ycr-fleet-filter-panel__quick {
	display: grid;
	gap: .55rem;
	margin: 1.1rem -1.35rem -1.35rem;
	padding: 1rem 1.35rem 1.2rem;
	border-top: 1px solid rgba(255, 255, 255, .09);
	background: rgba(0, 0, 0, .12);
}

.ycr-fleet-filter-panel__quick strong {
	color: rgba(255, 255, 255, .42);
	font-size: .62rem;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.ycr-fleet-filter-panel__quick a {
	color: #fff;
	font-size: .75rem;
	font-weight: 750;
}

.ycr-fleet-filter-panel__quick a:hover {
	color: #6fe6ef;
}

.ycr-showcase-single {
	--ycr-single-bg: #031a2b;
	width: min(1280px, calc(100% - 2rem));
	margin: clamp(1.5rem, 4vw, 4rem) auto;
	color: #fff;
}

.ycr-showcase-archive {
	width: min(1280px, calc(100% - 2rem));
	margin: clamp(1.5rem, 4vw, 4rem) auto;
	padding: clamp(1rem, 3vw, 2rem);
	border-radius: 28px;
	background: linear-gradient(150deg, #153d70, #08253e);
}

.ycr-showcase-archive__header {
	max-width: 760px;
	margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.ycr-showcase-archive__header h1 {
	margin: 0 0 .75rem;
	color: #fff;
	font-size: clamp(2rem, 5vw, 4rem);
}

.ycr-showcase-archive__header > p:last-child {
	color: rgba(255, 255, 255, .7);
}

.ycr-showcase-single__hero {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
	overflow: hidden;
	border: 1px solid rgba(8, 181, 200, .18);
	border-radius: 28px;
	background: var(--ycr-single-bg);
	box-shadow: 0 35px 100px rgba(0, 16, 31, .28);
}

.ycr-showcase-single__image {
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	min-height: 540px;
	background: #071827;
}

.ycr-showcase-single__media {
	display: flex;
	min-height: 0;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.ycr-showcase-single__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
}

.ycr-showcase-feature-strip {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 1px;
	padding: 1px;
	border-top: 1px solid rgba(111, 230, 239, .16);
	background: rgba(111, 230, 239, .10);
}

.ycr-showcase-feature-strip > div {
	display: grid;
	min-height: 92px;
	place-items: center;
	align-content: center;
	gap: .45rem;
	padding: .8rem .45rem;
	background: linear-gradient(145deg, rgba(9, 49, 70, .96), rgba(5, 34, 52, .96));
	color: #6fe6ef;
	text-align: center;
}

.ycr-showcase-feature-strip svg {
	width: 29px;
	height: 29px;
}

.ycr-showcase-feature-strip strong {
	color: rgba(255, 255, 255, .84);
	font-size: .69rem;
	line-height: 1.2;
}

.ycr-showcase-single__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(1.5rem, 4vw, 3.5rem);
}

.ycr-showcase-single__content h1 {
	margin: 0 0 1rem;
	color: #fff;
	font-size: clamp(2rem, 3.5vw, 3.15rem);
	line-height: 1.05;
}

.ycr-showcase-single__copy {
	color: rgba(255, 255, 255, .68);
	font-size: .92rem;
	line-height: 1.7;
}

.ycr-showcase-specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	overflow: hidden;
	margin: 1.5rem 0;
	border: 1px solid rgba(255, 255, 255, .10);
	border-radius: 14px;
	background: rgba(255, 255, 255, .10);
}

.ycr-showcase-specs div {
	padding: .8rem;
	background: rgba(255, 255, 255, .04);
}

.ycr-showcase-specs dt {
	color: rgba(255, 255, 255, .48);
	font-size: .64rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.ycr-showcase-specs dd {
	margin: .2rem 0 0;
	color: #fff;
	font-size: .85rem;
	font-weight: 700;
}

.ycr-showcase-single__starting {
	display: grid;
	padding-top: 1.2rem;
	border-top: 1px solid rgba(255, 255, 255, .12);
}

.ycr-showcase-single__starting span {
	color: var(--ycr-cyan);
	font-size: .68rem;
	font-weight: 850;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.ycr-showcase-single__starting strong {
	margin: .2rem 0;
	color: #fff;
	font-size: clamp(2rem, 4vw, 3.2rem);
	line-height: 1;
}

.ycr-showcase-single__starting small {
	color: rgba(255, 255, 255, .6);
}

.ycr-showcase-booking {
	display: grid;
	grid-template-columns: .75fr 1.25fr;
	gap: clamp(1.5rem, 4vw, 4rem);
	margin-top: 1.25rem;
	padding: clamp(1.5rem, 4vw, 3rem);
	border-radius: 24px;
	background: linear-gradient(140deg, #082d47, #052136);
	box-shadow: 0 25px 70px rgba(0, 16, 31, .20);
}

.ycr-showcase-booking h2 {
	margin: 0 0 .5rem;
	color: #fff;
}

.ycr-showcase-booking p {
	color: rgba(255, 255, 255, .68);
}

.ycr-showcase-booking__summary {
	min-width: 0;
}

.ycr-showcase-booking__price {
	display: grid;
	gap: .28rem;
	min-height: 150px;
	margin-top: clamp(1.4rem, 3vw, 2.2rem);
	padding: clamp(1.1rem, 2.5vw, 1.55rem);
	border: 1px solid rgba(111, 230, 239, .24);
	border-radius: 18px;
	background:
		radial-gradient(circle at 100% 0%, rgba(16, 180, 199, .22), transparent 42%),
		linear-gradient(145deg, rgba(4, 35, 55, .96), rgba(7, 56, 78, .88));
	box-shadow: inset 0 1px rgba(255, 255, 255, .04), 0 18px 45px rgba(0, 13, 26, .2);
	color: rgba(255, 255, 255, .72);
	align-content: center;
}

.ycr-showcase-booking__price .ycr-price-label {
	color: #6fe6ef;
	font-size: .64rem;
	font-weight: 900;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.ycr-showcase-booking__price > em {
	color: rgba(255, 255, 255, .7);
	font-size: .8rem;
	font-style: normal;
}

.ycr-showcase-booking__price > strong {
	display: block;
	margin: .15rem 0 0;
	color: #fff;
	font-size: clamp(1.55rem, 3vw, 2.35rem);
	font-weight: 850;
	letter-spacing: -.035em;
	line-height: 1;
}

.ycr-showcase-booking__price > strong small {
	display: inline;
	margin: 0;
	color: rgba(255, 255, 255, .52);
	font-size: .44em;
	font-weight: 650;
	letter-spacing: 0;
}

.ycr-showcase-booking__price > b {
	color: #6fe6ef;
	font-size: .88rem;
	font-weight: 800;
}

.ycr-showcase-booking__price .ycr-price-placeholder {
	margin-top: .25rem;
	color: rgba(255, 255, 255, .62);
	font-size: .78rem;
	line-height: 1.55;
}

.ycr-showcase-booking__price .ycr-price-extras {
	margin-top: .25rem;
	color: rgba(255, 255, 255, .58);
	font-size: .67rem;
}

.ycr-rate-nudge {
	display: grid;
	gap: .25rem;
	margin-top: .75rem;
	padding: .9rem 1rem;
	border: 1px solid rgba(111, 230, 239, .32);
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(16, 180, 199, .18), rgba(3, 27, 42, .74));
	box-shadow: 0 12px 30px rgba(0, 14, 28, .16);
}

.ycr-rate-nudge[hidden] {
	display: none !important;
}

.ycr-rate-nudge > span {
	color: #6fe6ef;
	font-size: .58rem;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.ycr-rate-nudge > strong {
	color: #fff;
	font-size: .82rem;
	line-height: 1.35;
}

.ycr-rate-nudge > small {
	color: rgba(255, 255, 255, .62);
	font-size: .65rem;
	line-height: 1.45;
}

.ycr-showcase-booking__form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: .65rem;
}

.ycr-booking-extras {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: .65rem;
	min-width: 0;
	margin: .2rem 0 0;
	padding: 1rem;
	border: 1px solid rgba(111, 230, 239, .18);
	border-radius: 16px;
	background: rgba(3, 27, 42, .48);
}

.ycr-booking-extras legend {
	grid-column: 1 / -1;
	padding: 0 .35rem;
	color: #6fe6ef;
	font-size: .7rem;
	font-weight: 850;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.ycr-showcase-booking__form .ycr-booking-extras label {
	display: flex;
	min-width: 0;
	min-height: 72px;
	align-items: center;
	grid-template-columns: auto 1fr;
	gap: .55rem;
	padding: .65rem;
	border: 1px solid rgba(111, 230, 239, .14);
	border-radius: 12px;
	background: rgba(5, 38, 58, .82);
	cursor: pointer;
}

.ycr-showcase-booking__form .ycr-booking-extras input[type="checkbox"] {
	width: 20px;
	height: 20px;
	min-height: 20px;
	flex: 0 0 20px;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(111, 230, 239, .5);
	border-radius: 6px;
	appearance: none;
	background: transparent;
	cursor: pointer;
}

.ycr-showcase-booking__form .ycr-booking-extras input[type="checkbox"]:checked {
	border-color: #10b4c7;
	background:
		linear-gradient(135deg, transparent 43%, #fff 43% 52%, transparent 52%) 5px 8px / 7px 7px no-repeat,
		linear-gradient(45deg, transparent 42%, #fff 42% 52%, transparent 52%) 2px 7px / 6px 6px no-repeat,
		#10b4c7;
}

.ycr-booking-extras label > span {
	display: grid;
	gap: .18rem;
}

.ycr-booking-extras strong {
	color: #fff;
	font-size: .7rem;
	line-height: 1.2;
}

.ycr-booking-extras small {
	color: rgba(111, 230, 239, .82);
	font-size: .61rem;
	line-height: 1.25;
}

.ycr-extra-help {
	position: relative;
	display: inline-flex;
	width: 16px;
	height: 16px;
	align-items: center;
	justify-content: center;
	margin-left: .25rem;
	border: 1px solid rgba(111, 230, 239, .55);
	border-radius: 50%;
	color: #6fe6ef;
	font-size: .58rem;
	font-style: normal;
	font-weight: 900;
	line-height: 1;
	vertical-align: 1px;
	cursor: help;
}

.ycr-extra-help > small {
	position: absolute;
	z-index: 30;
	bottom: calc(100% + 10px);
	left: 50%;
	width: min(260px, 75vw);
	padding: .7rem .75rem;
	border: 1px solid rgba(111, 230, 239, .28);
	border-radius: 10px;
	background: #031d2d;
	box-shadow: 0 14px 35px rgba(0, 12, 24, .38);
	color: rgba(255, 255, 255, .88) !important;
	font-size: .62rem !important;
	font-weight: 500;
	line-height: 1.45 !important;
	text-align: left;
	white-space: normal;
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 5px);
	transition: opacity .18s ease, transform .18s ease;
}

.ycr-extra-help:hover > small,
.ycr-extra-help:focus > small,
.ycr-extra-help:focus-visible > small {
	opacity: 1;
	transform: translate(-50%, 0);
}

.ycr-showcase-single__actions {
	grid-column: 1 / -1;
	display: flex;
	gap: 1rem;
	align-items: center;
}

.ycr-showcase-single__actions .button {
	margin: 0;
	padding-right: 1.3rem;
	padding-left: 1.3rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--ycr-navy), var(--ycr-cyan));
	color: #fff;
}

.ycr-showcase-single__actions .ycr-showcase-single__long-term.button {
	border: 1px solid rgba(111, 230, 239, .58);
	background: transparent;
	box-shadow: none;
}

.ycr-showcase-single__actions .ycr-showcase-single__long-term.button:hover {
	border-color: #6fe6ef;
	background: rgba(111, 230, 239, .1);
}

.ycr-showcase-single__actions > a:not(.button) {
	color: #fff;
	font-weight: 800;
}

.ycr-showcase-booking .ycr-currency-note {
	grid-column: 1 / -1;
	margin: 0;
}

@media (max-width: 1199px) {
	.ycr-fleet-grid,
	.ycr-fleet-grid--cols-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ycr-showcase-single__hero {
		grid-template-columns: 1fr;
	}

	.ycr-showcase-single__image {
		min-height: 420px;
	}

	.ycr-showcase-feature-strip {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 1023px) {
	.ycr-quick-search {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ycr-quick-search__intro,
	.ycr-quick-search .button {
		grid-column: 1 / -1;
	}

	.ycr-quick-search__intro {
		text-align: center;
	}
}

@media (max-width: 767px) {
	.ycr-date-grid,
	.ycr-quick-search {
		grid-template-columns: 1fr;
	}

	.ycr-quick-search .button {
		grid-column: auto;
		min-width: 0;
	}

	.ycr-faq__item summary {
		min-height: 60px;
	}

	.ycr-fleet-grid,
	.ycr-fleet-grid--cols-2,
	.ycr-fleet-grid--cols-4 {
		grid-template-columns: 1fr;
	}

	.ycr-vehicle-card__description {
		min-height: 0;
	}

	.ycr-showcase-single {
		width: min(100% - 1rem, 720px);
	}

	.ycr-showcase-archive {
		width: min(100% - 1rem, 720px);
		padding: 1rem;
		border-radius: 18px;
	}

	.ycr-showcase-single__hero,
	.ycr-showcase-booking {
		border-radius: 18px;
	}

	.ycr-showcase-single__image {
		min-height: 260px;
	}

	.ycr-showcase-booking {
		grid-template-columns: 1fr;
	}

	.ycr-showcase-booking__form {
		grid-template-columns: 1fr;
	}

	.ycr-booking-extras {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ycr-showcase-single__actions {
		align-items: stretch;
		flex-direction: column;
	}

}

/* Long term rental */
.ycr-long-term-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.4rem;
}

.ycr-long-term-grid--cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ycr-long-term-grid--cols-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ycr-long-term-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(111, 230, 239, 0.16);
	border-radius: 24px;
	background: #051d2c;
	box-shadow: 0 24px 60px rgba(0, 19, 34, 0.18);
	color: #fff;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ycr-long-term-card:hover {
	transform: translateY(-5px);
	border-color: rgba(111, 230, 239, 0.38);
	box-shadow: 0 30px 70px rgba(0, 19, 34, 0.28);
}

.ycr-long-term-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, #051421, #12334a);
}

.ycr-long-term-card__media::after {
	position: absolute;
	inset: auto 0 0;
	height: 35%;
	background: linear-gradient(0deg, #051d2c, transparent);
	content: "";
	pointer-events: none;
}

.ycr-long-term-card__media > span {
	position: absolute;
	z-index: 2;
	top: 1rem;
	left: 1rem;
	padding: 0.38rem 0.7rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	background: rgba(3, 24, 41, 0.78);
	color: #6fe6ef;
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	backdrop-filter: blur(8px);
}

.ycr-long-term-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.ycr-long-term-card:hover .ycr-long-term-card__media img {
	transform: scale(1.035);
}

.ycr-long-term-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.45rem;
}

.ycr-long-term-card__eyebrow {
	margin: 0 0 0.5rem;
	color: #6fe6ef;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.ycr-long-term-card h3 {
	margin: 0;
	color: #fff;
	font-size: clamp(1.25rem, 2vw, 1.7rem);
	line-height: 1.12;
}

.ycr-long-term-card__specs {
	margin: 0.7rem 0 1.1rem;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.8rem;
}

.ycr-long-term-card__terms {
	display: flex;
	gap: 0.4rem;
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ycr-long-term-card__terms span,
.ycr-long-term-card__terms strong {
	padding: 0.3rem 0.58rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.54);
	font-size: 0.68rem;
	font-style: normal;
	font-weight: 700;
}

.ycr-long-term-card__terms strong {
	border-color: #10b4c7;
	background: #10b4c7;
	color: #fff;
}

.ycr-long-term-card__price {
	display: grid;
	gap: 0.2rem;
	margin: 1.05rem 0;
}

.ycr-long-term-card__price > span {
	color: #6fe6ef;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.ycr-long-term-card__price > strong {
	color: #fff;
	font-size: clamp(2rem, 3.4vw, 2.85rem);
	line-height: 1;
}

.ycr-long-term-card__price > strong small {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.9rem;
	font-weight: 600;
}

.ycr-long-term-card__price > em {
	margin-top: 0.35rem;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.78rem;
	font-style: normal;
}

.ycr-long-term-card__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.65rem;
}

.ycr-long-term-card__actions button,
.ycr-long-term-card__actions a {
	display: inline-flex;
	min-height: 45px;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 0.85rem;
	border: 1px solid rgba(111, 230, 239, 0.4);
	border-radius: 999px;
	background: transparent;
	color: #fff;
	font-size: 0.76rem;
	font-weight: 800;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}

.ycr-long-term-card__actions a {
	border-color: transparent;
	background: linear-gradient(100deg, #087bad, #10b4c7);
}

.ycr-long-term-grid__note {
	margin: 1rem 0 0;
	color: #758391;
	font-size: 0.78rem;
	text-align: center;
}

.ycr-fleet-builder {
	overflow: hidden;
	padding: clamp(1.3rem, 3vw, 2.4rem);
	border: 1px solid rgba(111, 230, 239, 0.2);
	border-radius: 28px;
	background:
		radial-gradient(circle at 95% 0%, rgba(16, 180, 199, 0.2), transparent 30%),
		linear-gradient(145deg, #041b2a, #082b3e);
	box-shadow: 0 30px 80px rgba(0, 20, 34, 0.22);
	color: #fff;
}

.ycr-fleet-builder__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 1.8rem;
}

.ycr-fleet-builder__eyebrow {
	margin: 0 0 0.5rem;
	color: #6fe6ef;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.15em;
}

.ycr-fleet-builder__head h2 {
	margin: 0 0 0.55rem;
	color: #fff;
	font-size: clamp(1.8rem, 3.8vw, 3.2rem);
	line-height: 1.05;
}

.ycr-fleet-builder__head p:last-child {
	max-width: 760px;
	margin: 0;
	color: rgba(255, 255, 255, 0.62);
}

.ycr-fleet-builder__counter {
	flex: 0 0 auto;
	padding: 0.65rem 0.9rem;
	border: 1px solid rgba(111, 230, 239, 0.24);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.78rem;
	white-space: nowrap;
}

.ycr-fleet-builder__counter strong {
	color: #6fe6ef;
}

.ycr-fleet-builder__controls {
	display: grid;
	grid-template-columns: minmax(220px, 2fr) minmax(110px, 0.7fr) minmax(140px, 0.8fr) minmax(90px, 0.45fr) auto;
	align-items: start;
	gap: 0.8rem;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.055);
}

.ycr-fleet-builder label {
	display: grid;
	gap: 0.42rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.72rem;
	font-weight: 700;
}

.ycr-fleet-builder select,
.ycr-fleet-builder input {
	width: 100%;
	height: 48px;
	margin: 0;
	padding: 0 0.85rem;
	border: 1px solid rgba(111, 230, 239, 0.24);
	border-radius: 11px;
	background: #08283a;
	color: #fff;
	font-size: 0.84rem;
	font-weight: 700;
}

.ycr-fleet-builder .ycr-fleet-builder__controls select,
.ycr-fleet-builder .ycr-fleet-builder__controls input,
.ycr-fleet-builder .ycr-fleet-builder__contact input {
	border: 1px solid rgba(111, 230, 239, 0.48) !important;
	border-radius: 12px !important;
	outline: none !important;
	background: rgba(3, 29, 45, 0.62) !important;
	box-shadow: none !important;
	color: #fff !important;
	-webkit-text-fill-color: #fff;
}

.ycr-fleet-builder select option {
	background: #08283a;
	color: #fff;
}

.ycr-fleet-builder input::placeholder {
	color: rgba(255, 255, 255, 0.42);
	opacity: 1;
}

.ycr-fleet-builder select:disabled {
	opacity: 0.76;
}

.ycr-fleet-builder__quantity {
	display: grid;
	gap: .35rem;
}

.ycr-fleet-builder__quantity > span {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: .25rem;
}

.ycr-fleet-builder__quantity button {
	min-height: 25px;
	padding: .15rem .25rem;
	border: 1px solid rgba(111, 230, 239, .26);
	border-radius: 999px;
	background: rgba(111, 230, 239, .07);
	color: rgba(255, 255, 255, .74);
	font-size: .62rem;
	font-weight: 800;
	cursor: pointer;
}

.ycr-fleet-builder__quantity button:hover {
	border-color: #10b4c7;
	background: rgba(16, 180, 199, .2);
	color: #fff;
}

.ycr-fleet-builder__add,
.ycr-fleet-builder__send {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 1.15rem;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(100deg, #087bad, #10b4c7);
	box-shadow: 0 12px 28px rgba(16, 180, 199, 0.22);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 800;
	cursor: pointer;
	white-space: nowrap;
}

.ycr-fleet-builder__controls > .ycr-fleet-builder__add {
	align-self: start;
	margin-top: 1.45rem;
}

.ycr-fleet-builder__feedback {
	min-height: 1.3rem;
	margin: 0.55rem 0;
	color: #6fe6ef;
	font-size: 0.76rem;
}

.ycr-fleet-builder__list-head,
.ycr-fleet-builder__item {
	display: grid;
	grid-template-columns: 2fr 0.65fr 0.85fr 0.55fr 1fr 34px;
	align-items: center;
	gap: 0.7rem;
}

.ycr-fleet-builder__list-head {
	padding: 0.8rem 1rem;
	border-radius: 10px 10px 0 0;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.52);
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ycr-fleet-builder__list {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-top: 0;
	border-radius: 0 0 12px 12px;
}

.ycr-fleet-builder__item {
	padding: 0.9rem 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.76rem;
}

.ycr-fleet-builder__item:first-of-type {
	border-top: 0;
}

.ycr-fleet-builder__item strong {
	color: #fff;
	font-size: 0.82rem;
}

.ycr-fleet-builder__remove {
	width: 30px;
	height: 30px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	background: transparent;
	color: rgba(255, 255, 255, 0.65);
	font-size: 1.1rem;
	cursor: pointer;
}

.ycr-fleet-builder__empty {
	margin: 0;
	padding: 1.3rem;
	color: rgba(255, 255, 255, 0.48);
	text-align: center;
}

.ycr-fleet-builder__contact {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.8rem;
	margin-top: 1rem;
}

.ycr-fleet-builder__extras {
	display: grid;
	grid-template-columns: minmax(210px, 1.3fr) repeat(2, minmax(180px, 1fr));
	gap: .7rem;
	margin-top: 1rem;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, .09);
	border-radius: 18px;
	background: rgba(255, 255, 255, .035);
}

.ycr-fleet-builder__extras > div {
	align-self: center;
}

.ycr-fleet-builder__extras h3 {
	margin: 0 0 .25rem;
	color: #fff;
	font-size: 1rem;
}

.ycr-fleet-builder__extras > div > p:last-child {
	margin: 0;
	color: rgba(255, 255, 255, .48);
	font-size: .68rem;
}

.ycr-fleet-builder__extras > label {
	display: flex;
	min-height: 82px;
	align-items: center;
	grid-template-columns: auto 1fr;
	gap: .65rem;
	padding: .75rem;
	border: 1px solid rgba(111, 230, 239, .15);
	border-radius: 13px;
	background: rgba(3, 27, 42, .72);
	cursor: pointer;
}

.ycr-fleet-builder__extras input[type="checkbox"] {
	width: 21px;
	height: 21px;
	flex: 0 0 21px;
	margin: 0;
	border: 1px solid rgba(111, 230, 239, .45);
	border-radius: 6px;
	appearance: none;
	background: transparent;
	cursor: pointer;
}

.ycr-fleet-builder__extras input[type="checkbox"]:checked {
	border-color: #10b4c7;
	background:
		linear-gradient(135deg, transparent 43%, #fff 43% 52%, transparent 52%) 5px 9px / 7px 7px no-repeat,
		linear-gradient(45deg, transparent 42%, #fff 42% 52%, transparent 52%) 2px 8px / 6px 6px no-repeat,
		#10b4c7;
}

.ycr-fleet-builder__extras label > span {
	display: grid;
	gap: .25rem;
}

.ycr-fleet-builder__extras strong {
	color: #fff;
	font-size: .72rem;
	line-height: 1.2;
}

.ycr-fleet-builder__extras small {
	color: #6fe6ef;
	font-size: .64rem;
}

.ycr-fleet-builder__extras .ycr-extra-help > small {
	color: rgba(255, 255, 255, .88);
}

.ycr-fleet-builder__footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-top: 1rem;
	padding-top: 1.2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ycr-fleet-builder__footer > div {
	display: grid;
}

.ycr-fleet-builder__footer span {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.72rem;
}

.ycr-fleet-builder__footer strong {
	color: #fff;
	font-size: clamp(1.8rem, 4vw, 2.7rem);
	line-height: 1.1;
}

.ycr-fleet-builder__footer small {
	color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 1199px) {
	.ycr-long-term-grid,
	.ycr-long-term-grid--cols-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ycr-fleet-builder__controls {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ycr-fleet-builder__extras {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ycr-fleet-builder__extras > div {
		grid-column: 1 / -1;
	}

	.ycr-fleet-builder__add {
		grid-column: 1 / -1;
		margin-top: 0;
	}
}

@media (max-width: 767px) {
	.ycr-long-term-grid,
	.ycr-long-term-grid--cols-2,
	.ycr-long-term-grid--cols-4 {
		grid-template-columns: 1fr;
	}

	.ycr-long-term-card__actions {
		grid-template-columns: 1fr;
	}

	.ycr-fleet-builder {
		padding: 1rem;
		border-radius: 20px;
	}

	.ycr-fleet-builder__head,
	.ycr-fleet-builder__footer {
		align-items: stretch;
		flex-direction: column;
	}

	.ycr-fleet-builder__counter {
		align-self: flex-start;
	}

	.ycr-fleet-builder__controls,
	.ycr-fleet-builder__contact,
	.ycr-fleet-builder__extras {
		grid-template-columns: 1fr;
	}

	.ycr-fleet-builder__extras > div {
		grid-column: auto;
	}

	.ycr-fleet-builder__add {
		grid-column: auto;
		margin-top: 0;
	}

	.ycr-fleet-builder__list-head {
		display: none;
	}

	.ycr-fleet-builder__list {
		border-top: 1px solid rgba(255, 255, 255, 0.09);
		border-radius: 12px;
	}

	.ycr-fleet-builder__item {
		grid-template-columns: 1fr auto;
		gap: 0.35rem 0.7rem;
	}

	.ycr-fleet-builder__item > strong,
	.ycr-fleet-builder__item > span {
		grid-column: 1;
	}

	.ycr-fleet-builder__item > button {
		grid-column: 2;
		grid-row: 1;
	}

	.ycr-fleet-builder__send {
		width: 100%;
	}

	.ycr-booking-extras {
		grid-template-columns: 1fr;
	}
}

.ycr-fleet-slider {
	--ycr-slider-gap: 1.25rem;
	position: relative;
	width: 100%;
}

.ycr-fleet-slider__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ycr-fleet-slider__toolbar strong {
	color: #7ce6ee;
}

.ycr-fleet-slider__toolbar > div {
	display: flex;
	gap: 0.5rem;
}

.ycr-fleet-slider__toolbar button {
	display: inline-grid;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(124, 230, 238, 0.32);
	border-radius: 50%;
	background: rgba(7, 29, 71, 0.36);
	color: #fff;
	font: inherit;
	cursor: pointer;
	place-items: center;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ycr-fleet-slider__toolbar button:hover,
.ycr-fleet-slider__toolbar button:focus-visible {
	border-color: #7ce6ee;
	background: #08b5c8;
	transform: translateY(-1px);
}

.ycr-fleet-slider__track {
	display: grid;
	grid-auto-columns: calc((100% - var(--ycr-slider-gap-total)) / var(--ycr-slider-cols));
	grid-auto-flow: column;
	gap: var(--ycr-slider-gap);
	overflow-x: auto;
	padding: 0.15rem 0 0.75rem;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	overscroll-behavior-inline: contain;
}

.ycr-fleet-slider__track::-webkit-scrollbar {
	display: none;
}

.ycr-fleet-slider__track > .ycr-fleet-card {
	min-width: 0;
	scroll-snap-align: start;
}

.ycr-fleet-slider__progress {
	height: 3px;
	margin-top: 0.65rem;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
}

.ycr-fleet-slider__progress span {
	display: block;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #0878b3, #08b5c8);
	transition: width 0.2s ease;
}

@media (max-width: 1199px) {
	.ycr-fleet-slider__track {
		grid-auto-columns: calc((100% - var(--ycr-slider-tablet-gap-total)) / var(--ycr-slider-tablet-cols));
	}
}

@media (max-width: 767px) {
	.ycr-fleet-slider__track {
		grid-auto-columns: calc((100% - var(--ycr-slider-mobile-gap-total)) / var(--ycr-slider-mobile-cols));
	}

	.ycr-fleet-slider__toolbar {
		align-items: flex-end;
	}
}

.ycr-public-footer {
	background: #061c2d;
	color: rgba(255, 255, 255, 0.7);
}

.ycr-public-footer[hidden] {
	display: none !important;
}

.ycr-public-footer__inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 3rem;
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	padding: 3.5rem 0 2.5rem;
}

.ycr-public-footer strong {
	display: block;
	margin-bottom: 0.85rem;
	color: #fff;
	font-size: 1.05rem;
}

.ycr-public-footer p {
	max-width: 540px;
	margin: 0;
}

.ycr-public-footer a {
	display: block;
	width: fit-content;
	margin: 0.45rem 0;
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
}

.ycr-public-footer a:hover {
	color: #7ce6ee;
}

.ycr-public-footer__bottom {
	padding: 1rem 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
	text-align: center;
	font-size: 0.82rem;
}

@media (max-width: 767px) {
	.ycr-public-footer__inner {
		grid-template-columns: 1fr;
		gap: 1.75rem;
		padding: 2.5rem 0 2rem;
	}
}
