.afr-ship-progress {
    background: #e8f5e8;
    border: 1px solid var(--th-border-color);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 20px;
}

.afr-ship-progress--mini {
    margin: 0 0 15px 0;
    padding: 10px 14px;
}

.afr-ship-progress__msg {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.afr-ship-progress--mini .afr-ship-progress__msg {
    font-size: 12.5px;
    margin-bottom: 6px;
}

.afr-ship-progress__msg strong {
    color: #2f8a3e;
}

.afr-ship-progress__msg--free {
    color: #1c7c2e;
    font-weight: 600;
}

.afr-ship-progress__msg--free i {
    color: #1c7c2e;
    margin-right: 4px;
}

.afr-ship-progress__bar {
    width: 100%;
    height: 8px;
    background: #d9d9d9;
    border-radius: 6px;
    overflow: hidden;
}

.afr-ship-progress--mini .afr-ship-progress__bar {
    height: 6px;
}

.afr-ship-progress__fill {
    height: 100%;
    background: linear-gradient(90deg, #6fbf73, #2f8a3e);
    border-radius: 6px;
    transition: width 0.4s ease;
}

.afr-ship-progress--free {
    background: #eaf7ec;
    border-color: #bfe6c4;
}

.afr-ship-progress--free .afr-ship-progress__fill {
    background: #1c7c2e;
}