/* ============================================================
   PROGRESS BAR — append to bottom of add-product.css
   ============================================================ */

.analysis-progress {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.3rem 0;
}

.analysis-progress-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.analysis-progress-bar-wrap {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 100px;
    overflow: hidden;
}

.analysis-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--burnt), var(--amber));
    border-radius: 100px;
    transition: width 0.1s linear, background 0.4s ease;
}

.analysis-progress-sub {
    font-size: 0.72rem;
    color: var(--text-dim);
    text-align: center;
    letter-spacing: 0.04em;
}
