.lyor-high-end-carousel-container {
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 100%;
	overflow-x: hidden;
	overflow-x: clip;
	overflow-y: visible;
	box-sizing: border-box;
	--lyor-card-bg: #111111;
	--lyor-placeholder-start: #1a1a1a;
	--lyor-placeholder-end: #2a2a2a;
	--lyor-overlay-from: rgba(0, 0, 0, 0.8);
	--lyor-overlay-mid: rgba(0, 0, 0, 0.2);
	--lyor-overlay-to: rgba(0, 0, 0, 0);
	--lyor-subtitle-color: #c5a059;
	--lyor-title-color: #ffffff;
	--lyor-desc-color: rgba(255, 255, 255, 0.8);
	--lyor-slide-arrow-color: #ffffff;
	--lyor-slide-arrow-bg: rgba(255, 255, 255, 0.1);
	--lyor-slide-arrow-hover-color: #ffffff;
	--lyor-slide-arrow-hover-bg: #c5a059;
	--lyor-nav-arrow-color: #ffffff;
	--lyor-nav-arrow-bg: rgba(0, 0, 0, 0.3);
	--lyor-nav-arrow-border: rgba(255, 255, 255, 0.2);
	--lyor-nav-arrow-hover-color: #c5a059;
	--lyor-nav-arrow-hover-bg: rgba(197, 160, 89, 0.2);
	--lyor-nav-arrow-hover-border: #c5a059;
	--lyor-bullet-color: rgba(255, 255, 255, 0.4);
	--lyor-bullet-active-color: #c5a059;
}

.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;
}

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


.lyor-high-end-carousel-container.lyor-carousel-auto .lyor-carousel-item {
	width: clamp(240px, 34vw, 520px);
	max-width: 100%;
}

.lyor-carousel-card {
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 100%;
	background: var(--lyor-card-bg);
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lyor-carousel-item:hover .lyor-carousel-card {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.lyor-carousel-image-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.lyor-carousel-image {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.lyor-carousel-item:hover .lyor-carousel-image {
	transform: scale(1.1);
}

.lyor-carousel-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, var(--lyor-overlay-from) 0%, var(--lyor-overlay-mid) 50%, var(--lyor-overlay-to) 100%);
	opacity: 0.8;
	transition: opacity 0.4s ease;
}

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

.lyor-carousel-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
	padding: 40px;
	z-index: 2;
	transform: translateY(20px);
	transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
	box-sizing: border-box;
}

.lyor-carousel-item:hover .lyor-carousel-content {
	transform: translateY(0);
}

.lyor-carousel-subtitle {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--lyor-subtitle-color);
	margin-bottom: 10px;
	font-weight: 600;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.4s ease 0.1s;
}

.lyor-carousel-item.swiper-slide-active .lyor-carousel-subtitle,
.lyor-carousel-item:hover .lyor-carousel-subtitle {
	opacity: 1;
	transform: translateY(0);
}

.lyor-carousel-title {
	font-size: 32px;
	color: var(--lyor-title-color);
	margin: 0 0 15px;
	line-height: 1.2;
	font-weight: 700;
}

.lyor-carousel-desc {
	font-size: 16px;
	color: var(--lyor-desc-color);
	margin-bottom: 20px;
	line-height: 1.6;
	max-width: 90%;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease 0.2s;
}

.lyor-carousel-item.swiper-slide-active .lyor-carousel-desc,
.lyor-carousel-item:hover .lyor-carousel-desc {
	opacity: 1;
	transform: translateY(0);
}

.lyor-carousel-arrow {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--lyor-slide-arrow-bg);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--lyor-slide-arrow-color);
	opacity: 0;
	transform: translateX(-20px);
	transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s;
}

.lyor-carousel-item:hover .lyor-carousel-arrow {
	opacity: 1;
	transform: translateX(0);
	color: var(--lyor-slide-arrow-hover-color);
	background: var(--lyor-slide-arrow-hover-bg);
}

.lyor-carousel-link-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	cursor: pointer;
}

/* Navigation Arrows - Swiper Standard Position */
.lyor-carousel-prev,
.lyor-carousel-next {
	width: 50px;
	height: 50px;
	border: 1px solid var(--lyor-nav-arrow-border);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: var(--lyor-nav-arrow-color);
	background: var(--lyor-nav-arrow-bg);
	backdrop-filter: blur(10px);
	z-index: 10;
}

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

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

/* Pagination Bullets */
.lyor-carousel-pagination {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
	width: auto;
}

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

.lyor-high-end-carousel-container .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	min-width: 10px;
	min-height: 10px;
	aspect-ratio: 1 / 1;
	display: inline-block;
	flex: 0 0 auto;
	border-radius: 50% !important;
	background: var(--lyor-bullet-color);
	opacity: 1;
	transition: all 0.3s ease;
	border: none;
	appearance: none;
	-webkit-appearance: none;
	box-shadow: none;
	line-height: 0;
	padding: 0;
}

.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: 10px !important;
	height: 10px !important;
	min-width: 10px !important;
	min-height: 10px !important;
	border-radius: 50% !important;
}

.lyor-high-end-carousel-container .swiper-pagination-bullet-active {
	background: var(--lyor-bullet-active-color);
	transform: scale(1.3);
}

/* Swiper Navigation Override */
.lyor-high-end-carousel-container .swiper-button-prev,
.lyor-high-end-carousel-container .swiper-button-next {
	color: var(--lyor-nav-arrow-color);
	width: 50px;
	height: 50px;
}
