/* Discount progress bar injected into bundle */
.discount-progress-bar {
    margin: 1rem 0;
    padding: 0 0.5rem;
}

.discount-progress-bar .progress-milestones {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.discount-progress-bar .progress-line {
    position: absolute;
    top: 1.25rem;
    left: 0;
    right: 0;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    z-index: 0;
}

.discount-progress-bar .progress-fill {
    height: 100%;
    background: #f2ad40;
    border-radius: 2px;
    transition: width 0.25s ease;
}

.discount-progress-bar .milestone {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.discount-progress-bar .milestone-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background-color 0.2s;
}

.discount-progress-bar .milestone-circle span {
    font-size: 0.65rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    color: #6b7280;
}

.discount-progress-bar .milestone-circle.active {
    border-color: #f2ad40;
    background: #fef3e2;
}

.discount-progress-bar .milestone-circle.active span {
    color: #b45309;
}