.isl-slideshow {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
	overflow: hidden;
	border-radius: var(--isl-radius, 8px);
}

.isl-slideshow__track {
	display: flex;
	transition: transform 0.5s ease;
	will-change: transform;
}

.isl-slideshow__slide {
	flex: 0 0 100%;
	max-width: 100%;
	cursor: zoom-in;
}

.isl-slideshow__slide img {
	display: block;
	width: 100%;
	height: var(--isl-height, 420px);
	object-fit: cover;
}

.isl-slideshow__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	border: none;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
	transition: background 0.2s ease;
	padding: 0;
}

.isl-slideshow__arrow:hover {
	background: rgba(0, 0, 0, 0.7);
}

.isl-slideshow__arrow--prev {
	left: 14px;
}

.isl-slideshow__arrow--next {
	right: 14px;
}

.isl-slideshow__dots {
	position: absolute;
	bottom: 14px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 8px;
	z-index: 5;
	margin: 0;
	padding: 0;
}

.isl-slideshow__dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.55);
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.isl-slideshow__dot.is-active {
	background: #fff;
	transform: scale(1.25);
}

/* Lightbox */
.isl-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.9);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 999999;
	padding: 24px;
	cursor: zoom-out;
}

.isl-lightbox.is-open {
	display: flex;
}

.isl-lightbox__img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
	animation: isl-lightbox-in 0.2s ease;
}

@keyframes isl-lightbox-in {
	from { opacity: 0; transform: scale(0.96); }
	to { opacity: 1; transform: scale(1); }
}

.isl-lightbox__close {
	position: absolute;
	top: 20px;
	right: 28px;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 34px;
	line-height: 1;
	cursor: pointer;
}

.isl-lightbox__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border: none;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	font-size: 22px;
	cursor: pointer;
}

.isl-lightbox__arrow--prev { left: 24px; }
.isl-lightbox__arrow--next { right: 24px; }
