/*.swiper-body {
	position: relative;
	height: 100%;
	overflow: hidden;
	margin: 0;
	padding: 0;
}*/

.swiper-body {
    position: relative;
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row-reverse;
}

.swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	/*background: #fff;*/

	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper {
	width: 100%;
	height: 300px;
	margin-left: auto;
	margin-right: auto;
}

.swiper-slide {
	background-size: cover;
	background-position: center;
}

/*.carousel-swiper {
	height: 600px;
	width: 100%;
}*/

/*.thumbnail-swiper {
	height: 135px;
	box-sizing: border-box;
	padding: 10px 0;
}*/

.elementor .carousel-swiper {
    height: auto;
    /*width: calc(100% - 120px);*/
    overflow: hidden;
}

@media all and (max-width:1024px){
	.elementor .carousel-swiper {
		height: auto;
		width: 100%;
		overflow: hidden;
	}
}

@media all and (max-width:768px){
	.elementor .carousel-swiper {
		height: auto;
		width: 100%;
		overflow: hidden;
	}
}

.elementor .thumbnail-swiper {
	width: 120px;
    height: 500px;
    box-sizing: border-box;
	margin: 0 0 0 0;
}

.elementor .thumbnail-swiper .swiper-wrapper {
	flex-direction: column !important;
}

/* Masquer thumbnails et flèches pour une seule image */
.single-image .thumbnail-swiper {
	display: none !important;
}

.single-image .carousel-swiper {
	width: 100% !important;
}

.single-image .swiper-button-prev,
.single-image .swiper-button-next {
	display: none !important;
}

@media all and (max-width:1024px){
.elementor .thumbnail-swiper {
	display: none;
}
}

.elementor .thumbnail-swiper .swiper-slide {
	width: 100%;
	height: 100px;
	margin-bottom: 8px;
	opacity: 0.3;
	transition: opacity 0.2s ease;
	overflow: hidden;
	cursor: pointer;
}

.elementor .thumbnail-swiper .swiper-slide-thumb-active {
	opacity: 1;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.elementor .thumbnail-swiper .swiper-slide:hover {
	opacity: 0.6;
}

.elementor .carousel-swiper .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
.elementor .thumbnail-swiper .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}



/* ==========================================================================
   SUBTLE NAVIGATION ARROWS
   ========================================================================== */

.swiper-button-disabled {
	opacity: 0 !important;
	pointer-events: none;
}

.swiper-button-prev, .swiper-button-next {
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 10;
}

/* Simple White Circle Design */
.swiper-button-prev {
	left: 20px !important;
	background: rgba(255, 255, 255, 0.8) !important;
	border-radius: 50% !important;
	width: 40px !important;
	height: 40px !important;
	background-image: none !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-prev::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-30%, -50%) rotate(45deg);
	width: 6px;
	height: 6px;
	border-left: 1px solid #666;
	border-bottom: 1px solid #666;
}

.swiper-button-next {
	right: 20px !important;
	background: rgba(255, 255, 255, 0.8) !important;
	border-radius: 50% !important;
	width: 40px !important;
	height: 40px !important;
	background-image: none !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-next::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-70%, -50%) rotate(-135deg);
	width: 6px;
	height: 6px;
	border-left: 1px solid #666;
	border-bottom: 1px solid #666;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	content: '' !important;
}

/* Hover States */
.carousel-swiper:hover .swiper-button-prev,
.carousel-swiper:hover .swiper-button-next {
	opacity: 1;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	background: rgba(255, 255, 255, 0.9) !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.swiper-button-prev:hover::before,
.swiper-button-next:hover::before {
	border-color: #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.swiper-button-prev, .swiper-button-next {
		width: 36px !important;
		height: 36px !important;
	}

	.swiper-button-prev::before,
	.swiper-button-next::before {
		width: 5px;
		height: 5px;
	}
}

@media (max-width: 768px) {
	.swiper-button-prev, .swiper-button-next {
		width: 32px !important;
		height: 32px !important;
		opacity: 0.7;
	}

	.carousel-swiper:hover .swiper-button-prev,
	.carousel-swiper:hover .swiper-button-next {
		opacity: 1;
	}

	.swiper-button-prev::before,
	.swiper-button-next::before {
		width: 4px;
		height: 4px;
	}
}

