/* 마이숍 상품검색 진행 상태 */
.myshop-search-progress-simple {
    display: flex;
    justify-content: center;
    padding: 1.5rem 0.75rem;
}
.myshop-search-progress-panel {
    width: min(100%, 22.5rem);
}
.myshop-search-progress-label {
    min-height: 1.45em;
    margin: 0;
    overflow: hidden;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.myshop-search-progress-bar {
    position: relative;
    width: 100%;
    height: 6px;
    margin-top: 0.55rem;
    overflow: hidden;
    border-radius: 9999px;
    background: #e2e8f0;
}
.myshop-search-progress-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #22d3ee 0%, #06b6d4 45%, #0891b2 100%);
    transition: width 0.6s ease;
}
.myshop-search-progress-fill::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    animation: myshop-progress-shine 1.4s linear infinite;
}
.myshop-search-progress-condition {
    margin: 0.45rem 0 0;
    overflow: hidden;
    color: #94a3b8;
    font-size: 0.8rem;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@keyframes myshop-progress-shine {
    to { transform: translateX(100%); }
}
