.rs-29056-slider {
	position: relative;
	overflow: hidden;
	max-width: 100%;
	user-select: none;
	touch-action: pan-y;
}

.rs-29056-slides {
	display: flex;
	transition: transform 0.6s ease;
}

.rs-29056-slide {
	min-width: 100%;
	box-sizing: border-box;
}

.rs-29056-slide img {
	width: 100%;
	height: auto;
	max-width: 100%;
	display: block;
	object-fit: contain;
	object-position: center;
}

.rs-29056-prev, .rs-29056-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,0.1);
	border-radius: 50%;
	transition: background 0.3s ease;
}

.rs-29056-prev:hover, .rs-29056-next:hover {
	background: rgba(0,0,0,0.3);
}

.rs-29056-prev::before, .rs-29056-next::before {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transition: border-color 0.3s ease;
}

.rs-29056-prev::before {
	transform: rotate(-135deg);
	margin-left: 5px;
}

.rs-29056-next::before {
	transform: rotate(45deg);
	margin-right: 5px;
}

.rs-29056-prev { left: 10px; }
.rs-29056-next { right: 10px; }

.rs-29056-dots {
	position: absolute;
	bottom: 15px;
	width: 100%;
	text-align: center;
	z-index: 9;
}

.rs-29056-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 4px;
	border-radius: 50%;
	background-color: rgba(255,255,255,0.4);
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.rs-29056-dot.active {
	background-color: rgba(255,255,255,0.9);
}
