/* ── Temel ── */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: #F5F6FA;
}

a {
    text-decoration: none;
}

/* ── Alt Navigasyon ── */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: #fff;
    border-top: 1px solid #E8EAF6;
    display: flex;
    z-index: 1000;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9E9E9E;
    font-size: 10px;
    gap: 2px;
    transition: color .2s;
}

    .bottom-nav-item i {
        font-size: 22px;
    }

    .bottom-nav-item.active, .bottom-nav-item:hover {
        color: #1A237E;
    }

/* ── Üye Kartı ── */
.uye-karti {
    background: linear-gradient(135deg, #1A237E 0%, #283593 60%, #3949AB 100%);
    border-radius: 20px;
    padding: 24px;
    color: #fff;
    margin: 16px;
    box-shadow: 0 8px 24px rgba(26,35,126,0.3);
}

.seviye-rozet {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 600;
}

.puan-chip {
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 10px 16px;
    text-align: center;
}

    .puan-chip .sayi {
        font-size: 26px;
        font-weight: 700;
        line-height: 1;
    }

    .puan-chip .etiket {
        font-size: 10px;
        opacity: 0.75;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

/* ── QR Alan ── */
.qr-kutusu {
    background: #fff;
    border-radius: 16px;
    margin: 0 16px 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

    .qr-kutusu img {
        width: 200px;
        height: 200px;
        border-radius: 8px;
    }

/* ── Genel Kart ── */
.s-card {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    margin: 0 16px 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ── Form ── */
.s-form-group {
    margin-bottom: 14px;
}

    .s-form-group label {
        font-size: 12px;
        font-weight: 600;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        margin-bottom: 6px;
        display: block;
    }

    .s-form-group input,
    .s-form-group select {
        width: 100%;
        border: 1.5px solid #E0E0E0;
        border-radius: 10px;
        padding: 12px 14px;
        font-size: 15px;
        background: #FAFAFA;
        color: #333;
        transition: border-color .2s;
        outline: none;
        appearance: auto;
    }

        .s-form-group input:focus,
        .s-form-group select:focus {
            border-color: #1A237E;
            background: #fff;
        }
        /* Select option renk fix */
        .s-form-group select option {
            background: #fff;
            color: #333;
        }

/* ── Butonlar ── */
.btn-sadakat {
    background: #1A237E;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: background .2s, transform .1s;
}

    .btn-sadakat:hover {
        background: #283593;
    }

    .btn-sadakat:active {
        transform: scale(0.98);
    }

    .btn-sadakat:disabled {
        background: #9FA8DA;
        cursor: not-allowed;
    }

.btn-sadakat-outline {
    background: transparent;
    color: #1A237E;
    border: 2px solid #1A237E;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
}

/* ── Randevu Durum Rozetleri ── */
.durum-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.durum-Onaylandi {
    background: #E8F5E9;
    color: #2E7D32;
}

.durum-Bekliyor {
    background: #FFF3E0;
    color: #E65100;
}

.durum-Iptal {
    background: #FFEBEE;
    color: #C62828;
}

.durum-Gerceklesti {
    background: #E3F2FD;
    color: #1565C0;
}

/* ── Sayfa Başlığı ── */
.s-page-title {
    font-size: 20px;
    font-weight: 700;
    color: #1A237E;
    padding: 20px 16px 8px;
}

/* ── Aile Listesi ── */
.aile-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    margin: 0 16px 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.aile-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #E8EAF6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

/* ── Giriş Sayfası ── */
.giris-header {
    background: linear-gradient(135deg, #1A237E, #3949AB);
    padding: 60px 24px 40px;
    text-align: center;
    color: #fff;
}

/* ── Hata Mesajı ── */
.s-hata {
    background: #FFEBEE;
    color: #C62828;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    margin-bottom: 14px;
}

/* ── Boş Durum ── */
.s-bos {
    text-align: center;
    padding: 60px 24px;
    color: #9E9E9E;
}

    .s-bos i {
        font-size: 48px;
        margin-bottom: 12px;
    }
