/* =============================================================================
 * Sipariş Takip (public) component CSS
 * /siparis-takip - sipariş no + telefon son 4 hane sorgulama
 * Inline style yasak (feedback_inline_css_js_yasak.md)
 * ========================================================================== */

.st-shell {
    max-width: 880px;
}

.st-baslik {
    margin-bottom: 20px;
}
.st-baslik h1 {
    margin: 0 0 6px;
}
.st-baslik p {
    color: #475569;
    margin: 0;
}

/* --- Sorgu formu --- */
.st-sorgu-card {
    margin-bottom: 22px;
}
.st-sorgu-form {
    padding: 6px 4px 4px;
    display: grid;
    grid-template-columns: 1fr 180px auto;
    gap: 14px;
    align-items: end;
}
.st-sorgu-btn {
    height: 48px;
    /* btn-brand-lg ile birlikte: grid item olarak alt hizada düğme */
}
.st-sorgu-yardim {
    margin: 14px 4px 0;
    color: #64748b;
    font-size: 13px;
}

/* Tablet ve mobilde alt alta — sipariş no, tel, sorgula = full width */
@media (max-width: 720px) {
    .st-sorgu-form {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .st-sorgu-btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- Sonuç başlığı --- */
.st-result-head {
    flex-wrap: wrap;
    gap: 8px;
}
.st-result-head h2 {
    margin: 0;
}
.st-result-tarih {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 13px;
}

/* --- Stepper --- */
.st-stepper {
    padding: 8px 4px 4px;
}
.st-stepper-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    position: relative;
}
.st-step {
    text-align: center;
    position: relative;
}
.st-step-bar {
    position: absolute;
    top: 18px;
    left: -50%;
    right: 50%;
    height: 3px;
    background: #e2e8f0;
    z-index: 0;
}
.st-step-bar.is-gecildi {
    background: var(--brand-primary);
}
.st-step-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    transition: all .2s;
}
.st-step-circle.is-gecildi {
    background: var(--brand-primary);
    color: #fff;
}
.st-step-circle.is-aktif {
    box-shadow: 0 0 0 4px var(--brand-primary-light);
}
.st-step-circle i {
    font-size: 16px;
}
.st-step-circle .bi-check-lg {
    font-size: 18px;
}
.st-step-label {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.3;
}
.st-step-label.is-gecildi {
    color: #0f172a;
}
.st-step-label.is-aktif {
    font-weight: 700;
}

/* Mobilde stepper - 5 adımı dikey sıkıştırmaktansa daha küçük çaplı yatay tut */
@media (max-width: 540px) {
    .st-stepper-grid {
        gap: 4px;
    }
    .st-step-circle {
        width: 32px;
        height: 32px;
    }
    .st-step-bar {
        top: 15px;
    }
    .st-step-circle i {
        font-size: 13px;
    }
    .st-step-circle .bi-check-lg {
        font-size: 15px;
    }
    .st-step-label {
        font-size: 10.5px;
    }
}

/* --- Havale info --- */
.st-havale-uyari {
    border: none;
    background: transparent;
    padding: 4px 4px 0;
}
.st-havale-uyari p {
    margin: 0 0 12px;
}
.st-havale-iban {
    font-family: monospace;
    letter-spacing: 1px;
}

/* --- Hesabım kısayol bildirimi --- */
.st-hesabim-kisayol {
    margin-bottom: 16px;
}

/* --- Uyarı boşluğu --- */
.st-durum-uyari {
    margin-top: 18px;
}

/* --- Ürünler kart başlığı --- */
.st-urunler-head {
    padding: 18px 22px;
}
