/* ═══════════════════════════════════════════════════════════════
   All Brands 11th Free — My Account Frontend Styles
   ═══════════════════════════════════════════════════════════════
   These are intentionally minimal so they inherit your theme's
   colours and typography. Override anything here in your child
   theme's style.css if needed.
   ═══════════════════════════════════════════════════════════════ */

/* ── Page intro ───────────────────────────────────────────────── */
.abf-progress-page h2 {
	margin-bottom: 6px;
}

.abf-progress-intro {
	color: #555;
	margin-bottom: 28px;
	font-size: 0.95em;
}

/* ── Empty state ──────────────────────────────────────────────── */
.abf-progress-empty p {
	background: #f8f8f8;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 20px;
	color: #555;
}

/* ── Brand block ──────────────────────────────────────────────── */
.abf-brand-block {
	margin-bottom: 36px;
}

.abf-brand-title {
	font-size: 1.1em;
	font-weight: 700;
	border-bottom: 2px solid #e0e0e0;
	padding-bottom: 8px;
	margin-bottom: 16px;
}

/* ── Product rows ─────────────────────────────────────────────── */
.abf-product-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.abf-product-row {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

/* ── Product name + variation ─────────────────────────────────── */
.abf-product-info {
	min-width: 200px;
	flex: 0 0 220px;
}

.abf-product-name {
	display: block;
	font-weight: 600;
	font-size: 0.9em;
	line-height: 1.3;
}

.abf-variation {
	display: block;
	font-size: 0.82em;
	color: #777;
	margin-top: 2px;
}

/* ── Progress bar area ────────────────────────────────────────── */
.abf-progress-wrap {
	flex: 1;
	min-width: 200px;
}

.abf-progress-track {
	position: relative;
	background: #e8e8e8;
	border-radius: 8px;
	height: 14px;
	overflow: visible;
	margin-bottom: 6px;
}

.abf-progress-fill {
	background: #2c7be5;
	height: 100%;
	border-radius: 8px;
	transition: width 0.4s ease;
	position: relative;
	z-index: 1;
}

/* Tick marks at each step */
.abf-tick {
	position: absolute;
	top: 0;
	width: 2px;
	height: 100%;
	background: rgba(255, 255, 255, 0.5);
	z-index: 2;
	transform: translateX(-50%);
}

/* ── Progress labels ──────────────────────────────────────────── */
.abf-progress-labels {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
}

.abf-progress-count {
	font-size: 0.85em;
	color: #333;
}

.abf-total-free {
	font-size: 0.8em;
	color: #777;
	font-style: italic;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media ( max-width: 600px ) {
	.abf-product-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.abf-product-info {
		flex: unset;
		min-width: unset;
	}

	.abf-progress-wrap {
		width: 100%;
	}
}
