/* ══════════════════════════════════════════════════════════════
   Member Bootees Tab — 다른 부티즈 스타일
   ══════════════════════════════════════════════════════════════ */

.bootees-container {
    max-width: 720px;
}

.bootees-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-4);
    flex-wrap: wrap;
    gap: var(--space-2);
}

.bootees-title {
    font-size: var(--text-md);
    font-weight: var(--font-bold);
    color: var(--color-text);
    margin: 0;
}

/* ── Search ────────────────────────────────────────────────── */
.bootees-search {
    margin-bottom: var(--space-3);
}

.bootees-search-input {
    width: 100%;
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-sm);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    background: var(--color-bg);
    color: var(--color-text);
    outline: none;
    transition: border-color var(--transition-fast);
}

.bootees-search-input:focus {
    border-color: var(--color-primary);
}

.bootees-search-input::placeholder {
    color: var(--color-text-sub);
}

/* ── Count ────────────────────────────────────────────────── */
.bootees-count {
    font-size: var(--text-sm);
    color: var(--color-text-sub);
    margin-bottom: var(--space-2);
    text-align: right;
}

/* ── List ─────────────────────────────────────────────────── */
.bootees-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.bootees-row {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-4);
    box-shadow: var(--shadow-sm);
}

/* ── Rank ─────────────────────────────────────────────────── */
.bootees-rank {
    flex-shrink: 0;
    width: 24px;
    text-align: center;
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    color: var(--color-text-sub);
}

/* ── Info ─────────────────────────────────────────────────── */
.bootees-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.bootees-nickname {
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    color: var(--color-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bootees-group {
    font-size: var(--text-xs);
    color: var(--color-text-sub);
}

/* ── Stats ────────────────────────────────────────────────── */
.bootees-stats {
    display: flex;
    gap: var(--space-3);
    flex-shrink: 0;
}

.bootees-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 36px;
}

.bootees-stat-value {
    font-size: var(--text-sm);
    font-weight: var(--font-extrabold);
    color: var(--color-text);
}

.bootees-score {
    color: var(--color-primary);
}

.bootees-coin {
    color: var(--color-accent);
}

.bootees-stat-label {
    font-size: 10px;
    color: var(--color-text-sub);
    margin-top: 1px;
}

/* ── Bravo Badge ──────────────────────────────────────────── */
.bootees-bravo {
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    color: #b45309;
    background: #fef3c7;
    padding: 1px 6px;
    border-radius: var(--radius-full, 9999px);
}

.bootees-bravo-none {
    font-size: var(--text-xs);
    color: var(--color-text-sub);
}

/* ── Me (본인 강조) ──────────────────────────────────────── */
.bootees-row-me {
    border-left: 3px solid var(--color-primary);
    background: color-mix(in srgb, var(--color-primary) 6%, var(--color-bg));
}

.bootees-me-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: var(--font-bold);
    color: #fff;
    background: var(--color-primary);
    padding: 0 5px;
    border-radius: var(--radius-full, 9999px);
    margin-left: 4px;
    vertical-align: middle;
    line-height: 16px;
}

/* ── Empty & Loading ──────────────────────────────────────── */
.bootees-empty,
.bootees-loading {
    text-align: center;
    padding: var(--space-10) var(--space-4);
    color: var(--color-text-sub);
    font-size: var(--text-sm);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 640px) {
    .bootees-row {
        padding: var(--space-2) var(--space-3);
        gap: var(--space-2);
    }
    .bootees-stats {
        gap: var(--space-2);
    }
    .bootees-stat {
        min-width: 30px;
    }
    .bootees-stat-value {
        font-size: 13px;
    }
}
