/**
 * Pretpot Progress Bar Style 1 Styles
 *
 * @package Pretpot_Massive_Addons_Kit_For_Elementor
 */

.pretpot-progress-bar-wrapper {
	display: block;
	width: 100%;
}

.pretpot-progress-bar-container {
	display: inline-flex;
	flex-direction: column;
	width: 100%;
}

/* Top Text Layout */
.pretpot-progress-bar-top-text-wrapper {
	width: 100%;
	margin-bottom: 8px;
	text-align: inherit;
}

.pretpot-progress-bar-top-text {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	line-height: 1.2;
}

.pretpot-progress-bar-top-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.pretpot-progress-bar-top-icon svg,
.pretpot-progress-bar-top-icon i {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

/* Main row containing percentage and track */
.pretpot-progress-bar-main-row {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
}

/* Percentage Text - always left */
.pretpot-progress-bar-percentage {
	font-weight: 600;
	flex-shrink: 0;
	white-space: nowrap;
	order: 0;
}

/* Progress Track */
.pretpot-progress-bar-track {
	flex: 1;
	position: relative;
	background-color: #e0e0e0;
	overflow: hidden;
	min-width: 50px;
	height: 8px;
	border-radius: 10px;
	order: 1;
}

/* Progress Fill */
.pretpot-progress-bar-fill {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: #4ade80;
	will-change: width;
	transform: translateZ(0);
	border-radius: 10px;
}

/* Bottom Text - always below track */
.pretpot-progress-bar-bottom-text-wrapper {
	width: 100%;
	margin-top: 8px;
	text-align: center;
	order: 2;
}

.pretpot-progress-bar-bottom-text {
	display: inline-block;
	line-height: 1.4;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
	.pretpot-progress-bar-fill {
		transition: none !important;
	}
}