/* Smart Exchange Product Evaluator - Frontend Styles (RTL) */

.sepe-estimate-card {
	background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
	border: 1px solid #ff9f1c;
	border-radius: 8px;
	padding: 20px;
	margin: 15px 0;
	text-align: center;
}

.sepe-estimate-label {
	font-size: 13px;
	color: #92400e;
	margin-bottom: 5px;
}

.sepe-estimate-value {
	font-size: 32px;
	font-weight: 800;
	color: #92400e;
	line-height: 1;
}

.sepe-estimate-unit {
	font-size: 14px;
	color: #92400e;
	margin-right: 5px;
}

.sepe-estimate-disclaimer {
	font-size: 11px;
	color: #78716c;
	margin-top: 10px;
	line-height: 1.4;
}

.sepe-step-indicator {
	display: flex;
	justify-content: space-between;
	margin: 20px 0;
	position: relative;
}

.sepe-step-indicator::before {
	content: '';
	position: absolute;
	top: 18px;
	right: 5%;
	left: 5%;
	height: 2px;
	background: #e5e7eb;
	z-index: 0;
}

.sepe-step {
	position: relative;
	z-index: 1;
	text-align: center;
	flex: 1;
}

.sepe-step-num {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #e5e7eb;
	color: #6b7280;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 8px;
	font-weight: 700;
	font-size: 14px;
	transition: all 0.3s;
}

.sepe-step.active .sepe-step-num {
	background: #ff9f1c;
	color: white;
}

.sepe-step.completed .sepe-step-num {
	background: #10b981;
	color: white;
}

.sepe-step-label {
	font-size: 11px;
	color: #6b7280;
}

.sepe-step.active .sepe-step-label,
.sepe-step.completed .sepe-step-label {
	color: #1f2937;
	font-weight: 600;
}

.sepe-progress-bar {
	background: #e5e7eb;
	height: 6px;
	border-radius: 3px;
	overflow: hidden;
	margin: 10px 0;
}

.sepe-progress-fill {
	background: linear-gradient(90deg, #1f3b57, #ff9f1c);
	height: 100%;
	transition: width 0.3s ease;
}

.sepe-field-hint {
	font-size: 12px;
	color: #6b7280;
	margin-top: 5px;
	padding-right: 10px;
	border-right: 2px solid #ff9f1c;
	background: #fffbeb;
	padding: 8px 12px;
	border-radius: 4px;
	margin-top: 8px;
}
