.bebanstore-sales-progress {
    margin: 15px 0;
    font-family: inherit;
}

.bebanstore-progress-bar {
    background-color: #f0f0f0;
    border-radius: 10px;
    height: 10px;
    overflow: hidden;
    position: relative;
}


.bebanstore-progress-text {
    text-align: right;
    margin-top: 8px;
    font-size: 11px;
    color: #666;
}


/* Responsive Design */
@media screen and (max-width: 480px) {
    .bebanstore-sales-progress {
        margin: 1em 0;
    }
    
    .bebanstore-progress-bar {
        height: 8px;
    }
    
    .bebanstore-progress-text {
        font-size: 0.85em;
    }
}

/* استایل خطی */
.bebanstore-progress-linear .bebanstore-progress-bar {
    height: 5px;
    background-color: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
}

.bebanstore-progress-linear .bebanstore-progress-fill {
    height: 100%;
    transition: width 0.3s ease;
}

/* استایل دایره‌ای */
.bebanstore-progress-circular {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.bebanstore-progress-circular .bebanstore-progress-bar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(var(--progress-color) 0% var(--progress), #f0f0f0 var(--progress) 100%);
    position: relative;
}

.bebanstore-progress-circular .bebanstore-progress-bar::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    background: #fff;
    border-radius: 50%;
    top: 5%;
    left: 5%;
}

.bebanstore-progress-circular .bebanstore-progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    margin-top: 0;
}

/* استایل نقطه‌ای */
.bebanstore-progress-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 10px 0;
}

.bebanstore-progress-dots .bebanstore-progress-bar {
    display: flex;
    gap: 5px;
}

.bebanstore-progress-dots .bebanstore-progress-fill {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #f0f0f0;
}

.bebanstore-progress-dots .bebanstore-progress-fill.active {
    background-color: var(--progress-color);
}

