/* نوار پیشرفت حداقل مبلغ خرید */
.wppm-progress-bar-container {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.wppm-progress-text {
    font-size: 15px;
    font-weight: 500;
    color: #495057;
    margin: 0 0 12px 0;
    text-align: center;
}
.wppm-progress-bar {
    background: #e9ecef;
    border-radius: 10px;
    height: 12px;
    overflow: hidden;
    position: relative;
}
.wppm-progress-bar-fill {
    background: linear-gradient(90deg, #0073aa, #00a0d2);
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease-in-out;
    position: relative;
}
.wppm-progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    animation: wppm-shimmer 2s infinite;
}
@keyframes wppm-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* پیام موفقیت رسیدن به حداقل مبلغ */
.wppm-progress-notice.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.wppm-progress-notice.success .dashicons {
    color: #28a745;
    font-size: 24px;
    width: 24px;
    height: 24px;
}