.fotogenic-modal--featured .fotogenic-ai-progress__bar {
    height: 12px;
    border-radius: var(--fa-radius-pill);
    background: #f1f5f9;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.fotogenic-modal--featured .fotogenic-ai-progress__bar span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.92) 0%, rgba(18, 18, 18, 1) 100%);
    transition: transform 0.2s ease;
    min-width: 0;
}

.fotogenic-modal--featured .fotogenic-ai-progress__bar.is-finishing span {
    background-image: linear-gradient(
        90deg,
        rgba(17, 24, 39, 0.9) 0%,
        rgba(18, 18, 18, 1) 35%,
        rgba(75, 85, 99, 0.92) 50%,
        rgba(18, 18, 18, 1) 65%,
        rgba(17, 24, 39, 0.9) 100%
    );
    background-size: 200% 100%;
    animation: fotogenic-ai-progress-shimmer 1.6s linear infinite;
}

.fotogenic-modal--featured .fotogenic-ai-progress__bar span.is-zero {
    opacity: 0;
}

.fotogenic-modal--featured .fotogenic-ai-progress__label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 8px;
    padding-top: 2px;
    font-size: 7px;
    font-weight: 600;
    color: #111827;
    text-shadow: none;
    pointer-events: none;
    line-height: 1;
}

.fotogenic-modal--featured .fotogenic-ai-step--generating .fotogenic-ai-progress__label {
    inset: auto 0 0 0;
    top: 100%;
    margin-top: 6px;
    padding-left: 0;
    justify-content: center;
    font-size: 11px;
    color: var(--fa-color-text-muted);
}

.fotogenic-modal--featured .fotogenic-ai-progress__meta {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    color: var(--fa-color-text-muted);
    font-size: 12px;
}

.fotogenic-modal--featured .fotogenic-ai-error {
    margin-top: 8px;
    color: var(--fa-color-error);
    font-size: 12px;
}

.fotogenic-modal--featured .fotogenic-ai-step--generating .fotogenic-ai-progress__bar {
    height: 14px;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.12);
    position: relative;
    width: 100%;
}

.fotogenic-modal--featured .fotogenic-ai-step--generating .fotogenic-ai-progress__bar span {
    width: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(31, 41, 55, 0.92), rgba(18, 18, 18, 1));
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.fotogenic-modal--featured .fotogenic-ai-step--generating .fotogenic-ai-progress__bar span.is-zero {
    opacity: 0;
}

.fotogenic-modal--featured .fotogenic-ai-step--generating .fotogenic-ai-progress__meta {
    display: none;
}
