/* ============================================================
   Widget: CO2e Comparison (stil ELHO)
   ============================================================ */

.co2e-box {
	--co2e-accent: #5A8A2C;
	--co2e-text: #2B2B2B;
	background: #EAF1E0;
	border-radius: 12px;
	padding: 22px 24px;
	box-sizing: border-box;
}

.co2e-box__head {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 4px;
}

.co2e-box__title {
	font-size: 20px;
	font-weight: 700;
	color: var(--co2e-text);
	line-height: 1.2;
}

.co2e-box__subtitle {
	margin: 0 0 18px;
	font-size: 13px;
	color: #7A7A7A;
	line-height: 1.4;
}

/* ---- randuri ---- */
.co2e-rows {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.co2e-row__top {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 6px;
}

.co2e-row__icon {
	flex: 0 0 auto;
	color: var(--co2e-accent);
	display: inline-flex;
	align-items: center;
}

.co2e-row__label {
	flex: 1 1 auto;
	font-size: 15px;
	color: var(--co2e-text);
	line-height: 1.2;
}

.co2e-row.is-product .co2e-row__label {
	font-weight: 700;
}

.co2e-row__value {
	flex: 0 0 auto;
	font-size: 14px;
	color: #6E6E6E;
	white-space: nowrap;
}

/* ---- bara de progres ---- */
.co2e-row__bar {
	position: relative;
	width: 100%;
	height: 5px;
	background: rgba(0,0,0,0.08);
	border-radius: 100px;
	overflow: hidden;
}

.co2e-row__fill {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	background: var(--co2e-accent);
	border-radius: 100px;
	transition: width 0.4s ease;
}

/* produsul: bara putin mai groasa/vizibila */
.co2e-row.is-product .co2e-row__bar {
	height: 6px;
}
