/* ========================================================= */
/* MACANO: ICONOS SVG INLINE DE STATS — SISTEMA GLOBAL ARKA  */
/* ========================================================= */
/* MACANO: Estilos para los iconos SVG de stats/modifiers     */
/* MACANO: del sistema de crafting y cualquier componente que */
/* MACANO: necesite mostrar stats de armas, armaduras, etc.   */
/* ========================================================= */

.arka-stat-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--arka-gold);
    opacity: 0.75;
    vertical-align: middle;
    transition: opacity 0.2s ease;
}

.arka-stat-icon:hover {
    opacity: 1;
}

/* MACANO: Contenedor flex para icono + texto de stat */
.arka-stat-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.arka-stat-label .mud-typography {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* MACANO: Variante compacta (para tablas o listas densas) */
.arka-stat-icon--sm {
    width: 14px;
    height: 14px;
}

.arka-stat-label--sm {
    gap: 0.35rem;
}

/* MACANO: Variante grande (para headers o destacados) */
.arka-stat-icon--lg {
    width: 24px;
    height: 24px;
    opacity: 0.85;
}

.arka-stat-label--lg {
    gap: 0.65rem;
}
