.clc-carousel-wrapper {
	position: relative;
	width: 100%;
}

.clc-carousel-wrapper .swiper {
	width: 100%;
	overflow: hidden;
}

.clc-carousel-wrapper .swiper-slide {
	height: auto;
	display: flex;
	position: relative;
	overflow: hidden;
}

.clc-slide-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	transition: transform 0.4s ease;
	will-change: transform;
}

.clc-slide-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

.clc-slide-content {
	position: relative;
	z-index: 2;
	width: 100%;
}

.clc-empty-notice {
	padding: 20px;
	background: #fff3cd;
	border: 1px solid #ffe69c;
	color: #664d03;
	border-radius: 4px;
	font-size: 14px;
}

/* Flechas de navegación */
.clc-nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.clc-nav-btn:hover {
	opacity: 0.8;
}

.clc-nav-btn.clc-prev {
	left: 10px;
}

.clc-nav-btn.clc-next {
	right: 10px;
}

.clc-nav-btn.swiper-button-disabled {
	opacity: 0.3;
	cursor: default;
	pointer-events: none;
}

/* Paginación */
.clc-pagination {
	position: relative;
	margin-top: 16px;
	text-align: center;
}

.clc-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	margin: 0 4px;
}
