.ks-comp-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #f0f0f0;
}

.ks-comp-images {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
}

.ks-comp-img {
	width: 50%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: opacity 0.5s ease;
}

.ks-comp-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}

.ks-comp-wrapper .ks-img-left { opacity: 1; }
.ks-comp-wrapper .ks-img-right { opacity: 0.4; }

.ks-comp-wrapper.is-active .ks-img-left { opacity: 0.4; }
.ks-comp-wrapper.is-active .ks-img-right { opacity: 1; }

.ks-comp-content {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center; 
	align-items: center;
	padding: 30px;
	box-sizing: border-box;
	pointer-events: none; 
}

.ks-comp-header {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
	pointer-events: auto;
	text-align: center;
}

.ks-comp-title {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
}

.ks-comp-switch {
	width: 60px;
	height: 34px;
	border-radius: 34px;
	position: relative;
	cursor: pointer;
	transition: background-color 0.3s;
	flex-shrink: 0;
}

.ks-comp-switch-handle {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	position: absolute;
	top: 4px;
	left: 4px;
	transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.ks-comp-wrapper.is-active .ks-comp-switch-handle {
	transform: translateX(26px);
}

.ks-comp-stack {
	display: flex;
	flex-direction: column;
	gap: 10px;
	pointer-events: auto;
	width: 100%;
	align-items: center;
}

.ks-comp-row {
	display: flex;
	gap: 15px;
	align-items: center;
	justify-content: center;
}

.ks-comp-chip {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 15px;
	font-weight: 600;
	font-size: 14px;
	transition: opacity 0.5s ease;
	white-space: nowrap;
}

.ks-comp-chip i, 
.ks-comp-chip svg {
	width: 14px;
	height: 14px;
}

.ks-comp-wrapper .ks-comp-chip.is-left { opacity: 1; }
.ks-comp-wrapper .ks-comp-chip.is-right { opacity: 0.4; }

.ks-comp-wrapper.is-active .ks-comp-chip.is-left { opacity: 0.4; }
.ks-comp-wrapper.is-active .ks-comp-chip.is-right { opacity: 1; }