/* Adım İkonları Mobil Görünüm Düzeltmeleri */

/* Tüm ekran boyutları için temel stil */
.steps-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    flex-wrap: nowrap !important;
}

/* Mobil cihazlar için adım ikonları düzenlemeleri */
@media screen and (max-width: 767px) {
    /* Adım konteyneri */
    .steps-container {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 0.5rem !important;
        overflow-x: auto !important;
        padding: 1rem 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        scrollbar-width: none !important; /* Firefox */
        -webkit-overflow-scrolling: touch !important;
        margin: 0 auto !important;
        flex-wrap: nowrap !important;
    }
    
    .steps-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
    }
    
    /* Adım öğeleri */
    .step {
        flex: 1 1 auto !important;
        width: 19% !important;
        min-width: 60px !important;
        max-width: 80px !important;
        margin: 0 !important;
        padding: 0.5rem 0.25rem !important;
        text-align: center !important;
        background: transparent !important;
        box-shadow: none !important;
        display: inline-block !important;
        float: none !important;
        vertical-align: top !important;
    }
    
    /* Adım numarası */
    .step-number {
        font-size: 1.2rem;
        opacity: 0.6;
        margin-bottom: 0.5rem;
    }
    
    /* Adım ikonu */
    .step-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: #1a1a1a;
        color: #fff;
    }
    
    .step-icon i {
        font-size: 1.2rem;
    }
    
    /* Adım başlığı */
    .step h3 {
        font-size: 0.9rem;
        margin: 0;
        font-weight: 600;
    }
    
    /* Adımlar arasındaki çizgi */
    .step:not(:last-child)::after {
        content: "—";
        position: absolute;
        right: -15px;
        top: 25px;
        color: rgba(0, 0, 0, 0.3);
        font-weight: 300;
    }
}

/* RTL Desteği */
html[dir="rtl"] .steps-container {
    direction: ltr; /* Adımların sırası değişmesin */
}

html[dir="rtl"] .step h3 {
    direction: rtl; /* Başlıklar RTL olsun */
}
