/* Process Steps Widget — 2ec192db */

.ps-2ec192db-wrapper {
	width: 100%;
	box-sizing: border-box;
}

/* ===== Navigation ===== */
.ps-2ec192db-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 32px;
	gap: 0;
}

.ps-2ec192db-nav-item {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.ps-2ec192db-nav-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	min-width: 48px;
	border: 2px solid transparent;
	background-color: #E8EAF0;
	color: #555;
	border-radius: 50%;
	cursor: pointer;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	outline: none;
	padding: 0;
	line-height: 1;
}

.ps-2ec192db-nav-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.ps-2ec192db-nav-btn.ps-2ec192db-active {
	background-color: #6366F1;
	color: #fff;
	box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

/* ===== Connector ===== */
.ps-2ec192db-connector {
	width: 60px;
	height: 3px;
	background-color: #E0E0E0;
	border-radius: 2px;
	overflow: hidden;
	position: relative;
	margin: 0 4px;
}

.ps-2ec192db-connector-fill {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: #6366F1;
	border-radius: 2px;
	transition: width 0.4s ease;
}

.ps-2ec192db-connector-fill.ps-2ec192db-filled {
	width: 100%;
}

/* ===== Content Panels ===== */
.ps-2ec192db-panels {
	position: relative;
	min-height: 200px;
	overflow: hidden;
}

.ps-2ec192db-content {
	display: none;
	background-color: #fff;
	padding: 30px;
	border-radius: 12px;
	animation: ps2ec192dbFadeIn 0.4s ease;
}

.ps-2ec192db-content.ps-2ec192db-visible {
	display: block;
}

@keyframes ps2ec192dbFadeIn {
	from { opacity: 0; transform: translateY(12px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* Step Number */
.ps-2ec192db-step-number {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #6366F1;
	margin-bottom: 12px;
}

/* Icon */
.ps-2ec192db-icon {
	font-size: 48px;
	line-height: 1;
	margin-bottom: 16px;
	color: #6366F1;
}

.ps-2ec192db-icon svg {
	width: 48px;
	height: 48px;
	fill: #6366F1;
}

/* Title */
.ps-2ec192db-title {
	font-size: 22px;
	font-weight: 700;
	color: #1A1A2E;
	margin: 0 0 12px;
	line-height: 1.3;
}

/* Description */
.ps-2ec192db-desc {
	font-size: 15px;
	line-height: 1.7;
	color: #6B7280;
	margin: 0 0 20px;
	max-width: 560px;
}

.ps-2ec192db-content[style*="text-align: center"] .ps-2ec192db-desc,
.ps-2ec192db-content .ps-2ec192db-desc {
	margin-left: auto;
	margin-right: auto;
}

/* CTA */
.ps-2ec192db-cta {
	display: inline-block;
	padding: 10px 24px;
	background-color: #6366F1;
	color: #fff;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.25s ease;
	margin-top: 4px;
}

.ps-2ec192db-cta:hover {
	background-color: #4F46E5;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* ===== Mobile Slider Controls ===== */
.ps-2ec192db-slider-controls {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 24px;
}

.ps-2ec192db-slider-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid #6366F1;
	background: transparent;
	color: #6366F1;
	cursor: pointer;
	transition: all 0.25s ease;
	padding: 0;
}

.ps-2ec192db-slider-arrow:hover {
	background-color: #6366F1;
	color: #fff;
}

.ps-2ec192db-slider-arrow:hover svg {
	fill: #fff;
}

.ps-2ec192db-slider-arrow svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.ps-2ec192db-slider-indicator {
	font-size: 14px;
	font-weight: 600;
	color: #555;
	min-width: 40px;
	text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
	.ps-2ec192db-nav {
		display: none;
	}

	.ps-2ec192db-slider-controls {
		display: flex;
	}

	.ps-2ec192db-content {
		padding: 24px 20px;
	}

	.ps-2ec192db-connector {
		width: 30px;
	}
}
