.lyor-high-end-carousel-container {
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	box-sizing: border-box;
	--lyor-card-bg: #121314;
	--lyor-placeholder-start: #171819;
	--lyor-placeholder-end: #171819;
	--lyor-overlay-from: rgba(10, 11, 12, 0.88);
	--lyor-overlay-mid: rgba(10, 11, 12, 0.32);
	--lyor-overlay-to: rgba(10, 11, 12, 0.04);
	--lyor-subtitle-color: rgba(214, 187, 132, 0.92);
	--lyor-title-color: #f5f1ea;
	--lyor-desc-color: rgba(245, 241, 234, 0.74);
	--lyor-nav-arrow-color: #f5f1ea;
	--lyor-nav-arrow-bg: rgba(15, 16, 18, 0.52);
	--lyor-nav-arrow-border: rgba(245, 241, 234, 0.16);
	--lyor-nav-arrow-hover-color: #ffffff;
	--lyor-nav-arrow-hover-bg: rgba(15, 16, 18, 0.72);
	--lyor-nav-arrow-hover-border: rgba(245, 241, 234, 0.34);
	--lyor-bullet-color: rgba(245, 241, 234, 0.24);
	--lyor-bullet-active-color: #d6bb84;
}

.lyor-carousel-shell {
	position: relative;
}

.lyor-carousel-intro {
	max-width: 760px;
	margin: 0 auto 26px;
	text-align: center;
}

.lyor-carousel-intro__eyebrow {
	margin-bottom: 10px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(214, 187, 132, 0.92);
}

.lyor-carousel-intro__title {
	margin: 0;
	font-size: clamp(30px, 3vw, 52px);
	line-height: 1.02;
	font-weight: 500;
	letter-spacing: -0.04em;
	color: #f5f1ea;
	text-wrap: balance;
}

.lyor-carousel-intro__text {
	max-width: 42ch;
	margin: 14px auto 0;
	font-size: 15px;
	line-height: 1.6;
	color: rgba(245, 241, 234, 0.72);
}

.lyor-high-end-carousel-container .swiper-wrapper {
	display: flex;
	max-width: 100%;
}

.lyor-high-end-carousel-container .swiper-slide {
	flex-shrink: 0;
	min-width: 0;
	box-sizing: border-box;
	transition: transform 0.35s ease, opacity 0.35s ease;
}

.lyor-high-end-carousel-container .swiper-slide:not(.swiper-slide-active) {
	opacity: 0.88;
}

.lyor-high-end-carousel-container .swiper-slide.swiper-slide-active {
	opacity: 1;
	transform: scale(1.015);
}

.lyor-carousel-item {
	height: 440px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lyor-high-end-carousel-container.lyor-carousel-auto .lyor-carousel-item {
	width: clamp(280px, 32vw, 460px);
	max-width: 100%;
}

.lyor-carousel-card {
	position: relative;
	width: 100%;
	height: 100%;
	background: var(--lyor-card-bg);
	border-radius: 20px;
	overflow: hidden;
	border: 0;
	box-shadow: none;
	isolation: isolate;
	contain: paint;
	transition: box-shadow 0.28s ease;
}

.lyor-carousel-item:hover .lyor-carousel-card {
	box-shadow: inset 0 -56px 84px rgba(0, 0, 0, 0.12);
}

.lyor-carousel-image-wrap {
	position: absolute;
	inset: 0;
	overflow: hidden;
	background: var(--lyor-card-bg);
}

.lyor-carousel-image {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	filter: saturate(0.94) contrast(1.02) brightness(0.96);
	transition: filter 0.32s ease, transform 0.52s ease;
}

.lyor-carousel-item:hover .lyor-carousel-image {
	filter: saturate(1) contrast(1.04) brightness(1);
	transform: scale(1.04);
}

.lyor-carousel-placeholder {
	background: linear-gradient(180deg, var(--lyor-placeholder-start), var(--lyor-placeholder-end));
}

.lyor-carousel-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, var(--lyor-overlay-from) 0%, var(--lyor-overlay-mid) 48%, var(--lyor-overlay-to) 100%);
	opacity: 0.95;
	transition: opacity 0.28s ease;
}

.lyor-carousel-item:hover .lyor-carousel-overlay {
	opacity: 0.9;
}

.lyor-carousel-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 28px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.lyor-carousel-subtitle {
	margin: 0 0 10px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--lyor-subtitle-color);
	transition: color 0.28s ease;
}

.lyor-carousel-title {
	margin: 0 0 12px;
	max-width: 12ch;
	font-size: clamp(26px, 2.25vw, 34px);
	line-height: 1.02;
	font-weight: 500;
	letter-spacing: -0.03em;
	text-wrap: balance;
	color: var(--lyor-title-color);
	transition: color 0.28s ease;
}

.lyor-carousel-desc {
	max-width: 28ch;
	margin: 0;
	font-size: 15px;
	line-height: 1.55;
	color: var(--lyor-desc-color);
	opacity: 0;
	transform: translateY(14px);
	max-height: 0;
	overflow: hidden;
	transition: opacity 0.32s ease, transform 0.32s ease, max-height 0.32s ease, margin-top 0.32s ease, color 0.28s ease;
}

.lyor-carousel-item:hover .lyor-carousel-subtitle {
	color: #ecd4a0;
}

.lyor-carousel-item:hover .lyor-carousel-title {
	color: #ffffff;
}

.lyor-carousel-item:hover .lyor-carousel-desc {
	color: rgba(255, 255, 255, 0.8);
}

.lyor-carousel-item:hover .lyor-carousel-desc,
.lyor-carousel-item.swiper-slide-active .lyor-carousel-desc {
	opacity: 1;
	transform: translateY(0);
	max-height: 140px;
	margin-top: 2px;
}

.lyor-carousel-link-overlay {
	position: absolute;
	inset: 0;
	z-index: 10;
	border: 0;
	outline: 0;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

.lyor-carousel-link-overlay:focus,
.lyor-carousel-link-overlay:focus-visible {
	outline: none !important;
	box-shadow: none !important;
	text-decoration: none !important;
}

.lyor-carousel-prev,
.lyor-carousel-next,
.lyor-high-end-carousel-container .swiper-button-prev,
.lyor-high-end-carousel-container .swiper-button-next {
	width: 40px;
	height: 40px;
	top: 50%;
	margin-top: -20px;
	border-radius: 999px;
	border: 1px solid var(--lyor-nav-arrow-border);
	background: var(--lyor-nav-arrow-bg);
	color: var(--lyor-nav-arrow-color);
	transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.lyor-carousel-prev {
	left: 14px;
}

.lyor-carousel-next {
	right: 14px;
}

.lyor-carousel-prev::after,
.lyor-carousel-next::after {
	font-size: 14px;
	font-weight: 700;
	color: inherit;
}

.lyor-carousel-prev:hover,
.lyor-carousel-next:hover {
	border-color: var(--lyor-nav-arrow-hover-border);
	background: var(--lyor-nav-arrow-hover-bg);
	color: var(--lyor-nav-arrow-hover-color);
}

.lyor-carousel-pagination {
	position: absolute;
	left: 28px;
	right: 28px;
	bottom: 18px;
	display: flex;
	justify-content: center;
	gap: 8px;
	z-index: 10;
	width: auto;
}

.lyor-carousel-counter {
	position: absolute;
	right: 28px;
	bottom: 18px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	z-index: 10;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(245, 241, 234, 0.7);
	pointer-events: none;
}

.lyor-carousel-counter__current {
	color: #f5f1ea;
}

.lyor-carousel-counter__divider {
	color: rgba(245, 241, 234, 0.42);
}

.lyor-high-end-carousel-container .lyor-carousel-pagination.swiper-pagination-lock {
	display: inline-flex !important;
}

.lyor-high-end-carousel-container .swiper-pagination-bullet {
	width: 7px;
	height: 7px;
	min-width: 7px;
	min-height: 7px;
	border-radius: 999px !important;
	background: var(--lyor-bullet-color);
	opacity: 1;
	transition: width 0.28s ease, background-color 0.28s ease;
	border: none;
	box-shadow: none;
	margin: 0 !important;
}

.lyor-high-end-carousel-container .swiper-pagination-bullet-active,
.lyor-high-end-carousel-container .swiper-pagination-bullet-active-main,
.lyor-high-end-carousel-container .swiper-pagination-bullet-active-prev,
.lyor-high-end-carousel-container .swiper-pagination-bullet-active-next {
	width: 22px !important;
	min-width: 22px !important;
	height: 7px !important;
	min-height: 7px !important;
	border-radius: 999px !important;
	background: var(--lyor-bullet-active-color);
}

@media (max-width: 1024px) {
	.lyor-carousel-item {
		height: 400px;
	}

	.lyor-carousel-content {
		padding: 24px;
	}

	.lyor-carousel-intro {
		margin-bottom: 22px;
	}

	.lyor-carousel-title {
		max-width: 14ch;
		font-size: clamp(24px, 3.4vw, 30px);
	}

	.lyor-carousel-desc {
		max-width: 30ch;
	}
}

@media (max-width: 767px) {
	.lyor-carousel-item {
		height: 360px;
	}

	.lyor-carousel-content {
		padding: 22px;
	}

	.lyor-carousel-intro {
		margin-bottom: 18px;
	}

	.lyor-carousel-intro__title {
		font-size: clamp(26px, 9vw, 36px);
	}

	.lyor-carousel-intro__text {
		font-size: 14px;
	}

	.lyor-carousel-title {
		max-width: 100%;
		font-size: clamp(22px, 7.8vw, 28px);
	}

	.lyor-carousel-desc {
		max-width: 100%;
		font-size: 14px;
	}

	.lyor-carousel-prev,
	.lyor-carousel-next,
	.lyor-high-end-carousel-container .swiper-button-prev,
	.lyor-high-end-carousel-container .swiper-button-next {
		width: 36px;
		height: 36px;
		margin-top: -18px;
	}

	.lyor-carousel-prev {
		left: 10px;
	}

	.lyor-carousel-next {
		right: 10px;
	}

	.lyor-carousel-pagination {
		left: 20px;
		right: 20px;
		bottom: 14px;
	}

	.lyor-carousel-counter {
		right: 20px;
		bottom: 14px;
		font-size: 11px;
	}
}

.elementor-editor-active .lyor-high-end-carousel-container * {
	animation: none !important;
}
