.dpwc-progress-bar-wrapper {
	width: 100%;
	max-width: 100%;
	margin: 24px 0;
	font-family: inherit;
	box-sizing: border-box;
}

.dpwc-progress-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	font-size: 14px;
}

.dpwc-current-discount {
	font-weight: 700;
	color: #1b7f3c;
}

.dpwc-next-hint {
	color: #444;
}

.dpwc-progress-track {
	position: relative;
	height: 10px;
	background: #e7e7e7;
	border-radius: 6px;
	margin: 0 10px 46px 10px;
}

.dpwc-progress-fill {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: linear-gradient(90deg, #87ceeb, #005555);
	border-radius: 6px;
	transition: width 0.5s ease;
}

.dpwc-progress-marker {
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.dpwc-marker-dot {
	display: block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid #bbb;
	margin: 0 auto;
	box-sizing: border-box;
	transition: border-color 0.3s ease, background 0.3s ease;
}

.dpwc-marker-reached .dpwc-marker-dot {
	border-color: #1b7f3c;
	background: #1b7f3c;
}

.dpwc-marker-label {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	font-size: 12px;
	color: #333;
	line-height: 1.3;
}

.dpwc-marker-reached .dpwc-marker-label {
	color: #1b7f3c;
	font-weight: 700;
}

.dpwc-marker-label small {
	font-weight: 400;
	color: #777;
}

.dpwc-progress-footer {
	font-size: 13px;
	color: #666;
	text-align: right;
}

/* Precio tachado */
.dpwc-price-wrap del {
	opacity: 0.6;
	margin-right: 6px;
}
.dpwc-price-wrap ins {
	text-decoration: none;
	color: #1b7f3c;
	font-weight: 700;
}

/* Admin */
.dpwc-tiers-table th,
.dpwc-tiers-table td {
	padding: 10px;
}
.dpwc-admin-wrap .dpwc-tiers-table {
	max-width: 700px;
	margin-bottom: 10px;
}
