/* KS Free Shipping - Pasek progresu w koszyku */

.ks-fs-progress {
    margin: 16px 0 24px;
    padding: 16px 20px;
    border-radius: 8px;
    background: #f7f9fa;
    border: 1px solid #e3e8ec;
    font-size: 14px;
    line-height: 1.4;
}

.ks-fs-progress--inprogress {
    background: #fff8e6;
    border-color: #f5d97c;
}

.ks-fs-progress--reached {
    background: #e8f8ec;
    border-color: #7cc88f;
}

.ks-fs-progress__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
}

.ks-fs-progress--reached .ks-fs-progress__header {
    color: #1e7a3a;
}

.ks-fs-progress__icon {
    font-size: 20px;
    line-height: 1;
}

.ks-fs-progress__message {
    flex: 1;
}

.ks-fs-progress__bar {
    width: 100%;
    height: 10px;
    background: #ffffff;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid #d6dce0;
}

.ks-fs-progress__fill {
    height: 100%;
    background: linear-gradient(90deg, #f0a800 0%, #f5b922 100%);
    transition: width 0.4s ease;
    border-radius: 999px;
}

.ks-fs-progress--reached .ks-fs-progress__fill {
    background: linear-gradient(90deg, #2ea84a 0%, #43c466 100%);
}

.ks-fs-progress__stats {
    margin-top: 8px;
    text-align: right;
    font-size: 12px;
    color: #6c757d;
}

.ks-fs-progress__current {
    font-weight: 600;
    color: #2c3e50;
}

.ks-fs-progress--reached .ks-fs-progress__current {
    color: #1e7a3a;
}

.ks-fs-progress__separator {
    margin: 0 4px;
    color: #adb5bd;
}

@media (max-width: 480px) {
    .ks-fs-progress {
        padding: 12px 14px;
    }
    .ks-fs-progress__header {
        font-size: 13px;
    }
}
