.mf-order-progress {
    max-width: 1000px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.mf-progress-header {
    background: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.mf-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.mf-header-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3338;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mf-support-link {
    font-size: 13px;
    color: #0073aa;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
    margin-left: auto;
}

.mf-support-link:hover {
    background: rgba(0, 115, 170, 0.1);
    color: #004e73;
}

.mf-progress-steps {
    padding: 40px 30px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.mf-progress-steps::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: #e0e0e0;
    transform: translateY(-50%);
    z-index: 1;
    margin: 0 60px;
}

.mf-step {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    min-width: 120px;
}

.mf-step-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 3px solid #e0e0e0;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    font-size: 20px;
    color: #6c757d;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mf-step.active .mf-step-icon {
    border-color: #0073aa;
    background: #0073aa;
    color: #fff;
    transform: scale(1.1);
}

.mf-step.completed .mf-step-icon {
    border-color: #00a32a;
    background: #00a32a;
    color: #fff;
}

.mf-step-label {
    font-size: 14px;
    font-weight: 500;
    color: #50575e;
    margin-top: 8px;
    line-height: 1.3;
}

.mf-step.active .mf-step-label {
    color: #0073aa;
    font-weight: 600;
}

.mf-step.completed .mf-step-label {
    color: #00a32a;
}

/* Progress bar için animasyon */
.mf-progress-steps::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 60px;
    height: 3px;
    background: #00a32a;
    transform: translateY(-50%);
    z-index: 1;
    transition: width 0.5s ease;
}

/* Alt bilgiler için grid düzeni */
.mf-order-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.mf-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mf-detail-icon {
    width: 40px;
    height: 40px;
    background: #e9ecef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #50575e;
    font-size: 18px;
}

.mf-detail-content {
    flex: 1;
}

.mf-detail-label {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 3px;
}

.mf-detail-value {
    font-size: 15px;
    color: #2c3338;
    font-weight: 500;
}

.mf-tracking-link {
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.mf-tracking-link:hover {
    color: #004e73;
}

.mf-support-link i {
    font-size: 14px;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .mf-progress-steps {
        padding: 30px 15px;
    }

    .mf-step {
        min-width: 80px;
    }

    .mf-step-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .mf-step-label {
        font-size: 12px;
    }

    .mf-progress-steps::before,
    .mf-progress-steps::after {
        margin: 0 40px;
    }

    .mf-order-details {
        grid-template-columns: 1fr;
    }

    .mf-header-content {
        padding: 0 10px;
    }

    .mf-header-title {
        font-size: 16px;
    }

    .mf-support-link {
        font-size: 12px;
        padding: 3px 6px;
    }
}

/* Progress steps ve order details arasına eklenecek */
.mf-info-message {
    padding: 10px 20px;
    /* Hafif padding */
    background: #f8f9fa;
    /* Arka plan rengi */
    border-top: 1px solid #e9ecef;
    /* Hafif üst sınır */
    color: #888;
    /* Daha yumuşak gri ton */
    font-size: 13px;
    /* Daha küçük font boyutu */
    display: flex;
    align-items: center;
    gap: 10px;
    /* İkon ve yazı arasında boşluk */
    border-radius: 4px;
    /* Hafif yuvarlatılmış köşeler */
}

.mf-info-message i {
    color: #0073aa;
    /* Mavi ikon rengi */
    font-size: 15px;
    /* Daha küçük ikon boyutu */
}

.mf-info-message span {
    line-height: 1.4;
    /* Daha okunaklı satır aralığı */
}

/* Responsive düzenleme */
@media (max-width: 768px) {
    .mf-info-message {
        padding: 8px 15px;
        /* Mobil için daha az padding */
        font-size: 12px;
        /* Daha küçük yazı boyutu */
    }

    .mf-info-message i {
        font-size: 14px;
        /* Daha küçük ikon */
    }
}