.free-shipping-progress.fsp-horizontal {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    padding: 16px;
    font-size: 16px;
    gap: 12px;
}

.fsp-info-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 12px;
}

.fsp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.fsp-left,
.fsp-right {
    font-weight: 600;
    color: #333;
    min-width: 50px;
    text-align: center;
}

.fsp-bar-wrapper {
    flex: 1 1 auto;
}

.fsp-bar {
    width: 100%;
    height: 14px;
    background: #f2f2f2;
    border-radius: 20px;
    overflow: hidden;
}

.fsp-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #e461a3, #ff84c1);
    transition: width 0.5s ease;
}

.fsp-button-wrapper {
    flex: 0 0 auto;
}

/* Mobile – przycisk pod paskiem */
@media (max-width: 768px) {
    .fsp-row {
        flex-wrap: wrap;
        align-items: center;
    }

    .fsp-left,
    .fsp-right {
        flex: 0 0 auto;
        text-align: center;
    }

    .fsp-bar-wrapper {
        flex: 1 1 auto;
    }

    .fsp-button-wrapper {
        flex: 0 0 100%;
        text-align: center;
        margin-top: 10px;
    }
}