.iss-slider-container-8d163540 {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.iss-swiper-8d163540 {
	width: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
}

/* Custom Smooth Transition System */
.iss-swiper-8d163540 .swiper-wrapper {
	transition-timing-function: var(--iss-transition-easing, cubic-bezier(0.25, 1, 0.5, 1));
}

.iss-slide-8d163540 {
	/* The slide wrapper handles the 3D positioning */
	transition: opacity var(--iss-transition-speed, 600ms) var(--iss-transition-easing, cubic-bezier(0.25, 1, 0.5, 1));
	will-change: opacity, transform;
}

.iss-slide-inner {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	background: #fff;
	/* The inner handles the smooth scaling */
	transition: transform var(--iss-transition-speed, 600ms) var(--iss-transition-easing, cubic-bezier(0.25, 1, 0.5, 1)), 
				filter var(--iss-transition-speed, 600ms) var(--iss-transition-easing, cubic-bezier(0.25, 1, 0.5, 1));
	will-change: transform, filter;
	transform-origin: center center;
	display: block; /* Ensure it behaves like a block element if it's an anchor */
	text-decoration: none; /* Remove default link styling */
	color: inherit; /* Inherit text color */
}

/* Hover overlay for clickable slides */
.iss-slide-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	opacity: 0;
	transition: opacity 0.3s ease, background-color 0.3s ease;
	z-index: 1; /* Above image and content background, below interactive elements */
	pointer-events: none; /* Don't block clicks to the inner anchor */
}

.iss-img-wrapper {
	position: relative;
	width: 100%;
	height: 300px; /* Base height, controlled by Elementor */
	overflow: hidden; /* CRITICAL: Prevents zoom from spilling out or shifting layout */
	z-index: 0;
}

.iss-img {
	width: 100%;
	height: 100%; /* Fill the wrapper */
	object-fit: cover;
	display: block;
	transform-origin: center center; /* CRITICAL: Ensures zoom is perfectly centered */
	transition-property: transform, filter, opacity;
	transition-timing-function: ease;
	will-change: transform, filter, opacity; /* GPU Acceleration */
}

/* ==================================================
   IMAGE HOVER ANIMATION SYSTEM
   ================================================== */
   
/* Variables */
.iss-slider-container-8d163540 {
	--iss-hover-scale: 1.1;
	--iss-hover-intensity: 1.1;
	--iss-hover-brightness: 1.2;
	--iss-hover-opacity: 0.8;
}

/* 1. Zoom In */
.iss-hover-anim-zoom-in .iss-slide-inner:hover .iss-img {
	transform: scale(var(--iss-hover-scale));
}

/* 2. Zoom Out */
.iss-hover-anim-zoom-out .iss-img {
	transform: scale(var(--iss-hover-scale)); /* Start zoomed */
}
.iss-hover-anim-zoom-out .iss-slide-inner:hover .iss-img {
	transform: scale(1);
}

/* 3. Flash */
.iss-img-flash-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.5);
	opacity: 0;
	pointer-events: none;
	z-index: 1;
	transition: opacity 0.5s ease;
}
.iss-hover-anim-flash .iss-slide-inner:hover .iss-img-flash-overlay {
	opacity: 1;
	animation: iss-flash-anim 0.5s ease;
}
@keyframes iss-flash-anim {
	0% { opacity: 0; }
	50% { opacity: 0.6; }
	100% { opacity: 0; }
}

/* 4. Shine */
.iss-img-shine-overlay {
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
	transform: skewX(-25deg);
	pointer-events: none;
	z-index: 1;
	transition: all 0.5s ease;
}
.iss-hover-anim-shine .iss-slide-inner:hover .iss-img-shine-overlay {
	left: 150%;
	transition: left 0.7s ease;
}

/* 5. Fade */
.iss-hover-anim-fade .iss-slide-inner:hover .iss-img {
	opacity: var(--iss-hover-opacity);
}

/* 6. Blur In */
.iss-hover-anim-blur-in .iss-slide-inner:hover .iss-img {
	filter: blur(calc(3px * var(--iss-hover-intensity)));
}

/* 7. Blur Out */
.iss-hover-anim-blur-out .iss-img {
	filter: blur(calc(3px * var(--iss-hover-intensity)));
}
.iss-hover-anim-blur-out .iss-slide-inner:hover .iss-img {
	filter: blur(0);
}

/* 8. Grayscale To Color */
.iss-hover-anim-grayscale-to-color .iss-img {
	filter: grayscale(100%);
}
.iss-hover-anim-grayscale-to-color .iss-slide-inner:hover .iss-img {
	filter: grayscale(0%);
}

/* 9. Color To Grayscale */
.iss-hover-anim-color-to-grayscale .iss-slide-inner:hover .iss-img {
	filter: grayscale(100%);
}

/* 10. Brightness Increase */
.iss-hover-anim-brightness-increase .iss-slide-inner:hover .iss-img {
	filter: brightness(var(--iss-hover-brightness));
}

/* 11. Parallax Zoom */
.iss-hover-anim-parallax-zoom .iss-slide-inner:hover .iss-img {
	transform: scale(var(--iss-hover-scale)) translateY(calc(-5px * var(--iss-hover-intensity)));
}

/* 12. Scale + Fade */
.iss-hover-anim-scale-fade .iss-slide-inner:hover .iss-img {
	transform: scale(var(--iss-hover-scale));
	opacity: var(--iss-hover-opacity);
}

/* 13. Scale + Shadow */
.iss-hover-anim-scale-shadow .iss-slide-inner:hover .iss-img {
	transform: scale(var(--iss-hover-scale));
}
.iss-hover-anim-scale-shadow .iss-slide-inner:hover .iss-img-wrapper {
	box-shadow: inset 0 0 calc(20px * var(--iss-hover-intensity)) rgba(0,0,0,0.5);
}

/* 14. Lift Up */
.iss-hover-anim-lift-up .iss-slide-inner:hover .iss-img {
	transform: translateY(calc(-10px * var(--iss-hover-intensity)));
}

/* 15. Ken Burns */
.iss-hover-anim-ken-burns .iss-slide-inner:hover .iss-img {
	transform: scale(var(--iss-hover-scale)) translate(calc(-2% * var(--iss-hover-intensity)), calc(-2% * var(--iss-hover-intensity)));
}

/* 16. Reveal */
.iss-hover-anim-reveal .iss-img {
	transform: scale(1.1);
	opacity: 0;
}
.iss-hover-anim-reveal .iss-slide-inner:hover .iss-img {
	transform: scale(1);
	opacity: 1;
}

/* 17. Pulse */
@keyframes iss-pulse-anim {
	0% { transform: scale(1); }
	50% { transform: scale(calc(1 + (0.05 * var(--iss-hover-intensity)))); }
	100% { transform: scale(1); }
}
.iss-hover-anim-pulse .iss-slide-inner:hover .iss-img {
	animation: iss-pulse-anim 1s infinite ease-in-out;
}

/* 18. Glow */
.iss-hover-anim-glow .iss-slide-inner:hover .iss-img {
	filter: drop-shadow(0 0 calc(10px * var(--iss-hover-intensity)) rgba(255,255,255,0.8));
}

/* 19. Tilt */
.iss-hover-anim-tilt .iss-slide-inner:hover .iss-img {
	transform: scale(1.05) rotate(calc(2deg * var(--iss-hover-intensity)));
}

/* 20. Soft Float */
.iss-hover-anim-soft-float .iss-slide-inner:hover .iss-img {
	transform: translateY(calc(-5px * var(--iss-hover-intensity))) scale(1.02);
}


/* Content Area Layout */
.iss-slide-content {
	padding: 30px;
	position: relative;
	z-index: 2; /* Ensure content is above the hover overlay */
}

.iss-content-wrapper {
	display: flex;
	flex-direction: row;
	gap: 20px;
	justify-content: space-between;
	align-items: center;
}

.iss-content-left {
	flex: 1 1 auto;
	min-width: 0; /* Prevent flex blowout */
}

.iss-content-right {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-end; /* Align elements to the right internally */
	gap: 15px;
	min-width: 120px;
}

/* Stacked Layout Modifier */
.iss-slider-container-8d163540[data-layout="stacked"] .iss-content-wrapper {
	flex-direction: column;
	align-items: flex-start;
}
.iss-slider-container-8d163540[data-layout="stacked"] .iss-content-right {
	align-items: flex-start;
	width: 100%;
}
.iss-slider-container-8d163540[data-layout="stacked"] .iss-price-wrap {
	justify-content: flex-start;
}

/* Mobile Responsive Layout */
@media (max-width: 767px) {
	.iss-content-wrapper {
		flex-direction: column;
		align-items: flex-start;
	}
	.iss-content-right {
		align-items: flex-start;
		width: 100%;
	}
	.iss-price-wrap {
		justify-content: flex-start !important;
	}
}

/* Price Display */
.iss-price-wrap {
	display: flex;
	align-items: baseline;
	gap: 10px;
	flex-wrap: wrap;
	width: 100%;
}

.iss-price {
	font-size: 22px;
	font-weight: bold;
	color: #333;
}

.iss-old-price {
	font-size: 16px;
	color: #999;
	text-decoration: line-through;
}

.iss-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: #ff5e5e;
	color: #fff;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 5px;
	z-index: 2;
}

.iss-badge svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.iss-category {
	color: #888;
	font-size: 14px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.iss-title {
	font-size: 24px;
	margin: 0 0 15px;
	color: #333;
}

.iss-desc {
	color: #666;
	margin-bottom: 20px;
	line-height: 1.6;
}

.iss-btn {
	display: inline-block;
	background: #333;
	color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s;
}

/* Secondary Button Specific defaults if needed */
.iss-btn-secondary {
	background: transparent;
	color: #333;
	border: 1px solid #ccc;
}

.swiper-pagination-bullet {
	transition: all 0.3s ease;
}